/* ==================== PRODUCT GROUP CSS ==================== */
/* Extracted from hero-os.tpl for reusable product pages */

/* ==================== GLOBAL BACKGROUND WRAPPER ==================== */
.product-page-wrapper {
	position: relative;
	background: #000;
	overflow: hidden;
}

.product-page-wrapper::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		repeating-linear-gradient(
			0deg,
			rgba(38, 137, 232, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(38, 137, 232, 0.03) 3px
		),
		repeating-linear-gradient(
			90deg,
			rgba(3, 207, 194, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(3, 207, 194, 0.03) 3px
		);
	background-size: 50px 50px;
	pointer-events: none;
	z-index: 0;
}

.product-page-wrapper::after {
	content: "";
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle at center,
		rgba(38, 137, 232, 0.15) 0%,
		transparent 50%
	);
	pointer-events: none;
	z-index: 0;
}

.product-page-content {
	position: relative;
	z-index: 1;
}

/* ==================== BASE SECTION STYLES ==================== */
.os-section button:focus {
	outline: none !important;
}

.os-section {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 20px;
	background: transparent;
	overflow: visible;
}

.os-container {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
}

.os-content {
	text-align: center;
}

/* ==================== TYPOGRAPHY ==================== */
.os-badge {
	display: inline-block;
	padding: 10px 24px;
	background: linear-gradient(135deg, #2689e8, #03cfc2, #2689e8);
	background-size: 200% 200%;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 24px;
	animation: gradientShift 3s ease infinite;
}

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

.os-title {
	font-size: clamp(26px, 5vw, 38px);
	font-weight: 800;
	background: linear-gradient(135deg, #2689e8, #03cfc2, #2689e8);
	background-size: 200% 200%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 24px;
	animation: gradientShift 3s ease infinite;
	line-height: 1.5;
	text-transform: uppercase;
}

.os-description {
	font-size: clamp(14px, 3vw, 16px);
	color: rgba(255, 255, 255, 0.7);
	max-width: 600px;
	margin: 0 auto 60px;
	line-height: 1.6;
}

/* ==================== OS GRID & CARDS ==================== */
.os-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 24px;
	margin-top: 60px;
}

.os-card {
	position: relative;
	padding: 40px 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(38, 137, 232, 0.2);
	border-radius: 16px;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.os-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(38, 137, 232, 0.1),
		rgba(3, 207, 194, 0.1)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.os-card:hover {
	transform: translateY(-8px);
	border-color: rgba(3, 207, 194, 0.5);
	box-shadow: 0 20px 40px rgba(38, 137, 232, 0.3);
}

.os-card:hover::before {
	opacity: 1;
}

.os-card-icon {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	color: #2689e8;
	transition: all 0.3s ease;
}

.os-card:hover .os-card-icon {
	color: #03cfc2;
	transform: scale(1.1) rotate(5deg);
}

.os-card-icon svg {
	width: 100%;
	height: 100%;
}

.os-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(1) saturate(1);
	transition: all 0.3s ease;
}

.os-card:hover .os-img {
	filter: brightness(1.2) saturate(1.3);
}

.os-name {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	transition: color 0.3s ease;
	text-align: center;
}

.os-card:hover .os-name {
	color: #03cfc2;
}

.os-cta {
	margin-top: 60px;
	text-align: center;
}

.btn-order-os {
	display: inline-block;
	padding: 15px 40px;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(38, 137, 232, 0.3);
}

.btn-order-os:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(3, 207, 194, 0.4);
	background: linear-gradient(135deg, #03cfc2, #2689e8);
	color: #fff;
}

/* ==================== MARQUEE / PARTNERS ==================== */
.marquee-container {
	overflow: hidden;
	position: relative;
	width: 100%;
	padding: 30px 0;
	margin: 30px 0;
	-webkit-mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgb(0, 0, 0) 5%,
		rgb(0, 0, 0) 95%,
		rgba(0, 0, 0, 0) 100%
	);
	mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgb(0, 0, 0) 5%,
		rgb(0, 0, 0) 95%,
		rgba(0, 0, 0, 0) 100%
	);
}

.marquee-content {
	display: flex;
	animation: scroll 20s linear infinite;
	width: fit-content;
	transition: animation-play-state 0.3s ease;
}

.marquee-item {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 40px;
	height: 80px;
}

.marquee-item img {
	max-height: 60px;
	max-width: 150px;
	object-fit: contain;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	filter: brightness(0.8) grayscale(0.3);
}

.marquee-item img:hover {
	filter: brightness(1.2) grayscale(0);
	transform: scale(1.1);
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.marquee-container:hover .marquee-content {
	animation-play-state: paused;
}

/* ==================== FAQ SECTION ==================== */
.faq-os-section {
	margin-top: 80px;
	padding: 60px 0;
}

.faq-os-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
	gap: 40px;
}

.faq-os-header-left {
	flex: 1;
}

.faq-os-main-title {
	font-size: clamp(26px, 5vw, 38px);
	font-weight: 700;
	color: #fff;
	margin-top: -10px;
	line-height: 1.2;
}

.faq-os-header-right {
	flex: 0 0 auto;
	text-align: right;
	max-width: 300px;
}

.faq-os-subtitle {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.faq-os-contact-link {
	color: #03cfc2;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.faq-os-contact-link:hover {
	color: #2689e8;
	transform: translateX(5px);
}

.faq-os-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-os-item {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-os-item:hover {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(3, 207, 194, 0.2);
}

.faq-os-item.active {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(3, 207, 194, 0.3);
}

.faq-os-question {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 28px;
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-os-number {
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 700;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	min-width: 35px;
	padding: 6px 10px;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.faq-os-item.active .faq-os-number {
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	box-shadow:
		0 0 20px rgba(38, 137, 232, 0.6),
		0 0 40px rgba(3, 207, 194, 0.3);
}

.faq-os-question-text {
	flex: 1;
	color: #fff;
}

.faq-os-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 300;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform 0.3s ease;
}

.faq-os-item.active .faq-os-icon {
	transform: rotate(180deg);
}

.faq-os-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-os-answer-content {
	padding: 0 28px 24px 78px;
}

.faq-os-answer-content p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 12px 0;
}

.faq-os-answer-content p:last-child {
	margin-bottom: 0;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-os-section {
	margin-top: 80px;
	padding: 60px 0;
	position: relative;
}

.section-title-os h3 {
	font-size: clamp(26px, 5vw, 38px);
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.section-title-os h3 span {
	display: inline;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
}

.testimonials-blur-wrapper {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgb(0, 0, 0) 5%,
		rgb(0, 0, 0) 95%,
		rgba(0, 0, 0, 0) 100%
	);
	mask-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0) 0%,
		rgb(0, 0, 0) 5%,
		rgb(0, 0, 0) 95%,
		rgba(0, 0, 0, 0) 100%
	);
}

.testimonials-swiper {
	padding: 40px 0;
	position: relative;
	width: 100%;
}

.testimonials-section--slide {
	grid-column-gap: 24px;
	grid-row-gap: 24px;
	flex-direction: column;
	display: flex;
}

.testimonials-section--card {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(38, 137, 232, 0.2);
	border-radius: 20px;
	padding: 32px;
	box-shadow:
		0 10px 24px -8px rgba(38, 137, 232, 0.15),
		0 1px 4px -1px rgba(3, 207, 194, 0.1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.testimonials-section--card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(38, 137, 232, 0.05),
		rgba(3, 207, 194, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.testimonials-section--card:hover {
	border-color: rgba(3, 207, 194, 0.5);
	transform: translateY(-5px);
	box-shadow:
		0 20px 40px rgba(38, 137, 232, 0.3),
		0 0 20px rgba(3, 207, 194, 0.2);
}

.testimonials-section--card:hover::before {
	opacity: 1;
}

.testimonials-section--card__heading {
	grid-column-gap: 12px;
	grid-row-gap: 12px;
	align-items: flex-start;
	margin-bottom: 24px;
	display: flex;
	position: relative;
	z-index: 1;
}

.testimonials-section--photo {
	border-radius: 100px;
	width: 44px;
	height: 44px;
	display: block;
	border: 2px solid rgba(38, 137, 232, 0.3);
	transition: all 0.3s ease;
}

.testimonials-section--card:hover .testimonials-section--photo {
	border-color: rgba(3, 207, 194, 0.6);
	box-shadow: 0 0 15px rgba(3, 207, 194, 0.4);
}

.testimonials-section--card__info {
	grid-column-gap: 4px;
	grid-row-gap: 4px;
	flex-direction: column;
	flex: 1;
	display: flex;
	text-align: left;
	justify-content: flex-start;
}

.testimonials-section--name {
	color: #fff;
	margin-top: 0;
	margin-bottom: 0;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25em;
	transition: color 0.3s ease;
}

.testimonials-section--card:hover .testimonials-section--name {
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonials-section--company-name {
	color: rgba(255, 255, 255, 0.6);
	font-family: Poppins, sans-serif;
	font-size: 13px;
	line-height: 1.428em;
}

.p.testimonials-section--content {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.testimonials-nav-prev,
.testimonials-nav-next {
	display: none;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(38, 137, 232, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.testimonials-nav-prev:after,
.testimonials-nav-next:after {
	font-size: 18px;
	font-weight: 700;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.testimonials-nav-prev:hover,
.testimonials-nav-next:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(3, 207, 194, 0.6);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(38, 137, 232, 0.4);
}

.swiper-button-disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* ==================== EXPERIENCE SECTION ==================== */
#trai-nghiem {
	position: relative;
	padding: 120px 0;
	margin: 0;
	color: #fff;
	overflow: hidden;
}

#trai-nghiem::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.3;
	background-image:
		repeating-radial-gradient(
			circle at 0 0,
			rgba(38, 137, 232, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(38, 137, 232, 0.03) 3px
		),
		repeating-radial-gradient(
			circle at 100% 100%,
			rgba(3, 207, 194, 0.03) 0px,
			transparent 1px,
			transparent 2px,
			rgba(3, 207, 194, 0.03) 3px
		);
	background-size: 50px 50px;
	pointer-events: none;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(50px, 50px);
	}
}

.section-box {
	position: relative;
	padding: 80px 60px;
	border-radius: 32px;
	backdrop-filter: blur(20px);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.08),
		rgba(255, 255, 255, 0.02)
	);
	overflow: hidden;
	z-index: 10;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-box::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 32px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.5),
		rgba(6, 182, 212, 0.5),
		rgba(59, 130, 246, 0.5)
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0.6;
	animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
	0%,
	100% {
		opacity: 0.6;
	}
	50% {
		opacity: 1;
	}
}

.section-box:hover {
	transform: scale(1.02);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.04)
	);
}

.section-box:hover::before {
	opacity: 1;
}

#trai-nghiem .section-box {
	display: flex;
	gap: 120px;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.section-content {
	z-index: 9;
	position: relative;
	flex: 1;
}

#trai-nghiem .section-title {
	font-size: clamp(28px, 5vw, 42px);
	font-weight: 800;
	margin-bottom: 24px;
	line-height: 1.2;
	background: linear-gradient(135deg, #fff, #06b6d4, #3b82f6);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: fadeInUp 0.8s ease-out;
}

#trai-nghiem .section-subtitle {
	font-size: clamp(16px, 2.5vw, 20px);
	line-height: 1.8;
	color: #d1d5db;
	margin-bottom: 0;
	animation: fadeInUp 1s ease-out;
}

#trai-nghiem .section-subtitle a {
	color: #06b6d4;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	position: relative;
}

#trai-nghiem .section-subtitle a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #3b82f6, #06b6d4);
	transition: width 0.3s ease;
}

#trai-nghiem .section-subtitle a:hover::after {
	width: 100%;
}

.section-actions {
	margin-top: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9;
	position: relative;
	animation: fadeInUp 1.2s ease-out;
}

#trai-nghiem .btn-primary {
	background: linear-gradient(135deg, #3b82f6, #06b6d4);
	border: none;
	color: #fff;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

#trai-nghiem .btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #06b6d4, #3b82f6);
	opacity: 0;
	transition: opacity 0.4s ease;
}

#trai-nghiem .btn-primary:hover {
	transform: translateY(-4px) scale(1.05);
	box-shadow: 0 0 60px rgba(6, 182, 212, 0.5);
}

#trai-nghiem .btn-primary:hover::before {
	opacity: 1;
}

#trai-nghiem .btn-primary .btn-text {
	position: relative;
	z-index: 1;
}

.creative-shape-img {
	position: absolute;
	animation: zoom_trai_nghiem 5s infinite;
	filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.3));
}

.creative-right {
	right: -200px;
	top: 0%;
	z-index: -1;
}

.creative-left {
	bottom: 0%;
	left: -200px;
	z-index: -1;
}

.creative-shape-img img {
	transition: all 0.3s ease-out 0s;
	transform: scale(0.7);
}

@keyframes zoom_trai_nghiem {
	0% {
		transform: scale(0.5) rotate(0deg);
	}
	50% {
		transform: scale(1) rotate(180deg);
	}
	100% {
		transform: scale(0.5) rotate(360deg);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ==================== FLOATING ORBS ==================== */
.floating-orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	pointer-events: none;
	animation: float 25s ease-in-out infinite;
	z-index: 0;
}

.orb-1 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	top: 10%;
	right: 10%;
	animation-delay: 0s;
	animation-name: floatOrb1;
}

.orb-2 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #03cfc2, #2689e8);
	bottom: 20%;
	left: 10%;
	animation-delay: 5s;
	animation-name: floatOrb2;
}

/* Enhanced floating animations for more dynamic movement on desktop */
@keyframes floatOrb1 {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
	15% {
		transform: translate(60px, -40px) scale(1.15) rotate(5deg);
	}
	30% {
		transform: translate(20px, -80px) scale(0.95) rotate(-3deg);
	}
	45% {
		transform: translate(-50px, -30px) scale(1.1) rotate(8deg);
	}
	60% {
		transform: translate(-80px, 40px) scale(0.9) rotate(-5deg);
	}
	75% {
		transform: translate(-30px, 70px) scale(1.05) rotate(3deg);
	}
	90% {
		transform: translate(40px, 30px) scale(0.98) rotate(-2deg);
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
}

@keyframes floatOrb2 {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
	12% {
		transform: translate(-40px, -60px) scale(1.12) rotate(-6deg);
	}
	25% {
		transform: translate(-70px, -20px) scale(0.92) rotate(4deg);
	}
	40% {
		transform: translate(-30px, 50px) scale(1.08) rotate(-8deg);
	}
	55% {
		transform: translate(50px, 70px) scale(0.88) rotate(6deg);
	}
	70% {
		transform: translate(80px, 10px) scale(1.1) rotate(-4deg);
	}
	85% {
		transform: translate(40px, -40px) scale(0.95) rotate(2deg);
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(0deg);
	}
}

/* ==================== STATS GRID ==================== */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 32px;
	margin: 60px 0;
}

.stat-item {
	text-align: center;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(38, 137, 232, 0.2);
	border-radius: 16px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	border-color: rgba(3, 207, 194, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(38, 137, 232, 0.2);
}

.stat-number {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ==================== CTA BUTTONS ==================== */
.cta-buttons-main {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 48px;
}

.cta-button {
	padding: 14px 32px;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	color: white;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	font-size: 16px;
	box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.cta-button::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition:
		width 0.5s ease,
		height 0.5s ease;
}

.cta-button:hover::before {
	width: 300px;
	height: 300px;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 60px rgba(6, 182, 212, 0.7);
	background: linear-gradient(135deg, #03cfc2, #2689e8);
	color: white;
}

.cta-button-secondary {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(38, 137, 232, 0.3);
	box-shadow: 0 0 20px rgba(38, 137, 232, 0.2);
}

.cta-button-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(3, 207, 194, 0.5);
	box-shadow: 0 0 40px rgba(3, 207, 194, 0.4);
}

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	margin-top: 40px;
}

.product-card-vps {
	position: relative;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(38, 137, 232, 0.2);
	border-radius: 20px;
	padding: 24px 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-card-vps::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(38, 137, 232, 0.05),
		rgba(3, 207, 194, 0.05)
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: 0;
}

.product-card-vps:hover {
	transform: translateY(-8px);
	border-color: rgba(3, 207, 194, 0.5);
	box-shadow:
		0 20px 60px rgba(38, 137, 232, 0.3),
		0 0 40px rgba(3, 207, 194, 0.2);
}

.product-card-vps:hover::before {
	opacity: 1;
}

/* Featured Product Card */
.product-card-vps.featured {
	border-color: rgba(255, 215, 0, 0.4);
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.03),
		rgba(38, 137, 232, 0.02)
	);
}

.product-card-vps.featured::before {
	background: linear-gradient(
		135deg,
		rgba(255, 215, 0, 0.08),
		rgba(3, 207, 194, 0.08)
	);
}

.product-card-vps.featured:hover {
	border-color: rgba(255, 215, 0, 0.6);
	box-shadow:
		0 20px 60px rgba(255, 215, 0, 0.3),
		0 0 40px rgba(3, 207, 194, 0.2);
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 2;
	--badge-shadow-rgb: 255, 215, 0;
	box-shadow: 0 0 20px rgba(var(--badge-shadow-rgb), 0.5);
	animation: pulse 2s ease-in-out infinite;
}

.featured-badge svg {
	width: 16px;
	height: 16px;
	stroke-width: 2.5;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 20px rgba(var(--badge-shadow-rgb), 0.5);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 0 30px rgba(var(--badge-shadow-rgb), 0.8);
	}
}

/* Product Card Header */
.product-card-header {
	position: relative;
	z-index: 1;
}

.product-card-name {
	font-size: 20px;
	font-weight: 700;
	background: linear-gradient(135deg, #fff, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
	transition: all 0.3s ease;
}

.product-card-vps:hover .product-card-name {
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Product Pricing */
.product-card-pricing {
	position: relative;
	z-index: 1;
	padding: 10px 0;
	border-top: 1px solid rgba(38, 137, 232, 0.1);
	border-bottom: 1px solid rgba(38, 137, 232, 0.1);
}

.product-price {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.price-amount {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1;
}

.price-period {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

/* Product Specifications */
.product-card-specs {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(38, 137, 232, 0.1);
}

.spec-item {
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

/* Full-width spec item for CPU model */
.spec-item-full {
	padding: 10px 14px;
	background: rgba(38, 137, 232, 0.08);
	border-radius: 12px;
	border: 1px solid rgba(38, 137, 232, 0.15);
}

.spec-item-full .spec-value {
	font-size: 13px;
	line-height: 1.4;
}

.spec-item svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #2689e8;
	stroke-width: 2;
}

.spec-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
}

.spec-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.spec-value {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 600;
}

.product-card-vps:hover .spec-item svg {
	color: #03cfc2;
	transform: scale(1.1);
}

.product-card-vps:hover .spec-value {
	color: #fff;
}

/* Product Features */
.product-card-features {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.feature-item svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-top: 2px;
	color: #03cfc2;
	stroke-width: 2.5;
}

.product-card-vps:hover .feature-item {
	color: rgba(255, 255, 255, 0.95);
}

.product-card-vps:hover .feature-item svg {
	color: #2689e8;
	transform: scale(1.1);
}

/* Product Action Button */
.product-card-action {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.btn-order-product {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px 16px;
	background: linear-gradient(135deg, #2689e8, #03cfc2);
	border: none;
	border-radius: 50px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(38, 137, 232, 0.3);
}

.btn-order-product::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition:
		width 0.5s ease,
		height 0.5s ease;
}

.btn-order-product:hover::before {
	width: 100%;
	height: 120px;
}

.btn-order-product:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 40px rgba(3, 207, 194, 0.5);
	background: linear-gradient(135deg, #03cfc2, #2689e8);
	color: #fff;
}

.btn-order-product svg {
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease;
}

.btn-order-product:hover svg {
	transform: translateX(5px);
}

.btn-order-product span {
	position: relative;
	z-index: 1;
}

/* Featured Product Button */
.product-card-vps.featured .btn-order-product {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000;
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.product-card-vps.featured .btn-order-product:hover {
	background: linear-gradient(135deg, #ffed4e, #ffd700);
	box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
	color: #000;
}

/* ==================== FEATURED PRODUCT COLOR MODIFIERS ==================== */
/* Usage: Add color class to .product-card-vps.featured element */
/* Example: <div class="product-card-vps featured color-orange"> */

/* Gold (default - already applied via .featured) */
.product-card-vps.featured.color-gold {
	border-color: rgba(255, 215, 0, 0.4);
}
.product-card-vps.featured.color-gold:hover {
	border-color: rgba(255, 215, 0, 0.6);
	box-shadow:
		0 20px 60px rgba(255, 215, 0, 0.3),
		0 0 40px rgba(255, 215, 0, 0.2);
}
.product-card-vps.featured.color-gold .featured-badge {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	--badge-shadow-rgb: 255, 215, 0;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-gold .btn-order-product {
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #000;
	box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.product-card-vps.featured.color-gold .btn-order-product:hover {
	background: linear-gradient(135deg, #ffed4e, #ffd700);
	box-shadow: 0 8px 40px rgba(255, 215, 0, 0.6);
	color: #000;
}

/* Orange - Inspired by #ff6b35 */
.product-card-vps.featured.color-orange {
	border-color: rgba(255, 107, 53, 0.4);
}
.product-card-vps.featured.color-orange:hover {
	border-color: rgba(255, 107, 53, 0.6);
	box-shadow:
		0 20px 60px rgba(255, 107, 53, 0.3),
		0 0 40px rgba(255, 87, 34, 0.2);
}
.product-card-vps.featured.color-orange .featured-badge {
	background: linear-gradient(135deg, #ff6b35, #ff8c5a);
	--badge-shadow-rgb: 255, 107, 53;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-orange .btn-order-product {
	background: linear-gradient(135deg, #ff6b35, #ff8c5a);
	color: #fff;
	box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}
.product-card-vps.featured.color-orange .btn-order-product:hover {
	background: linear-gradient(135deg, #ff8c5a, #ff6b35);
	box-shadow: 0 8px 40px rgba(255, 107, 53, 0.6);
	color: #fff;
}

/* Dark Blue */
.product-card-vps.featured.color-dark-blue {
	border-color: rgba(30, 58, 138, 0.4);
}
.product-card-vps.featured.color-dark-blue:hover {
	border-color: rgba(30, 58, 138, 0.6);
	box-shadow:
		0 20px 60px rgba(30, 58, 138, 0.3),
		0 0 40px rgba(59, 130, 246, 0.2);
}
.product-card-vps.featured.color-dark-blue .featured-badge {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	--badge-shadow-rgb: 30, 58, 138;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-dark-blue .btn-order-product {
	background: linear-gradient(135deg, #1e3a8a, #3b82f6);
	color: #fff;
	box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
}
.product-card-vps.featured.color-dark-blue .btn-order-product:hover {
	background: linear-gradient(135deg, #3b82f6, #1e3a8a);
	box-shadow: 0 8px 40px rgba(59, 130, 246, 0.6);
	color: #fff;
}

/* Pink */
.product-card-vps.featured.color-pink {
	border-color: rgba(219, 39, 119, 0.4);
}
.product-card-vps.featured.color-pink:hover {
	border-color: rgba(219, 39, 119, 0.6);
	box-shadow:
		0 20px 60px rgba(219, 39, 119, 0.3),
		0 0 40px rgba(244, 114, 182, 0.2);
}
.product-card-vps.featured.color-pink .featured-badge {
	background: linear-gradient(135deg, #db2777, #f472b6);
	--badge-shadow-rgb: 219, 39, 119;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-pink .btn-order-product {
	background: linear-gradient(135deg, #db2777, #f472b6);
	color: #fff;
	box-shadow: 0 4px 20px rgba(219, 39, 119, 0.4);
}
.product-card-vps.featured.color-pink .btn-order-product:hover {
	background: linear-gradient(135deg, #f472b6, #db2777);
	box-shadow: 0 8px 40px rgba(244, 114, 182, 0.6);
	color: #fff;
}

/* Cyan */
.product-card-vps.featured.color-cyan {
	border-color: rgba(8, 145, 178, 0.4);
}
.product-card-vps.featured.color-cyan:hover {
	border-color: rgba(8, 145, 178, 0.6);
	box-shadow:
		0 20px 60px rgba(8, 145, 178, 0.3),
		0 0 40px rgba(34, 211, 238, 0.2);
}
.product-card-vps.featured.color-cyan .featured-badge {
	background: linear-gradient(135deg, #0891b2, #22d3ee);
	--badge-shadow-rgb: 8, 145, 178;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-cyan .btn-order-product {
	background: linear-gradient(135deg, #0891b2, #22d3ee);
	color: #fff;
	box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
}
.product-card-vps.featured.color-cyan .btn-order-product:hover {
	background: linear-gradient(135deg, #22d3ee, #0891b2);
	box-shadow: 0 8px 40px rgba(34, 211, 238, 0.6);
	color: #fff;
}

/* Green */
.product-card-vps.featured.color-green {
	border-color: rgba(16, 185, 129, 0.4);
}
.product-card-vps.featured.color-green:hover {
	border-color: rgba(16, 185, 129, 0.6);
	box-shadow:
		0 20px 60px rgba(16, 185, 129, 0.3),
		0 0 40px rgba(52, 211, 153, 0.2);
}
.product-card-vps.featured.color-green .featured-badge {
	background: linear-gradient(135deg, #10b981, #34d399);
	--badge-shadow-rgb: 16, 185, 129;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-green .btn-order-product {
	background: linear-gradient(135deg, #10b981, #34d399);
	color: #fff;
	box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}
.product-card-vps.featured.color-green .btn-order-product:hover {
	background: linear-gradient(135deg, #34d399, #10b981);
	box-shadow: 0 8px 40px rgba(16, 185, 129, 0.6);
	color: #fff;
}

/* Purple */
.product-card-vps.featured.color-purple {
	border-color: rgba(139, 92, 246, 0.4);
}
.product-card-vps.featured.color-purple:hover {
	border-color: rgba(139, 92, 246, 0.6);
	box-shadow:
		0 20px 60px rgba(139, 92, 246, 0.3),
		0 0 40px rgba(167, 139, 250, 0.2);
}
.product-card-vps.featured.color-purple .featured-badge {
	background: linear-gradient(135deg, #8b5cf6, #a78bfa);
	--badge-shadow-rgb: 139, 92, 246;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-purple .btn-order-product {
	background: linear-gradient(135deg, #8b5cf6, #a78bfa);
	color: #fff;
	box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}
.product-card-vps.featured.color-purple .btn-order-product:hover {
	background: linear-gradient(135deg, #a78bfa, #8b5cf6);
	box-shadow: 0 8px 40px rgba(139, 92, 246, 0.6);
	color: #fff;
}

/* Red */
.product-card-vps.featured.color-red {
	border-color: rgba(239, 68, 68, 0.4);
}
.product-card-vps.featured.color-red:hover {
	border-color: rgba(239, 68, 68, 0.6);
	box-shadow:
		0 20px 60px rgba(239, 68, 68, 0.3),
		0 0 40px rgba(248, 113, 113, 0.2);
}
.product-card-vps.featured.color-red .featured-badge {
	background: linear-gradient(135deg, #ef4444, #f87171);
	--badge-shadow-rgb: 239, 68, 68;
	box-shadow: 0 4px 15px rgba(var(--badge-shadow-rgb), 0.4);
}
.product-card-vps.featured.color-red .btn-order-product {
	background: linear-gradient(135deg, #ef4444, #f87171);
	color: #fff;
	box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
}
.product-card-vps.featured.color-red .btn-order-product:hover {
	background: linear-gradient(135deg, #f87171, #ef4444);
	box-shadow: 0 8px 40px rgba(239, 68, 68, 0.6);
	color: #fff;
}

/* ==================== MOBILE RESPONSIVE ==================== */
@media (max-width: 768px) {
	.os-section {
		padding: 60px 20px;
	}

	.os-title {
		font-size: 26px;
	}

	.os-description {
		font-size: 14px;
	}

	.os-grid {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 16px;
	}

	.os-card {
		padding: 30px 15px;
	}

	.os-card-icon {
		width: 48px;
		height: 48px;
	}

	.os-name {
		font-size: 16px;
	}

	.marquee-container {
		margin-bottom: 0 !important;
		margin-top: 0 !important;
		padding-top: 0;
	}

	.marquee-item {
		padding: 0 20px;
	}

	.marquee-item img {
		max-width: 100px;
		max-height: 50px;
	}

	.faq-os-section {
		margin-top: 60px;
		padding: 40px 0;
	}

	.faq-os-header {
		flex-direction: column;
		gap: 30px;
		margin-bottom: 40px;
	}

	.faq-os-header-right {
		text-align: left;
		max-width: 100%;
	}

	.faq-os-main-title {
		font-size: clamp(26px, 5vw, 38px);
		font-weight: 700;
		color: #fff;
		margin-top: -10px;
		line-height: 1.2;
	}

	.faq-os-header-right {
		flex: 0 0 auto;
		text-align: right;
		max-width: 300px;
	}

	.faq-os-subtitle {
		color: rgba(255, 255, 255, 0.6);
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 15px;
	}

	.faq-os-contact-link {
		color: #03cfc2;
		text-decoration: none;
		font-size: 14px;
		font-weight: 600;
		transition: all 0.3s ease;
		display: inline-block;
	}

	.faq-os-question {
		padding: 20px;
		gap: 15px;
		font-size: 15px;
	}

	.faq-os-number {
		font-size: 13px;
		min-width: 25px;
	}

	.faq-os-answer-content {
		padding: 0 20px 20px 60px;
	}

	.faq-os-answer-content p {
		font-size: 14px;
	}

	.testimonials-os-section {
		margin-top: 60px;
		padding: 40px 0;
	}

	.testimonials-swiper {
		padding: 20px 0;
	}

	.testimonials-section--card {
		padding: 24px;
	}

	.section-title-os h3 {
		font-size: 24px;
	}

	#trai-nghiem {
		padding: 80px 0;
	}

	.section-box {
		padding: 60px 40px;
	}

	#trai-nghiem .section-box {
		display: block;
		gap: 40px;
	}

	#trai-nghiem .creative-right {
		display: none;
	}

	#trai-nghiem .section-title {
		font-size: clamp(28px, 8vw, 36px);
	}

	#trai-nghiem .section-subtitle {
		font-size: clamp(14px, 4vw, 16px);
	}

	/* Product Cards Mobile */
	.products-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.product-card-vps {
		padding: 32px 24px;
	}

	.featured-badge {
		top: 16px;
		right: 16px;
		padding: 6px 12px;
		font-size: 11px;
	}

	.featured-badge svg {
		width: 14px;
		height: 14px;
	}

	.product-card-name {
		font-size: 20px;
	}

	.price-amount {
		font-size: 28px;
	}

	.price-period {
		font-size: 14px;
	}

	.feature-item {
		font-size: 13px;
	}

	.btn-order-product {
		padding: 14px 28px;
		font-size: 14px;
	}

	/* Floating Orbs - Reduced brightness on mobile */
	.floating-orb {
		opacity: 0.12;
		filter: blur(60px);
	}

	.orb-1 {
		width: 250px;
		height: 250px;
	}

	.orb-2 {
		width: 180px;
		height: 180px;
	}
}

@media screen and (min-width: 1440px) {
	.testimonials-section--card__heading {
		margin-bottom: 32px;
	}
	.testimonials-section--slide {
		grid-column-gap: 32px;
		grid-row-gap: 32px;
	}
}

/* Custom Swiper Navigation Buttons */
.testimonials-nav-prev,
.testimonials-nav-next {
	display: none;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(38, 137, 232, 0.3);
	border-radius: 50%;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}
