:root {
	--primary-color: #6366F1;
	--primary-gradient: linear-gradient(90deg, #818CF8, #6366F1);
	--background-main: #FFFFFF;
	--background-alt: #F9FAFB;
	--background-card: #FFFFFF;
	--text-primary: #1F2937;
	--text-secondary: #6B7280;
	--border-color: #E5E7EB;
	--hover-bg: #F3F4F6;
	--header-bg: rgba(255, 255, 255, 0.8);
	--shadow-rgb: 99, 102, 241;
	--shadow-dark-rgb: 0, 0, 0;
	--danger-color: #EF4444;
	--font-family: 'Poppins', sans-serif
}

html.dark-mode {
	--background-main: #111827;
	--background-alt: #1F2937;
	--background-card: #1F2937;
	--text-primary: #F3F4F6;
	--text-secondary: #9CA3AF;
	--border-color: #374151;
	--hover-bg: #374151;
	--header-bg: rgba(17, 24, 39, 0.8);
	--shadow-dark-rgb: 243, 244, 246
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

a {
	text-decoration: none
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--font-family);
	color: var(--text-primary);
	background-color: var(--background-main);
	line-height: 1.6;
	overflow-x: hidden;
	transition: background-color .3s ease, color .3s ease;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

body.no-scroll {
	overflow: hidden
}

.background-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	z-index: -1;
	opacity: .1;
	transition: opacity .5s ease
}

html.dark-mode .background-blob {
	opacity: .2
}

.blob1 {
	height: 500px;
	top: -200px;
	right: -200px;
	background: radial-gradient(circle, #a855f7, #6366f1)
}

.blob2 {
	width: 600px;
	height: 600px;
	bottom: -300px;
	left: -300px;
	background: radial-gradient(circle, #ec4899, #8b5cf6)
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px
}

section {
	padding: 60px 0
}

.section-title {
	text-align: center;
	margin-bottom: 60px
}

.section-title h2 {
	font-size: 2.8rem;
	/*font-weight: 800;*/
	margin-bottom: 15px;
	color: var(--text-primary);
	letter-spacing: -1px
}

.section-title p {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
	letter-spacing: 1px;
}

.btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all .3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem
}

#expert-modal-form .btn {
	width: 100%
}

.btn-primary {
	background: var(--primary-gradient);
	color: #fff;
	box-shadow: 0 4px 15px rgba(var(--shadow-rgb), .3), 0 0 0 0 rgba(var(--shadow-rgb), .5)
}

.btn-primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(var(--shadow-rgb), .4), 0 0 0 5px rgba(var(--shadow-rgb), 0)
}

.btn-secondary {
	background-color: var(--background-card);
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	padding: 12px 30px
}

.btn-secondary:hover {
	background-color: var(--primary-color);
	color: #fff;
	transform: translateY(-4px)
}

header {
	background-color: var(--header-bg);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 15px 0;
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: background-color .3s ease, border-color .3s ease
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-primary);
	font-weight: 600;
	font-size: 1.2rem
}

.logo img,
.logo svg {
	margin-right: 8px
}

.desktop-nav-links {
	list-style: none;
	display: flex;
	gap: 25px;
	align-items: center
}

.desktop-nav-links a {
	text-decoration: none;
	color: var(--text-secondary);
	font-weight: 500;
	transition: color .3s ease, transform .3s ease, background-color .3s ease;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent
}

.desktop-nav-links a:not(.btn):hover {
	color: var(--primary-color)
}

.desktop-nav-links a.active {
	color: var(--primary-color);
	font-weight: 600;
	border-bottom-color: var(--primary-color)
}

.desktop-nav-links .btn-primary {
	padding: 10px 22px !important;
	font-size: .9rem !important;
	font-weight: 600;
	background: #7c83f6;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(124, 131, 246, .4);
	color: #fff !important
}

.desktop-nav-links .btn-primary:hover {
	background: #6366f1;
	box-shadow: 0 6px 15px rgba(99, 102, 241, .5)
}

.desktop-nav-links li {
	position: relative
}

.desktop-nav-links li:hover>.dropdown-container {
	opacity: 1;
	visibility: visible;
	top: calc(100% + 20px);
	pointer-events: auto
}

.hamburger-menu {
	display: none;
	cursor: pointer;
	background: 0 0;
	border: none;
	z-index: 1002
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--background-main);
	z-index: 1001;
	transform: translateX(100%);
	transition: transform .4s ease-in-out;
	padding: 80px 30px 30px;
	overflow-y: auto
}

.mobile-nav.is-open {
	transform: translateX(0)
}

.mobile-nav-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: 0 0;
	border: none;
	font-size: 2.5rem;
	line-height: 1;
	color: var(--text-primary);
	cursor: pointer;
	z-index: 1003
}

.mobile-nav-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px
}

.mobile-nav-links>li>a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-primary);
	padding: 10px 0;
	text-decoration: none
}

.mobile-nav-links .arrow {
	transition: transform .3s ease
}

.mobile-nav-links .submenu {
	list-style: none;
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease-out, padding .4s ease-out;
	padding-left: 15px
}

.mobile-nav-links .submenu a {
	display: block;
	padding: 8px 0;
	text-decoration: none;
	color: var(--text-secondary)
}

.mobile-nav-links>li.active>.submenu {
	max-height: 600px
}

.mobile-nav-links>li.active .arrow {
	transform: rotate(90deg)
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 24px
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: #fff;
	transition: .4s;
	border-radius: 50%
}

input:checked+.slider {
	background-color: var(--primary-color)
}

input:checked+.slider:before {
	transform: translateX(20px)
}

.hero {
	padding: 10px 0 50px
}

.hero-content {
	display: flex;
	align-items: center;
	gap: 60px
}

.hero-text {
	flex: 1
}

.hero-text h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 25px;
	letter-spacing: -1.5px;
	color: var(--text-primary);
	text-align: start
}

.hero-text p {
	font-size: 1.2rem;
	color: var(--text-secondary);
	margin-bottom: 55px
}

.hero-buttons {
	display: flex;
	gap: 15px
}

.hero-image {
	flex: 1;
	display: flex;
	justify-content: center
}

.app-container {
	width: 100%;
	max-width: 375px;
	background-color: var(--background-card);
	border-radius: 40px;
	box-shadow: 0 25px 50px -12px rgba(var(--shadow-dark-rgb), .15);
	overflow: hidden;
	font-family: Poppins, sans-serif;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--border-color);
	position: relative;
	transition: transform .4s ease, box-shadow .4s ease
}

.app-container:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 40px 60px -20px rgba(var(--shadow-dark-rgb), .25)
}

.app-header {
	padding: 32px 24px 16px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.app-header p {
	color: var(--text-secondary);
	font-size: .875rem
}

.app-header h1 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary)
}

.app-user-icon {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background-color: var(--hover-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary)
}

.app-main {
	padding: 0 24px 24px
}

.app-action-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 24px
}

.app-action-btn {
	background-color: var(--background-main);
	padding: 16px;
	border-radius: 16px;
	box-shadow: 0 4px 6px -1px rgba(var(--shadow-dark-rgb), .05);
	transition: all .3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid var(--border-color);
	cursor: pointer;
	font-family: Poppins, sans-serif;
	text-align: center
}

.app-action-btn:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(var(--shadow-dark-rgb), .1);
	border-color: var(--primary-color)
}

.app-action-icon {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem
}

.app-action-btn p {
	margin-top: 8px;
	font-size: .875rem;
	font-weight: 600;
	color: var(--text-primary)
}

.bg-pink {
	background-color: #fce7f3;
	color: #db2777
}

.bg-red {
	background-color: #fee2e2;
	color: #ef4444
}

.bg-indigo {
	background-color: #e0e7ff;
	color: #4f46e5
}
.bg-orange{
    	background-color: #e0e7ff;
    	color: #4f46e5
}

.app-activity {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px
}

.animated-document {
	position: relative;
	font-size: 3rem;
	color: #fff
}

.animated-document .fa-certificate {
	animation: popIn .8s ease-out forwards
}

@keyframes popIn {
	0% {
		transform: scale(.5);
		opacity: 0
	}

	100% {
		transform: scale(1);
		opacity: 1
	}
}

@keyframes checkmarkAppear {
	0% {
		transform: scale(0);
		opacity: 0
	}

	100% {
		transform: scale(1);
		opacity: 1
	}
}

.app-custom-image-container {
	margin: 14px 4px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 15px 15px rgba(var(--shadow-dark-rgb), .1)
}

.app-custom-image-container img {
	width: 100%;
	height: auto;
	display: block
}

.glowing-btn {
	width: 100%;
	padding: 14px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	background-color: var(--primary-color);
	color: #fff;
	animation: glow 2s infinite;
	transition: all .3s ease
}

@keyframes glow {

	0%,
	100% {
		box-shadow: 0 0 5px rgba(var(--shadow-rgb), .5), 0 0 10px rgba(var(--shadow-rgb), .4)
	}

	50% {
		box-shadow: 0 0 15px rgba(var(--shadow-rgb), .7), 0 0 25px rgba(var(--shadow-rgb), .6)
	}
}

.slide-to-action {
	position: relative;
	width: 100%;
	background-color: var(--hover-bg);
	border-radius: 25px;
	padding: 10px;
	display: flex;
	align-items: center;
	cursor: grab;
	overflow: hidden;
	border: 1px solid var(--border-color);
	user-select: none
}

.slide-to-action .slider-knob {
	position: absolute;
	left: 2px;
	width: 40px;
	height: 40px;
	background: var(--background-card);
	border-radius: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	box-shadow: 0 2px 5px rgba(var(--shadow-dark-rgb), .1);
	transition: left .2s ease-out;
	z-index: 2
}

.slide-to-action .slider-text {
	flex-grow: 1;
	text-align: center;
	font-weight: 500;
	color: var(--text-secondary);
	font-size: .9rem;
	z-index: 1;
	transition: opacity .2s ease-out
}

@supports (-webkit-touch-callout:none) {

	.bvcalc-wrapper input[type=number],
	.bvcalc-wrapper input[type=text],
	.bvcalc-wrapper select {
		font-size: 16px !important
	}
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto
}

.feature-item {
	background-color: var(--background-card);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: transform .3s ease, box-shadow .3s ease
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(var(--shadow-dark-rgb), .08)
}

.feature-item .feature-icon {
	font-size: 1.5rem;
	color: var(--primary-color);
	margin-bottom: 20px;
	display: inline-flex;
	background-color: var(--hover-bg);
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.feature-item h4 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--text-primary)
}

.feature-item p {
	color: var(--text-secondary);
	font-size: .9rem
}

.textured-bg {
	background-color: var(--background-alt);
	background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
	background-size: 2rem 2rem
}

html.dark-mode .textured-bg {
	background-image: radial-gradient(var(--border-color) .5px, transparent .5px)
}

* {
	box-sizing: border-box
}

.process-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0, #fff 100%);
	position: relative;
	overflow: hidden;
	transition: background .3s ease
}

.process-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, .3), transparent);
	transition: background .3s ease
}

html.dark-mode .process-section {
	background: linear-gradient(135deg, #0f172a 0, #1e293b 100%)
}

html.dark-mode .process-section::before {
	background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .4), transparent)
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 1
}

.section-header {
	text-align: center;
	margin-bottom: 64px
}

.section-badge {
	display: inline-block;
	padding: 8px 20px;
	background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0, #2563eb 100%);
	color: #fff;
	font-size: .875rem;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	border-radius: 50px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(59, 130, 246, .3);
	transition: box-shadow .3s ease
}

html.dark-mode .section-badge {
	box-shadow: 0 4px 12px rgba(99, 102, 241, .4)
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	/*font-weight: 800;*/
	color: var(--text-primary, #0f172a);
	letter-spacing: -.02em;
	margin: 0 0 16px 0;
	line-height: 1.2;
	transition: color .3s ease;
	margin-top: 20px;
	
}

html.dark-mode .section-title {
	color: #f1f5f9
}

.section-subtitle {
	font-size: clamp(1rem, 2vw, 1.125rem);
	color: var(--text-secondary, #64748b);
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
	transition: color .3s ease
}

html.dark-mode .section-subtitle {
	color: #94a3b8
}

.process-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start
}

.process-video {
	position: sticky;
	top: 100px
}

.video-container {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .15), 0 0 0 1px rgba(0, 0, 0, .05);
	background: #000;
	transition: transform .3s ease, box-shadow .3s ease
}

html.dark-mode .video-container {
	box-shadow: 0 20px 60px rgba(0, 0, 0, .4), 0 0 0 1px rgba(255, 255, 255, .1)
}

.video-container:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 80px rgba(0, 0, 0, .2), 0 0 0 1px rgba(0, 0, 0, .05)
}

html.dark-mode .video-container:hover {
	box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .15)
}

.video-wrapper {
	width: 100%;
	aspect-ratio: 9/16;
	position: relative;
	overflow: hidden
}

.video-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .1) 0, transparent 100%);
	pointer-events: none
}

.timeline-container {
	position: relative
}

.timeline {
	position: relative;
	padding-left: 0
}

.timeline::before {
	content: "";
	position: absolute;
	left: 32px;
	top: 60px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, #e2e8f0 0, #cbd5e1 50%, #e2e8f0 100%);
	z-index: 0;
	transition: background .3s ease
}

html.dark-mode .timeline::before {
	background: linear-gradient(180deg, #334155 0, #475569 50%, #334155 100%)
}

.timeline-item {
	position: relative;
	padding-left: 100px;
	margin-bottom: 40px;
	opacity: 0;
	animation: fadeInUp .6s ease forwards
}

.timeline-item:nth-child(1) {
	animation-delay: .1s
}

.timeline-item:nth-child(2) {
	animation-delay: .2s
}

.timeline-item:nth-child(3) {
	animation-delay: .3s
}

.timeline-item:nth-child(4) {
	animation-delay: .4s
}

.timeline-item:nth-child(5) {
	animation-delay: .5s
}

.timeline-item:nth-child(6) {
	animation-delay: .6s
}

.timeline-item:nth-child(7) {
	animation-delay: .7s
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.timeline-item:last-child {
	margin-bottom: 0
}

.timeline-item:hover .timeline-content {
	transform: translateX(4px)
}

.timeline-item:hover .timeline-marker {
	transform: scale(1.1)
}

.timeline-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 64px;
	height: 64px;
	z-index: 2;
	transition: transform .3s ease
}

.timeline-number {
	position: absolute;
	top: 0;
	left: 0;
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0, #2563eb 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	box-shadow: 0 8px 24px rgba(59, 130, 246, .4), 0 0 0 4px rgba(255, 255, 255, 1);
	transition: all .3s ease
}

html.dark-mode .timeline-number {
	box-shadow: 0 8px 24px rgba(99, 102, 241, .5), 0 0 0 4px rgba(30, 41, 59, 1)
}

.timeline-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	color: #fff;
	opacity: 0;
	transition: opacity .3s ease
}

.timeline-item:hover .timeline-number {
	background: linear-gradient(135deg, #2563eb 0, #1d4ed8 100%);
	box-shadow: 0 12px 32px rgba(59, 130, 246, .5), 0 0 0 4px rgba(255, 255, 255, 1)
}

html.dark-mode .timeline-item:hover .timeline-number {
	box-shadow: 0 12px 32px rgba(99, 102, 241, .6), 0 0 0 4px rgba(30, 41, 59, 1)
}

.timeline-item:hover .timeline-icon {
	opacity: 1
}

.timeline-item:hover .timeline-number {
	color: transparent
}

.timeline-content {
	background: var(--background-card, #fff);
	padding: 24px 28px;
	border-radius: 16px;
	border: 1px solid var(--border-color, #e2e8f0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
	transition: all .3s ease;
	position: relative;
	overflow: hidden
}

html.dark-mode .timeline-content {
	background: var(--background-card, #1f2937);
	border-color: var(--border-color, #374151);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.timeline-content::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--primary-color, #3b82f6) 0, #2563eb 100%);
	opacity: 0;
	transition: opacity .3s ease
}

.timeline-item:hover .timeline-content {
	border-color: var(--border-color, #cbd5e1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

html.dark-mode .timeline-item:hover .timeline-content {
	border-color: #4b5563;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.timeline-item:hover .timeline-content::before {
	opacity: 1
}

.step-label {
	font-size: .75rem;
	font-weight: 700;
	color: var(--primary-color, #3b82f6);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
	transition: color .3s ease
}

.step-title {
	font-size: clamp(1.125rem, 2vw, 1.25rem);
	font-weight: 700;
	color: var(--text-primary, #0f172a);
	margin: 0 0 10px 0;
	line-height: 1.4;
	transition: color .3s ease
}

html.dark-mode .step-title {
	color: #f1f5f9
}

.step-description {
	font-size: clamp(.9375rem, 1.5vw, 1rem);
	color: var(--text-secondary, #64748b);
	line-height: 1.6;
	margin: 0;
	transition: color .3s ease
}

html.dark-mode .step-description {
	color: #94a3b8
}

@media (max-width:1024px) {
	.process-section {
		padding: 80px 0
	}

	.process-layout {
		grid-template-columns: 1fr;
		gap: 60px
	}

	.process-video {
		position: relative;
		top: 0
	}

	.video-wrapper {
		aspect-ratio: 16/9;
		max-width: 600px;
		margin: 0 auto
	}

	.section-header {
		margin-bottom: 48px
	}
}

@media (max-width:768px) {
	.process-section {
		padding: 60px 0
	}

	.container {
		padding: 0 20px
	}

	.section-header {
		margin-bottom: 40px
	}

	.section-badge {
		font-size: .8125rem;
		padding: 6px 16px
	}

	.timeline {
		padding-left: 0
	}

	.timeline::before {
		left: 28px;
		top: 50px
	}

	.timeline-item {
		padding-left: 80px;
		margin-bottom: 32px
	}

	.timeline-marker {
		width: 56px;
		height: 56px
	}

	.timeline-number {
		width: 56px;
		height: 56px;
		font-size: 1.125rem;
		border-radius: 12px
	}

	.timeline-icon {
		width: 20px;
		height: 20px
	}

	.timeline-content {
		padding: 20px 24px
	}
}

@media (max-width:480px) {
	.process-section {
		padding: 48px 0
	}

	.container {
		padding: 0 16px
	}

	.section-header {
		margin-bottom: 32px
	}

	.section-badge {
		font-size: .75rem;
		padding: 5px 14px;
		margin-bottom: 16px
	}

	.process-layout {
		gap: 40px
	}

	.video-wrapper {
		border-radius: 16px
	}

	.timeline::before {
		left: 24px;
		top: 48px
	}

	html.dark-mode .timeline::before {
		background: linear-gradient(180deg, #334155 0, #475569 50%, #334155 100%)
	}

	.timeline-item {
		padding-left: 68px;
		margin-bottom: 28px
	}

	.timeline-marker {
		width: 48px;
		height: 48px
	}

	.timeline-number {
		width: 48px;
		height: 48px;
		font-size: 1rem;
		border-radius: 10px;
		box-shadow: 0 6px 16px rgba(59, 130, 246, .3), 0 0 0 3px rgba(255, 255, 255, 1)
	}

	html.dark-mode .timeline-number {
		box-shadow: 0 6px 16px rgba(99, 102, 241, .4), 0 0 0 3px rgba(30, 41, 59, 1)
	}

	.timeline-icon {
		width: 18px;
		height: 18px
	}

	.timeline-content {
		padding: 18px 20px;
		border-radius: 12px
	}

	.step-title {
		font-size: 1.0625rem
	}

	.step-description {
		font-size: .9375rem
	}
}

@media (max-width:360px) {
	.timeline-item {
		padding-left: 60px
	}

	.timeline-marker {
		width: 44px;
		height: 44px
	}

	.timeline-number {
		width: 44px;
		height: 44px;
		font-size: .9375rem
	}

	.timeline-content {
		padding: 16px 18px
	}
}

@media (prefers-reduced-motion:reduce) {

	.timeline-content,
	.timeline-item,
	.timeline-marker,
	.video-container {
		animation: none;
		transition: none
	}
}

@media print {
	.process-section {
		background: #fff;
		padding: 40px 0
	}

	.process-video {
		display: none
	}

	.timeline::before {
		display: none
	}
}

html.dark-mode .timeline-number {
	background: linear-gradient(135deg, var(--primary-color, #6366f1) 0, #4f46e5 100%)
}

html.dark-mode .section-badge {
	background: linear-gradient(135deg, var(--primary-color, #6366f1) 0, #4f46e5 100%)
}

html.dark-mode .video-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0, transparent 100%)
}

.testimonial-section-wrapper {
	--testimonial-primary: #6366F1;
	--testimonial-primary-light: #818CF8;
	--testimonial-primary-dark: #4F46E5;
	--testimonial-gradient: linear-gradient(135deg, #818CF8 0%, #6366F1 50%, #4F46E5 100%);
	--testimonial-bg-main: var(--background-main, #FFFFFF);
	--testimonial-bg-alt: var(--background-alt, #F9FAFB);
	--testimonial-bg-card: var(--background-main, #FFFFFF);
	--testimonial-text-primary: var(--text-primary, #1F2937);
	--testimonial-text-secondary: var(--text-secondary, #6B7280);
	--testimonial-border: var(--border-color, #E5E7EB);
	--testimonial-shadow-rgb: 99, 102, 241;
	--testimonial-shadow-dark-rgb: 0, 0, 0;
	--testimonial-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

html.dark-mode .testimonial-section-wrapper {
	--testimonial-bg-main: var(--background-main, #111827);
	--testimonial-bg-alt: var(--background-alt, #1F2937);
	--testimonial-bg-card: var(--background-main, #111827);
	--testimonial-text-primary: var(--text-primary, #F9FAFB);
	--testimonial-text-secondary: var(--text-secondary, #D1D5DB);
	--testimonial-border: var(--border-color, #374151);
	--testimonial-shadow-dark-rgb: 0, 0, 0
}

.testimonial-section-wrapper {
	background: linear-gradient(180deg, var(--testimonial-bg-main) 0, var(--testimonial-bg-alt) 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden
}

.testimonial-section-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--testimonial-border), transparent)
}

.testimonial-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1
}

.testimonial-section-title {
	text-align: center;
	margin-bottom: 60px
}

.testimonial-section-title h2 {
	font-size: 2.8rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: var(--testimonial-text-primary);
	letter-spacing:1px;
	line-height: 1.2;
	background: linear-gradient(135deg, var(--testimonial-text-primary) 0, var(--testimonial-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

html.dark-mode .testimonial-section-title h2 {
	background: linear-gradient(135deg, #f9fafb 0, var(--testimonial-primary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text
}

.testimonial-section-title p {
	font-size: 1.1rem;
	color: var(--testimonial-text-secondary);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7
}

.testimonial-deck-container {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	perspective: 1200px;
	padding: 50px 0 120px;
	overflow: visible
}

.testimonial-card-item {
	background: var(--testimonial-bg-card);
	padding: 35px;
	border-radius: 20px;
	border: 1px solid var(--testimonial-border);
	border-top: 5px solid;
	border-image: var(--testimonial-gradient) 1;
	width: 85%;
	max-width: 500px;
	position: absolute;
	transition: transform .6s cubic-bezier(.34, 1.56, .64, 1), opacity .6s cubic-bezier(.4, 0, .2, 1), box-shadow .6s ease;
	box-shadow: 0 10px 40px rgba(var(--testimonial-shadow-dark-rgb), .08), 0 2px 8px rgba(var(--testimonial-shadow-dark-rgb), .04);
	cursor: pointer;
	backdrop-filter: blur(10px)
}

.testimonial-card-item::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: var(--testimonial-gradient);
	border-radius: 20px;
	opacity: 0;
	transition: opacity .3s ease;
	z-index: -1
}

.testimonial-card-item:hover::before {
	opacity: .1
}

html.dark-mode .testimonial-card-item:hover::before {
	opacity: .2
}

.testimonial-card-item p {
	margin-bottom: 28px;
	color: var(--testimonial-text-secondary);
	font-size: 1.05rem;
	position: relative;
	padding-left: 28px;
	line-height: 1.8;
	font-style: italic
}

.testimonial-card-item p::before {
	content: '"';
	position: absolute;
	left: -8px;
	top: -15px;
	font-size: 4rem;
	color: var(--testimonial-primary);
	opacity: .2;
	font-family: Georgia, serif;
	line-height: 1
}

.testimonial-card-item p::after {
	content: '"';
	position: absolute;
	right: -5px;
	bottom: -20px;
	font-size: 3rem;
	color: var(--testimonial-primary);
	opacity: .15;
	font-family: Georgia, serif;
	line-height: 1
}

.testimonial-client-info {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 15px;
	border-top: 1px solid var(--testimonial-border)
}

.testimonial-client-info img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--testimonial-primary);
	box-shadow: 0 4px 12px rgba(var(--testimonial-shadow-rgb), .2);
	transition: transform .3s ease, box-shadow .3s ease
}

.testimonial-card-item:hover .testimonial-client-info img {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(var(--testimonial-shadow-rgb), .3)
}

.testimonial-client-info h4 {
	font-weight: 700;
	color: var(--testimonial-text-primary);
	font-size: 1.05rem;
	margin-bottom: 4px
}

.testimonial-client-info span {
	color: var(--testimonial-text-secondary);
	font-size: .9rem;
	display: flex;
	align-items: center;
	gap: 6px
}

.testimonial-client-info span::before {
	content: '📍';
	font-size: .85rem
}

.testimonial-card-item.active {
	transform: translate(0, 0) scale(1);
	opacity: 1;
	z-index: 5;
	box-shadow: 0 25px 50px rgba(var(--testimonial-shadow-rgb), .25), 0 0 0 1px rgba(var(--testimonial-shadow-rgb), .1), 0 10px 30px rgba(var(--testimonial-shadow-dark-rgb), .1)
}

html.dark-mode .testimonial-card-item.active {
	box-shadow: 0 25px 50px rgba(99, 102, 241, .3), 0 0 0 1px rgba(99, 102, 241, .2), 0 10px 30px rgba(0, 0, 0, .5)
}

.testimonial-card-item.next {
	transform: translateX(65%) scale(.82);
	opacity: .65;
	z-index: 3;
	pointer-events: none;
	filter: blur(2px)
}

.testimonial-card-item.prev {
	transform: translateX(-65%) scale(.82);
	opacity: .65;
	z-index: 3;
	pointer-events: none;
	filter: blur(2px)
}

.testimonial-card-item:not(.active):not(.next):not(.prev) {
	transform: translateX(130%) scale(.7);
	opacity: .25;
	z-index: 1;
	pointer-events: none;
	filter: blur(3px)
}

.testimonial-nav-container {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 24px;
	z-index: 10;
	background: rgba(255, 255, 255, .98);
	backdrop-filter: blur(20px);
	padding: 14px 28px;
	border-radius: 60px;
	box-shadow: 0 10px 40px rgba(var(--testimonial-shadow-dark-rgb), .15), 0 0 0 1px rgba(var(--testimonial-shadow-rgb), .1), 0 4px 20px rgba(var(--testimonial-shadow-rgb), .1);
	border: 1px solid rgba(var(--testimonial-shadow-rgb), .1);
	pointer-events: none
}

html.dark-mode .testimonial-nav-container {
	background: rgba(17, 24, 39, .98);
	border: 1px solid rgba(55, 65, 81, .5);
	box-shadow: 0 10px 40px rgba(0, 0, 0, .4), 0 0 0 1px rgba(99, 102, 241, .2), 0 4px 20px rgba(0, 0, 0, .3)
}

.testimonial-nav-container>* {
	pointer-events: auto
}

.testimonial-nav-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: none;
	background: var(--testimonial-gradient);
	color: #fff;
	font-size: 1.4rem;
	cursor: pointer;
	transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
	box-shadow: 0 6px 20px rgba(var(--testimonial-shadow-rgb), .35), 0 0 0 0 rgba(var(--testimonial-shadow-rgb), .4);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	font-weight: 600;
	z-index: 11;
	pointer-events: auto !important;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent
}

.testimonial-nav-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .4);
	transform: translate(-50%, -50%);
	transition: width .5s ease, height .5s ease;
	pointer-events: none
}

.testimonial-nav-btn::after {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 50%;
	background: var(--testimonial-gradient);
	opacity: 0;
	transition: opacity .3s ease;
	z-index: -1;
	filter: blur(8px);
	pointer-events: none
}

.testimonial-nav-btn:hover {
	transform: translateY(-5px) scale(1.08);
	box-shadow: 0 12px 35px rgba(var(--testimonial-shadow-rgb), .5), 0 0 0 6px rgba(var(--testimonial-shadow-rgb), .15)
}

.testimonial-nav-btn:hover::before {
	width: 100%;
	height: 100%
}

.testimonial-nav-btn:hover::after {
	opacity: .6
}

.testimonial-nav-btn:active {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 6px 20px rgba(var(--testimonial-shadow-rgb), .4)
}

.testimonial-nav-btn i {
	position: relative;
	z-index: 1;
	transition: transform .3s ease;
	pointer-events: none;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	line-height: 1
}

.testimonial-nav-btn:hover i {
	transform: scale(1.2)
}

.testimonial-counter {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 16px;
	font-weight: 700;
	font-size: 1rem;
	color: var(--testimonial-text-primary);
	background: linear-gradient(135deg, rgba(var(--testimonial-shadow-rgb), .08) 0, rgba(var(--testimonial-shadow-rgb), .12) 100%);
	border-radius: 25px;
	min-width: 70px;
	height: 40px;
	border: 1px solid rgba(var(--testimonial-shadow-rgb), .1)
}

html.dark-mode .testimonial-counter {
	background: linear-gradient(135deg, rgba(99, 102, 241, .15) 0, rgba(99, 102, 241, .2) 100%);
	border: 1px solid rgba(99, 102, 241, .3)
}

.testimonial-counter .testimonial-current {
	color: var(--testimonial-primary);
	font-size: 1.25rem;
	font-weight: 800
}

.testimonial-counter .testimonial-separator {
	color: var(--testimonial-text-secondary);
	margin: 0 4px;
	font-weight: 500
}

.testimonial-counter .testimonial-total {
	color: var(--testimonial-text-secondary);
	font-size: .95rem;
	font-weight: 600
}

.testimonial-animate {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1)
}

.testimonial-animate.is-visible {
	opacity: 1;
	transform: translateY(0)
}

@media (min-width:769px) and (max-width:1024px) {
	.testimonial-section-wrapper {
		padding: 80px 0
	}

	.testimonial-deck-container {
		min-height: 460px;
		padding: 40px 0 110px
	}

	.testimonial-card-item {
		width: 88%;
		max-width: 480px;
		padding: 32px
	}

	.testimonial-card-item.next {
		transform: translateX(70%) scale(.85);
		opacity: .6
	}

	.testimonial-card-item.prev {
		transform: translateX(-70%) scale(.85);
		opacity: .6
	}

	.testimonial-nav-btn {
		width: 54px;
		height: 54px;
		font-size: 1.3rem
	}

	.testimonial-nav-container {
		gap: 20px;
		padding: 12px 24px
	}
}

@media (max-width:768px) {
	.testimonial-section-wrapper {
		padding: 60px 0
	}

	.testimonial-container {
		padding: 0 15px
	}

	.testimonial-section-title {
		margin-bottom: 45px
	}

	.testimonial-section-title h2 {
		font-size: 2rem;
		line-height: 1.2
	}

	.testimonial-section-title p {
		font-size: 1rem;
		padding: 0 10px
	}

	.testimonial-deck-container {
		min-height: 440px;
		padding: 35px 0 110px
	}

	.testimonial-card-item {
		width: 92%;
		max-width: 100%;
		padding: 28px 22px;
		border-radius: 18px
	}

	.testimonial-card-item.active {
		box-shadow: 0 20px 45px rgba(var(--testimonial-shadow-rgb), .3)
	}

	.testimonial-card-item.next {
		transform: translateX(80%) scale(.75);
		opacity: .5
	}

	.testimonial-card-item.prev {
		transform: translateX(-80%) scale(.75);
		opacity: .5
	}

	.testimonial-card-item p {
		font-size: .98rem;
		line-height: 1.75;
		margin-bottom: 22px;
		padding-left: 24px
	}

	.testimonial-card-item p::before {
		font-size: 3rem;
		left: -6px;
		top: -12px
	}

	.testimonial-client-info {
		gap: 12px
	}

	.testimonial-client-info img {
		width: 50px;
		height: 50px
	}

	.testimonial-client-info h4 {
		font-size: 1rem
	}

	.testimonial-client-info span {
		font-size: .88rem
	}

	.testimonial-nav-container {
		bottom: 25px;
		padding: 12px 20px;
		gap: 18px
	}

	.testimonial-nav-btn {
		width: 52px;
		height: 52px;
		font-size: 1.3rem
	}

	.testimonial-counter {
		font-size: .9rem;
		min-width: 60px;
		height: 36px;
		padding: 0 12px
	}

	.testimonial-counter .testimonial-current {
		font-size: 1.15rem
	}
}

@media (max-width:480px) {
	.testimonial-section-wrapper {
		padding: 50px 0
	}

	.testimonial-section-title {
		margin-bottom: 38px
	}

	.testimonial-section-title h2 {
		font-size: 1.75rem;
		margin-bottom: 12px
	}

	.testimonial-section-title p {
		font-size: .9rem;
		padding: 0 5px
	}

	.testimonial-deck-container {
		min-height: 420px;
		padding: 30px 0 100px
	}

	.testimonial-card-item {
		width: 95%;
		padding: 24px 20px;
		border-radius: 16px
	}

	.testimonial-card-item.next {
		transform: translateX(75%) scale(.7);
		opacity: .4
	}

	.testimonial-card-item.prev {
		transform: translateX(-75%) scale(.7);
		opacity: .4
	}

	.testimonial-card-item p {
		font-size: .92rem;
		line-height: 1.7;
		margin-bottom: 20px;
		padding-left: 22px
	}

	.testimonial-card-item p::before {
		font-size: 2.5rem;
		left: -5px;
		top: -10px
	}

	.testimonial-client-info {
		gap: 10px
	}

	.testimonial-client-info img {
		width: 45px;
		height: 45px
	}

	.testimonial-client-info h4 {
		font-size: .98rem
	}

	.testimonial-client-info span {
		font-size: .85rem
	}

	.testimonial-nav-container {
		bottom: 20px;
		padding: 10px 18px;
		gap: 16px
	}

	.testimonial-nav-btn {
		width: 48px;
		height: 48px;
		font-size: 1.2rem
	}

	.testimonial-counter {
		font-size: .85rem;
		min-width: 55px;
		height: 32px;
		padding: 0 10px
	}

	.testimonial-counter .testimonial-current {
		font-size: 1.1rem
	}
}

@media (max-width:360px) {
	.testimonial-section-title h2 {
		font-size: 1.5rem
	}

	.testimonial-card-item {
		padding: 22px 18px;
		width: 98%
	}

	.testimonial-card-item p {
		font-size: .88rem
	}

	.testimonial-nav-container {
		padding: 8px 16px;
		gap: 14px
	}

	.testimonial-nav-btn {
		width: 44px;
		height: 44px;
		font-size: 1.1rem
	}

	.testimonial-counter {
		font-size: .8rem;
		min-width: 50px;
		height: 30px;
		padding: 0 8px
	}
}

@media (min-width:1400px) {
	.testimonial-deck-container {
		min-height: 520px
	}

	.testimonial-card-item {
		max-width: 540px;
		padding: 40px
	}
}

.faq-container {
	max-width: 800px;
	margin: 0 auto
}

.faq-item {
	border-bottom: 1px solid var(--border-color);
	padding: 20px 0
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding-right: 10px;
}

.faq-question h4 {
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--text-primary);
	transition: color .3s ease
}

.faq-question:hover h4 {
	color: var(--primary-color)
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--primary-color);
	transition: transform .3s ease
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease-out;
	padding-inline-end: 12px;
}

.faq-answer p {
	padding-top: 15px;
	color: var(--text-secondary)
}

.faq-item.active .faq-answer {
	max-height: 1000px
}

.faq-item.active .faq-toggle {
	transform: rotate(45deg)
}

.cta-section {
	padding-top: 0;
	padding-bottom: 100px
}

.cta-container {
	background: var(--primary-gradient);
	border-radius: 24px;
	padding: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden
}

.cta-container::after,
.cta-container::before {
	content: '';
	position: absolute;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, .1);
	z-index: 0
}

.cta-container::before {
	width: 250px;
	height: 250px;
	top: -80px;
	right: 20%
}

.cta-container::after {
	width: 150px;
	height: 150px;
	bottom: -60px;
	left: 10%
}

.cta-text {
	color: #fff;
	position: relative;
	z-index: 1
}

.cta-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.2
}

.btn-light {
	background: #fff;
	color: var(--primary-color) !important;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.btn-light:hover {
	background: var(--background-alt);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.cta-section {
	width: 100%;
	min-height: 380px;
	padding: 30px 20px;
	background: linear-gradient(135deg, #6a6ff5, #7b82f6);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden
}

.cta-section::after,
.cta-section::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, .15);
	z-index: 0
}

.cta-section::before {
	width: 260px;
	height: 260px;
	top: -80px;
	left: -80px
}

.cta-section::after {
	width: 320px;
	height: 320px;
	bottom: -120px;
	right: -120px
}

.cta-container {
	max-width: 1100px;
	width: 100%;
	padding: 60px 40px;
	border-radius: 26px;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 30px 70px rgba(0, 0, 0, .25);
	text-align: center;
	position: relative;
	z-index: 2
}

.cta-container h3 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	line-height: 1.3
}

.cta-container p {
	font-size: clamp(15px, 2vw, 18px);
	color: #eef0ff;
	max-width: 720px;
	margin: 0 auto 35px
}

.cta-button {
	display: inline-block;
	padding: 14px 42px;
	font-size: 17px;
	font-weight: 600;
	color: #5a5ef5;
	background: #fff;
	border-radius: 50px;
	text-decoration: none;
	transition: all .3s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .2)
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .3)
}

@media (max-width:768px) {
	.cta-section {
		padding: 60px 16px
	}

	.cta-container {
		padding: 45px 25px
	}
}

@media (max-width:480px) {
	.cta-container h3 {
		font-size: 24px
	}

	.cta-button {
		width: 100%;
		text-align: center
	}
}

#back-to-top-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: var(--primary-gradient);
	color: #fff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity .3s, visibility .3s, transform .3s
}

#back-to-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

#chat-toggle-btn {
	position: fixed;
	bottom: 80px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: var(--primary-gradient);
	color: #fff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
	box-shadow: 0 4px 15px rgba(var(--shadow-rgb), .3);
	transition: transform .3s ease
}

#chat-toggle-btn:hover {
	transform: scale(1.1)
}

#chat-window {
	position: fixed;
	bottom: 150px;
	right: 20px;
	width: 350px;
	max-width: 90vw;
	height: 450px;
	background-color: var(--background-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(var(--shadow-dark-rgb), .1);
	z-index: 1000;
	display: none!important;
	flex-direction: column;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity .3s, visibility .3s, transform .3s
}

#chat-window.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.chat-header {
	padding: 15px;
	background: var(--primary-gradient);
	color: #fff;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.chat-header #chat-close-btn {
	background: 0 0;
	border: none;
	color: #fff;
	font-size: 1.2rem;
	cursor: pointer
}

.chat-body {
	flex-grow: 1;
	padding: 15px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px
}

.chat-message {
	padding: 10px 15px;
	border-radius: 20px;
	max-width: 80%;
	line-height: 1.4
}

.chat-message.bot {
	background-color: var(--hover-bg);
	color: var(--text-primary);
	align-self: flex-start;
	border-bottom-left-radius: 4px
}

.chat-message.user {
	background-color: var(--primary-color);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px
}

.chat-footer {
	padding: 10px;
	border-top: 1px solid var(--border-color);
	display: flex
}

.chat-footer input {
	flex-grow: 1;
	border: none;
	padding: 10px;
	border-radius: 8px;
	background-color: var(--background-main);
	color: var(--text-primary)
}

.chat-footer input:focus {
	outline: 0;
	box-shadow: 0 0 0 2px rgba(var(--shadow-rgb), .2)
}

.chat-footer button {
	background: 0 0;
	border: none;
	color: var(--primary-color);
	font-size: 1.2rem;
	cursor: pointer;
	padding: 0 10px
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .6s ease-out, transform .6s ease-out;
	transition-delay: .2s
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0)
}

.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	backdrop-filter: blur(5px);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease
}

.modal-overlay.show {
	opacity: 1;
	pointer-events: auto
}

.modal-content-box {
	background: var(--background-card);
	width: 90% !important;
	height: 90% !important;
	max-width: 550px;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
	overflow: hidden;
	padding: 0;
	transform: translateY(20px) scale(.95);
	transition: all .3s ease
}

.modal-overlay.show .modal-content-box {
	transform: translateY(0) scale(1)
}

.modal-header {
	flex-shrink: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--border-color);
	background: var(--background-card);
	z-index: 10
}

.modal-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	padding-right: 15px
}

.modal-close-btn {
    position: static;
    background: #3d52ac70;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.modal-close-btn img {
    width: 40px;
    height: 33px;
    display: block;
}

.modal-close-btn i {
    font-size: 14px;
    color: #fff;
}

.modal-close-btn:hover {
    background: #152cbf9e;
    transform: scale(1.12) rotate(90deg);
}

.modal-close-btn:active {
    transform: scale(0.95) rotate(90deg);
}
.modal-body {
	flex-grow: 1;
	overflow-y: auto;
	padding: 24px
}

.modal-body::-webkit-scrollbar {
	width: 6px
}

.modal-body::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, .2);
	border-radius: 10px
}

.modal-subtitle {
	font-size: .95rem;
	color: var(--text-secondary);
	margin-bottom: 20px
}

.modal-body p {
	margin-bottom: 15px;
	color: var(--text-secondary);
	font-size: .95rem;
	line-height: 1.6
}

.modal-body ul {
	list-style: none;
	padding: 0
}

.modal-body li {
	margin-bottom: 16px;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: var(--text-secondary)
}

.modal-body li i {
	color: var(--primary-color);
	margin-top: 5px;
	flex-shrink: 0
}

.modal-body input {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 12px;
	background: var(--background-main);
	color: var(--text-primary)
}

.modal-body .btn {
	width: 100%;
	margin-top: 10px
}

.otp-hidden {
	display: none !important
}

.otp-msg {
	margin-top: 10px;
	padding: 8px;
	border-radius: 4px;
	text-align: center;
	font-size: .9rem
}

.otp-success {
	color: #155724;
	background-color: #d4edda;
	border: 1px solid #c3e6cb
}

.otp-error {
	color: #721c24;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb
}

@media (max-width:1100px) {
	.desktop-nav-links {
		display: none
	}

	.hamburger-menu {
		display: block
	}
}

@media (max-width:992px) {
	.hero-content {
		flex-direction: column;
		text-align: start
	}

	.hero-text {
		margin-bottom: 40px
	}

	.hero-buttons {
		justify-content: center
	}

	.features-grid {
		grid-template-columns: 1fr
	}

	.process-layout {
		grid-template-columns: 1fr
	}

	.process-video {
		margin-bottom: 40px
	}

	.cta-container {
		flex-direction: column;
		text-align: center;
		padding: 40px 30px
	}
}

@media (max-width:1024px) {
	.new-footer .services-grid {
		grid-template-columns: repeat(3, 1fr)
	}
}

@media (max-width:768px) {
	section {
		padding: 40px 0
		
	}

	.hero {
		padding-top: 60px
	}

	.hero-text h1 {
		font-size: 2.8rem
	}

	.section-title h2 {
		font-size: 2.2rem
	}

	.testimonial-card {
		position: relative;
		margin-bottom: 20px
	}

	.card-deck-container {
		display: block;
		min-height: unset
	}

	.testimonial-card.next,
	.testimonial-card.prev,
	.testimonial-card:not(.active):not(.next):not(.prev) {
		transform: none;
		opacity: 1;
		position: relative;
		z-index: 1
	}

	.deck-nav {
		position: static;
		justify-content: center;
		margin-top: 20px;
		display: none
	}

	.new-footer .top-grid {
		grid-template-columns: 1fr
	}

	.new-footer .services-grid {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:480px) {
	.hero-text h1 {
		font-size: 2.4rem
	}

	.section-title h2 {
		font-size: 2rem
	}

	.hero-buttons {
		flex-direction: column
	}

	.new-footer .services-grid {
		grid-template-columns: 1fr
	}

	.modal-content-box {
		width: 100%;
		height: 100%;
		max-height: 100vh;
		border-radius: 0
	}

	.modal-header {
		padding: 15px 20px
	}

	.modal-body {
		padding: 20px;
		padding-bottom: 80px
	}
}

@media print {
	body {
		background-color: #fff !important
	}

	body>:not(.printable-area) {
		display: none !important
	}

	h2,
	h3,
	h4,
	label,
	p,
	span {
		color: #000 !important
	}
}


             /* === Professional Initials Avatar === */
.client-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;           /* 18px */
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    user-select: none;
    flex-shrink: 0;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    margin-right: 16px;
}

/* Subtle ring / border effect on hover/focus */
.testimonial-client-info:hover .client-avatar,
.testimonial-client-info:focus-within .client-avatar {
    transform: scale(1.06);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 0 6px rgba(79, 70, 229, 0.2); /* indigo-600 subtle glow */
}

/* Fallback background if no inline style is set */
.client-avatar:not([style*="background"]) {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}



