:root {
	--vcdn-dark: #061326;
	--vcdn-navy: #0f172a;
	--vcdn-blue: #2563eb;
	--vcdn-cyan: #06b6d4;
	--vcdn-green: #22c55e;
	--vcdn-orange: #f97316;
	--vcdn-text: #0f172a;
	--vcdn-muted: #64748b;
	--vcdn-soft: #f4f8ff;
	--vcdn-border: rgba(37, 99, 235, 0.14);
}

.vcdn-page {
	background: #ffffff;
	color: var(--vcdn-text);
	font-family: inherit;
	overflow: hidden;
}

.vcdn-section {
	padding: 86px 0;
}

.vcdn-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.vcdn-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--vcdn-cyan);
	font-size: 13px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vcdn-eyebrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--vcdn-cyan), var(--vcdn-green));
	box-shadow: 0 0 18px rgba(6, 182, 212, 0.7);
}

.vcdn-section-heading {
	max-width: 940px;
	margin-bottom: 38px;
}

.vcdn-section-heading h2,
.vcdn-cta__box h2 {
	margin: 0;
	color: var(--vcdn-text);
	font-size: clamp(32px, 3.7vw, 58px);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: -0.055em;
}

.vcdn-section-heading p,
.vcdn-cta__box p {
	margin: 16px 0 0;
	color: var(--vcdn-muted);
	font-size: 17px;
	line-height: 1.75;
}

.vcdn-hero {
	position: relative;
	padding: 132px 0 112px;
	background-image:
		linear-gradient(90deg, rgba(6, 19, 38, 0.98) 0%, rgba(15, 23, 42, 0.88) 42%, rgba(37, 99, 235, 0.2) 100%),
		url('../images/vcdn/vcdn-banner.jpeg');
	background-position: center right;
	background-size: cover;
	color: #ffffff;
}

.vcdn-hero::after {
	content: '';
	position: absolute;
	inset: auto 0 0;
	height: 150px;
	background: linear-gradient(180deg, transparent, rgba(244, 248, 255, 0.96));
	pointer-events: none;
}

.vcdn-hero__grid {
	position: relative;
	z-index: 1;
}

.vcdn-hero__content {
	max-width: 920px;
}

.vcdn-hero h1 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(42px, 5vw, 78px);
	font-weight: 950;
	line-height: 1.03;
	letter-spacing: -0.065em;
}

.vcdn-hero p {
	max-width: 790px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 19px;
	line-height: 1.75;
}

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

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

.vcdn-btn:hover {
	transform: translateY(-2px);
}

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

.vcdn-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	backdrop-filter: blur(14px);
}

.vcdn-btn--light {
	background: #ffffff;
	color: var(--vcdn-blue);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
}

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

.vcdn-trust-row span {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 800;
}

.vcdn-overview {
	background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.vcdn-overview__grid,
.vcdn-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
	gap: 46px;
	align-items: center;
}

.vcdn-overview__media {
	position: relative;
	padding: 24px;
	border: 1px solid var(--vcdn-border);
	border-radius: 34px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.92));
	box-shadow: 0 28px 80px rgba(15, 23, 42, 0.1);
}

.vcdn-overview__media::before {
	content: '';
	position: absolute;
	inset: 18px;
	border-radius: 28px;
	background: radial-gradient(circle at 70% 20%, rgba(6, 182, 212, 0.22), transparent 46%);
	pointer-events: none;
}

.vcdn-overview__media img {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}

.vcdn-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.vcdn-feature-card,
.vcdn-why-card,
.vcdn-plan-card,
.vcdn-logo-card,
.vcdn-faq-list details {
	border: 1px solid var(--vcdn-border);
	background: #ffffff;
	box-shadow: 0 18px 54px rgba(15, 23, 42, 0.08);
}

.vcdn-feature-card {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	padding: 30px;
	border-radius: 28px;
}

.vcdn-feature-card::after {
	content: '';
	position: absolute;
	right: -42px;
	bottom: -42px;
	width: 130px;
	height: 130px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
}

.vcdn-feature-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.14));
	color: var(--vcdn-blue);
	font-size: 15px;
	font-weight: 950;
}

.vcdn-feature-card h3,
.vcdn-why-card h3,
.vcdn-plan-card h3 {
	position: relative;
	margin: 0;
	color: var(--vcdn-text);
	font-size: 21px;
	font-weight: 950;
	line-height: 1.25;
	letter-spacing: -0.025em;
}

.vcdn-feature-card p,
.vcdn-why-card p,
.vcdn-plan-card p {
	position: relative;
	margin: 14px 0 0;
	color: var(--vcdn-muted);
	font-size: 15px;
	line-height: 1.7;
}

.vcdn-pricing {
	background:
		radial-gradient(circle at top left, rgba(6, 182, 212, 0.1), transparent 35%),
		linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.vcdn-plan-slider {
	position: relative;
}

.vcdn-plan-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 10px 4px 28px;
}

.vcdn-plan-track::-webkit-scrollbar {
	display: none;
}

.vcdn-plan-card {
	display: flex;
	flex-direction: column;
	scroll-snap-align: start;
	min-height: 520px;
	padding: 28px;
	border-radius: 30px;
}

.vcdn-plan-card__top span {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(6, 182, 212, 0.1);
	color: var(--vcdn-blue);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.vcdn-plan-card__top p strong {
	color: var(--vcdn-text);
}

.vcdn-price {
	margin: 24px 0;
	padding: 22px;
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.1));
	white-space: nowrap;
}

.vcdn-price strong {
	display: block;
	color: var(--vcdn-blue);
	font-size: clamp(25px, 2.5vw, 38px);
	font-weight: 950;
	line-height: 1.1;
	letter-spacing: -0.045em;
}

.vcdn-price span {
	display: block;
	margin-top: 6px;
	color: var(--vcdn-muted);
	font-size: 13px;
	font-weight: 850;
}

.vcdn-plan-card ul {
	display: grid;
	gap: 12px;
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
}

.vcdn-plan-card li {
	position: relative;
	padding-left: 28px;
	color: var(--vcdn-muted);
	font-size: 14px;
	line-height: 1.6;
}

.vcdn-plan-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--vcdn-green);
	font-weight: 950;
}

.vcdn-plan-card .vcdn-btn {
	width: 100%;
	margin-top: auto;
}

.vcdn-slider-btn {
	position: absolute;
	top: 48%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	color: var(--vcdn-blue);
	font-size: 34px;
	font-weight: 800;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.18);
	cursor: pointer;
}

.vcdn-slider-btn--prev {
	left: -20px;
}

.vcdn-slider-btn--next {
	right: -20px;
}

.vcdn-price-note {
	margin: 12px 0 0;
	color: var(--vcdn-muted);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.vcdn-why-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.vcdn-why-card {
	padding: 26px;
	border-radius: 28px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vcdn-why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 64px rgba(37, 99, 235, 0.14);
}

.vcdn-why-card img {
	display: block;
	width: 56px;
	height: 56px;
	margin-bottom: 20px;
	object-fit: contain;
}

.vcdn-customers {
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.vcdn-logo-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.vcdn-logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 118px;
	padding: 26px;
	border-radius: 24px;
	filter: grayscale(0.15);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.vcdn-logo-card:hover {
	transform: translateY(-3px);
	filter: grayscale(0);
}

.vcdn-logo-card img {
	display: block;
	max-width: 170px;
	max-height: 68px;
	object-fit: contain;
}

.vcdn-faq {
	background: #ffffff;
}

.vcdn-faq__grid {
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
	align-items: start;
}

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

.vcdn-faq-list details {
	border-radius: 22px;
	overflow: hidden;
}

.vcdn-faq-list summary {
	position: relative;
	padding: 22px 58px 22px 24px;
	color: var(--vcdn-text);
	font-size: 16px;
	font-weight: 950;
	cursor: pointer;
	list-style: none;
}

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

.vcdn-faq-list summary::after {
	content: '+';
	position: absolute;
	right: 24px;
	top: 18px;
	color: var(--vcdn-blue);
	font-size: 26px;
	font-weight: 800;
}

.vcdn-faq-list details[open] summary::after {
	content: '–';
}

.vcdn-faq-list p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--vcdn-muted);
	font-size: 15px;
	line-height: 1.75;
}

.vcdn-cta {
	padding-top: 40px;
}

.vcdn-cta__box {
	position: relative;
	overflow: hidden;
	padding: 70px;
	border-radius: 38px;
	background:
		radial-gradient(circle at top right, rgba(6, 182, 212, 0.32), transparent 36%),
		linear-gradient(135deg, var(--vcdn-dark), #12367f 68%, var(--vcdn-blue));
	box-shadow: 0 28px 90px rgba(15, 23, 42, 0.22);
}

.vcdn-cta__box::after {
	content: '';
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 260px;
	height: 260px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
}

.vcdn-cta__box h2,
.vcdn-cta__box p {
	position: relative;
	z-index: 1;
	max-width: 820px;
	color: #ffffff;
}

.vcdn-cta__box p {
	color: rgba(255, 255, 255, 0.82);
}

.vcdn-cta__actions {
	position: relative;
	z-index: 1;
}

@media (max-width: 1180px) {
	.vcdn-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.vcdn-plan-track {
		grid-auto-columns: calc((100% - 24px) / 2);
	}
}

@media (max-width: 900px) {
	.vcdn-section {
		padding: 68px 0;
	}

	.vcdn-hero {
		padding: 104px 0 90px;
	}

	.vcdn-overview__grid,
	.vcdn-faq__grid {
		grid-template-columns: 1fr;
	}

	.vcdn-logo-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vcdn-slider-btn {
		display: none;
	}
}

@media (max-width: 640px) {
	.vcdn-section {
		padding: 56px 0;
	}

	.vcdn-hero {
		padding: 90px 0 78px;
		background-position: center;
	}

	.vcdn-hero h1 {
		font-size: 42px;
	}

	.vcdn-hero p {
		font-size: 16px;
	}

	.vcdn-hero__actions,
	.vcdn-cta__actions {
		flex-direction: column;
	}

	.vcdn-btn {
		width: 100%;
	}

	.vcdn-feature-grid,
	.vcdn-why-grid,
	.vcdn-logo-grid {
		grid-template-columns: 1fr;
	}

	.vcdn-plan-track {
		grid-auto-columns: 88%;
		gap: 16px;
	}

	.vcdn-plan-card {
		padding: 22px;
	}

	.vcdn-price {
		padding: 18px;
	}

	.vcdn-price strong {
		font-size: clamp(22px, 7vw, 30px);
	}

	.vcdn-cta__box {
		padding: 38px 24px;
		border-radius: 28px;
	}
}
