.vmccmc-page {
	--vmc-primary: #2563eb;
	--vmc-primary-dark: #1e40af;
	--vmc-cyan: #0ea5e9;
	--vmc-mint: #22c55e;
	--vmc-ink: var(--hc-navy, #071832);
	--vmc-muted: var(--hc-muted, #667895);
	--vmc-soft: var(--hc-bg, #f5f9ff);
	--vmc-border: rgba(9, 105, 255, 0.16);
	--vmc-shadow: var(--hc-shadow-hover, 0 24px 70px rgba(8, 47, 134, 0.12));
	font-family: inherit;
	color: var(--vmc-ink);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 44%, #eff6ff 100%);
	overflow: hidden;
}

.vmccmc-page *,
.vmccmc-page *::before,
.vmccmc-page *::after {
	box-sizing: border-box;
}

.vmccmc-page a {
	text-decoration: none;
}

.vmc-container {
	width: min(1200px, calc(100% - 40px));
	margin: 0 auto;
}

.vmc-section {
	position: relative;
	padding: clamp(70px, 8vw, 108px) 0;
}

.vmc-hero {
	position: relative;
	min-height: 660px;
	padding: 118px 0 94px;
	isolation: isolate;
	background-color: #07162d;
	background-image: linear-gradient(96deg, rgba(4, 22, 48, 0.96), rgba(29, 78, 216, 0.78), rgba(14, 165, 233, 0.18)), var(--vmc-hero-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.vmc-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 18%, rgba(34, 197, 94, 0.22), transparent 28%),
		radial-gradient(circle at 80% 72%, rgba(14, 165, 233, 0.25), transparent 34%),
		linear-gradient(180deg, transparent, rgba(4, 22, 48, 0.48));
}

.vmc-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 720px) minmax(300px, 410px);
	gap: clamp(34px, 5vw, 78px);
	align-items: center;
}

.vmc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	padding: 8px 14px;
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--vmc-primary-dark);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.vmc-eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.14);
}

.vmc-hero .vmc-eyebrow,
.vmc-cta .vmc-eyebrow {
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.14);
	color: #dbeafe;
	backdrop-filter: blur(12px);
}

.vmc-hero h1,
.vmc-section-heading h2,
.vmc-cta__box h2 {
	margin: 0;
	font-weight: 950;
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.vmc-hero h1 {
	max-width: 780px;
	color: #ffffff;
	font-size: clamp(44px, 6.4vw, 82px);
	line-height: 0.98;
	text-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.vmc-hero p,
.vmc-section-heading p,
.vmc-review-card p,
.vmc-feature-card p,
.vmc-step-card p,
.vmc-cta__box p {
	color: var(--vmc-muted);
	line-height: 1.72;
}

.vmc-hero p {
	max-width: 760px;
	margin: 22px 0 0;
	font-size: clamp(1rem, 1.35vw, 1.18rem);
	color: rgba(255, 255, 255, 0.92);
}

.vmc-hero__actions,
.vmc-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.vmc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	font-weight: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vmc-btn:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.vmc-btn--primary {
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	color: #ffffff;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
}

.vmc-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	backdrop-filter: blur(12px);
}

.vmc-btn--light {
	background: #ffffff;
	color: var(--vmc-primary-dark);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.vmc-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.vmc-trust-row span {
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 850;
	backdrop-filter: blur(12px);
}

.vmc-hero-card {
	display: grid;
	gap: 18px;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.17);
	box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(18px);
}

.vmc-hero-card img {
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.18));
}

.vmc-hero-card strong {
	display: block;
	color: #ffffff;
	font-size: 25px;
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.18;
}

.vmc-hero-card span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.62;
}

.vmc-section-heading {
	max-width: 880px;
}

.vmc-section-heading h2 {
	font-size: clamp(2rem, 4vw, 3.3rem);
	color: var(--vmc-ink);
}

.vmc-section-heading p {
	max-width: 760px;
	margin: 16px auto 0;
	font-size: 1.02rem;
}

.vmc-center {
	margin: 0 auto 44px;
	text-align: center;
}

.vmc-partners,
.vmc-pricing,
.vmc-features {
	background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.vmc-logo-marquee {
	position: relative;
	overflow: hidden;
	padding: 8px 0;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.vmc-logo-track {
	display: flex;
	width: max-content;
	gap: 18px;
	animation: vmcMarquee 34s linear infinite;
}

.vmc-logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 86px;
	padding: 16px;
	border: 1px solid var(--vmc-border);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.vmc-logo-card img {
	max-width: 100%;
	max-height: 58px;
	object-fit: contain;
}

@keyframes vmcMarquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-33.333%);
	}
}

.vmc-reviews {
	background: #ffffff;
}

.vmc-reviews__grid,
.vmc-faq__grid {
	display: grid;
	grid-template-columns: 0.78fr 1.22fr;
	gap: clamp(30px, 5vw, 70px);
	align-items: start;
}

.vmc-review-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.vmc-review-card,
.vmc-step-card,
.vmc-feature-card {
	border: 1px solid var(--vmc-border);
	border-radius: 26px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vmc-review-card:hover,
.vmc-step-card:hover,
.vmc-feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(37, 99, 235, 0.34);
	box-shadow: var(--vmc-shadow);
}

.vmc-review-card {
	padding: 24px;
}

.vmc-review-card p {
	min-height: 104px;
	margin: 0 0 18px;
	font-weight: 750;
}

.vmc-review-card div {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vmc-review-card img {
	width: 52px;
	height: 52px;
	border-radius: 999px;
}

.vmc-review-card strong {
	color: var(--vmc-ink);
	font-weight: 900;
}

.vmc-filter-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: -16px 0 28px;
}

.vmc-filter {
	padding: 10px 18px;
	border: 1px solid rgba(37, 99, 235, 0.18);
	border-radius: 999px;
	background: #ffffff;
	color: var(--vmc-primary-dark);
	cursor: pointer;
	font-weight: 950;
}

.vmc-filter.is-active,
.vmc-filter:hover {
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	color: #ffffff;
	box-shadow: 0 14px 34px rgba(37, 99, 235, 0.2);
}

.vmc-pricing-shell {
	position: relative;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 52px;
}

.vmc-product-slider {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 24px) / 2);
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding: 8px 4px 28px;
	scrollbar-width: none;
}

.vmc-product-slider::-webkit-scrollbar {
	display: none;
}

.vmc-product {
	position: relative;
	display: flex;
	min-height: 100%;
	flex-direction: column;
	padding: 30px;
	border: 1px solid var(--vmc-border);
	border-radius: 28px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
	scroll-snap-align: start;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vmc-product:hover {
	transform: translateY(-5px);
	border-color: rgba(37, 99, 235, 0.34);
	box-shadow: var(--vmc-shadow);
}

.vmc-product--featured {
	border-color: rgba(37, 99, 235, 0.5);
	box-shadow: 0 28px 80px rgba(37, 99, 235, 0.18);
}

.vmc-product--featured::before {
	content: "Khuyến nghị";
	position: absolute;
	top: 18px;
	right: 18px;
	padding: 6px 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	color: #ffffff;
	font-size: 11px;
	font-weight: 950;
	text-transform: uppercase;
}

.vmc-product.is-hidden {
	display: none;
}

.vmc-product__hidden-id {
	display: none;
}

.vmc-product__top > span {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.09);
	color: var(--vmc-primary);
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.vmc-product__top h3 {
	margin: 18px 0 10px;
	padding-right: 94px;
	color: #071733;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 1.16;
}

.vmc-product__top p {
	min-height: 82px;
	margin: 0;
	color: var(--vmc-muted);
	line-height: 1.65;
}

.vmc-product__meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 18px 0;
}

.vmc-product__meta strong {
	padding: 10px;
	border-radius: 14px;
	background: var(--vmc-soft);
	color: var(--vmc-ink);
	font-size: 13px;
	font-weight: 950;
	text-align: center;
}

.vmc-price-line {
	display: flex;
	align-items: baseline;
	gap: 8px;
	max-width: 100%;
	margin-bottom: 12px;
	overflow: hidden;
	white-space: nowrap;
}

.vmc-price-value {
	flex: 0 1 auto;
	min-width: 0;
	color: var(--vmc-ink);
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 950;
	line-height: 1;
	letter-spacing: -0.055em;
}

.vmc-cycle-label {
	flex: 0 0 auto;
	color: var(--vmc-muted);
	font-size: 14px;
	font-weight: 900;
}

.vmc-cycle-select {
	width: 100%;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid var(--vmc-border);
	border-radius: 14px;
	background: #ffffff;
	color: var(--vmc-ink);
	font-weight: 900;
}

.vmc-trust-level {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: 18px;
	background: var(--vmc-soft);
}

.vmc-trust-level span,
.vmc-trust-level strong {
	font-size: 13px;
	font-weight: 950;
}

.vmc-trust-level span {
	color: var(--vmc-muted);
}

.vmc-trust-level strong {
	color: var(--vmc-primary-dark);
}

.vmc-check-list {
	display: grid;
	gap: 11px;
	margin: 18px 0 26px;
	padding: 0;
	list-style: none;
}

.vmc-check-list li {
	position: relative;
	padding-left: 28px;
	color: #334155;
	font-weight: 800;
	line-height: 1.5;
}

.vmc-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--vmc-mint);
	font-weight: 950;
}

.vmc-product__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: auto;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	color: #ffffff;
	font-weight: 950;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.vmc-product__action:hover {
	color: #ffffff;
	text-decoration: none;
}

.vmc-slider-btn {
	position: absolute;
	top: 44%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
	color: var(--vmc-primary);
	cursor: pointer;
	font-size: 34px;
	line-height: 1;
}

.vmc-slider-btn--prev {
	left: 0;
}

.vmc-slider-btn--next {
	right: 0;
}

.vmc-process {
	background: #ffffff;
}

.vmc-step-grid,
.vmc-feature-grid {
	display: grid;
	gap: 22px;
}

.vmc-step-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vmc-feature-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vmc-step-card,
.vmc-feature-card {
	padding: 28px;
}

.vmc-step-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.12));
	color: var(--vmc-primary-dark);
	font-weight: 950;
}

.vmc-step-card h3,
.vmc-feature-card h3 {
	margin: 0 0 10px;
	color: var(--vmc-ink);
	font-size: 1.2rem;
	font-weight: 950;
	letter-spacing: -0.025em;
}

.vmc-step-card p,
.vmc-feature-card p {
	margin: 0;
}

.vmc-feature-card {
	position: relative;
	padding-top: 58px;
}

.vmc-feature-card::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 28px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-cyan));
	box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1);
}

.vmc-faq {
	background: #ffffff;
}

.vmc-faq-list {
	display: grid;
	gap: 14px;
}

.vmc-faq-list details {
	border: 1px solid var(--vmc-border);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
	overflow: hidden;
}

.vmc-faq-list summary {
	cursor: pointer;
	padding: 20px 24px;
	color: var(--vmc-ink);
	font-weight: 950;
	list-style: none;
}

.vmc-faq-list summary::-webkit-details-marker {
	display: none;
}

.vmc-faq-list summary::after {
	content: "+";
	float: right;
	color: var(--vmc-primary-dark);
	font-size: 22px;
	line-height: 1;
}

.vmc-faq-list details[open] summary::after {
	content: "−";
}

.vmc-faq-list p {
	margin: 0;
	padding: 0 24px 22px;
	color: var(--vmc-muted);
	line-height: 1.72;
}

.vmc-cta {
	padding-top: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.vmc-cta__box {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center;
	padding: 46px;
	border-radius: 34px;
	background: linear-gradient(135deg, #07162d, #1d4ed8 54%, #0ea5e9);
	box-shadow: 0 26px 80px rgba(30, 64, 175, 0.22);
	color: #ffffff;
}

.vmc-cta__box h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	color: #ffffff;
}

.vmc-cta__box p {
	max-width: 760px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1080px) {
	.vmc-hero__grid,
	.vmc-reviews__grid,
	.vmc-faq__grid,
	.vmc-cta__box {
		grid-template-columns: 1fr;
	}

	.vmc-step-grid,
	.vmc-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vmc-product-slider {
		grid-auto-columns: min(78vw, 480px);
	}

	.vmc-pricing-shell {
		padding: 0 44px;
	}
}

@media (max-width: 820px) {
	.vmc-review-grid {
		grid-template-columns: 1fr;
	}

	.vmc-hero {
		min-height: auto;
		padding: 96px 0 76px;
	}

	.vmc-product__top p,
	.vmc-review-card p {
		min-height: 0;
	}
}

@media (max-width: 640px) {
	.vmc-container {
		width: min(100% - 28px, 1200px);
	}

	.vmc-hero h1 {
		font-size: clamp(38px, 14vw, 58px);
	}

	.vmc-hero-card,
	.vmc-product,
	.vmc-cta__box {
		padding: 24px;
		border-radius: 24px;
	}

	.vmc-step-grid,
	.vmc-feature-grid {
		grid-template-columns: 1fr;
	}

	.vmc-pricing-shell {
		margin: 0 -14px;
		padding: 0 36px;
	}

	.vmc-product-slider {
		grid-auto-columns: min(86vw, 360px);
	}

	.vmc-product__top h3 {
		padding-right: 0;
	}

	.vmc-product--featured::before {
		position: static;
		align-self: flex-start;
		margin-bottom: 12px;
	}

	.vmc-price-line {
		gap: 6px;
	}

	.vmc-cycle-label {
		font-size: 12px;
	}

	.vmc-slider-btn {
		width: 36px;
		height: 36px;
		font-size: 28px;
	}

	.vmc-logo-card {
		width: 150px;
		height: 76px;
	}
}
