:root {
	--dpc-blue: #2563eb;
	--dpc-cyan: #06b6d4;
	--dpc-teal: #14b8a6;
	--dpc-navy: #071832;
	--dpc-deep: #041020;
	--dpc-ink: #101828;
	--dpc-text: #344054;
	--dpc-muted: #667085;
	--dpc-border: #d8e7ff;
	--dpc-bg: #f3f8ff;
	--dpc-card: #ffffff;
}

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

.dpc-page * {
	box-sizing: border-box;
}

.dpc-hero {
	position: relative;
	padding: 118px 0 100px;
	background:
		linear-gradient(90deg, rgba(4, 16, 32, 0.96) 0%, rgba(7, 24, 50, 0.86) 44%, rgba(7, 24, 50, 0.26) 100%),
		url('../images/dedicated-private-cloud-banner.png') center right / cover no-repeat;
	color: #ffffff;
}

.dpc-hero::before,
.dpc-hero::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.dpc-hero::before {
	left: -190px;
	bottom: -240px;
	width: 540px;
	height: 540px;
	background: rgba(20, 184, 166, 0.13);
}

.dpc-hero::after {
	right: -150px;
	top: 36px;
	width: 430px;
	height: 430px;
	background: rgba(6, 182, 212, 0.14);
}

.dpc-hero__grid {
	position: relative;
	z-index: 1;
	display: block;
}

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

.dpc-hero .dpc-eyebrow,
.dpc-cta .dpc-eyebrow {
	color: #bff8ff;
}

.dpc-hero h1 {
	max-width: 980px;
	margin: 0 0 22px;
	color: #ffffff !important;
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 950;
	line-height: 1.04;
	letter-spacing: -0.052em;
}

.dpc-hero p {
	max-width: 860px;
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
	line-height: 1.75;
}

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

.dpc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 24px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 850;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.dpc-btn--primary {
	background: linear-gradient(135deg, #80f7ff, var(--dpc-teal));
	box-shadow: 0 16px 34px rgba(20, 184, 166, 0.3);
	color: var(--dpc-deep);
}

.dpc-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.36);
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.dpc-btn--light {
	background: #ffffff;
	color: var(--dpc-navy);
}

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

.dpc-trust-row span {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 800;
}

.dpc-section {
	padding: 90px 0;
}

.dpc-overview,
.dpc-usecases,
.dpc-faq,
.dpc-capabilities {
	background: #ffffff;
}

.dpc-features,
.dpc-pricing,
.dpc-why,
.dpc-advantages {
	background: var(--dpc-bg);
}

.dpc-overview__grid,
.dpc-faq__grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
	gap: 56px;
	align-items: start;
}

.dpc-section-heading h2 {
	margin: 0;
	color: var(--dpc-ink);
	font-size: clamp(30px, 3.7vw, 50px);
	font-weight: 950;
	line-height: 1.12;
	letter-spacing: -0.045em;
}

.dpc-section-heading p {
	max-width: 840px;
	margin: 18px auto 0;
	color: var(--dpc-muted);
	font-size: 17px;
	line-height: 1.72;
}

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

.dpc-rich-text p {
	margin: 0 0 18px;
	color: var(--dpc-text);
	font-size: 17px;
	line-height: 1.82;
}

.dpc-feature-grid,
.dpc-usecase-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.dpc-feature-card,
.dpc-usecase-card,
.dpc-plan-card,
.dpc-advantage-card,
.dpc-faq-list details {
	position: relative;
	height: 100%;
	border: 1px solid var(--dpc-border);
	border-radius: 28px;
	background: var(--dpc-card);
	box-shadow: 0 18px 44px rgba(16, 24, 40, 0.07);
}

.dpc-feature-card,
.dpc-usecase-card,
.dpc-advantage-card {
	padding: 28px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dpc-feature-card:hover,
.dpc-usecase-card:hover,
.dpc-advantage-card:hover,
.dpc-plan-card:hover {
	border-color: rgba(20, 184, 166, 0.5);
	box-shadow: 0 24px 56px rgba(16, 24, 40, 0.1);
	transform: translateY(-6px);
}

.dpc-feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	border-radius: 18px;
	background: rgba(20, 184, 166, 0.12);
	color: var(--dpc-teal);
	font-size: 15px;
	font-weight: 950;
}

.dpc-feature-card h3,
.dpc-usecase-card strong,
.dpc-advantage-card h3,
.dpc-check-list h3 {
	margin: 0 0 12px;
	color: var(--dpc-ink);
	font-size: 21px;
	font-weight: 950;
	line-height: 1.25;
}

.dpc-usecase-card strong {
	display: block;
}

.dpc-feature-card p,
.dpc-usecase-card p,
.dpc-advantage-card p,
.dpc-check-list p {
	margin: 0;
	color: var(--dpc-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.dpc-advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.dpc-advantage-card {
	overflow: hidden;
}

.dpc-advantage-card::before {
	content: "";
	position: absolute;
	right: -46px;
	top: -52px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.09));
}

.dpc-advantage-card span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	width: 56px;
	height: 56px;
	margin-bottom: 22px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--dpc-blue), var(--dpc-teal));
	box-shadow: 0 14px 30px rgba(20, 184, 166, 0.22);
}

.dpc-tabs-wrap {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
	gap: 26px;
	align-items: stretch;
	padding: 12px;
	border: 1px solid var(--dpc-border);
	border-radius: 34px;
	background: linear-gradient(135deg, #ffffff, #f7fbff);
	box-shadow: 0 24px 64px rgba(16, 24, 40, 0.08);
}

.dpc-tab-nav {
	display: grid;
	gap: 12px;
}

.dpc-tab-btn {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
	padding: 16px;
	border: 1px solid transparent;
	border-radius: 22px;
	background: transparent;
	color: var(--dpc-muted);
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	text-align: left;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.dpc-tab-btn span,
.dpc-tab-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 16px;
	background: rgba(20, 184, 166, 0.12);
	color: var(--dpc-teal);
	font-size: 13px;
	font-weight: 950;
}

.dpc-tab-btn:hover,
.dpc-tab-btn.is-active {
	border-color: rgba(20, 184, 166, 0.28);
	background: #ffffff;
	color: var(--dpc-teal);
	box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
	transform: translateY(-1px);
}

.dpc-tab-panels {
	position: relative;
	min-height: 300px;
	border-radius: 28px;
	background:
		radial-gradient(circle at right top, rgba(20, 184, 166, 0.2), transparent 34%),
		linear-gradient(135deg, #071832, #075985);
	overflow: hidden;
}

.dpc-tab-panel {
	display: none;
	grid-template-columns: 108px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	min-height: 300px;
	padding: 46px;
	color: #ffffff;
}

.dpc-tab-panel.is-active {
	display: grid;
}

.dpc-tab-number {
	width: 96px;
	height: 96px;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--dpc-blue);
	font-size: 28px;
}

.dpc-tab-panel h3 {
	margin: 0 0 14px;
	color: #ffffff;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 950;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.dpc-tab-panel p {
	max-width: 740px;
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-size: 17px;
	line-height: 1.78;
}

.dpc-pricing-shell {
	position: relative;
}

.dpc-slider-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--dpc-border);
	border-radius: 999px;
	background: #ffffff;
	box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
	color: var(--dpc-blue);
	cursor: pointer;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dpc-slider-btn:hover {
	background: var(--dpc-blue);
	color: #ffffff;
	transform: translateY(-50%) scale(1.05);
}

.dpc-slider-btn--prev {
	left: -24px;
}

.dpc-slider-btn--next {
	right: -24px;
}

.dpc-plan-slider {
	display: grid;
	grid-auto-columns: calc((100% - 72px) / 4);
	grid-auto-flow: column;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 12px 4px 30px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: var(--dpc-teal) #dff8ff;
}

.dpc-plan-slider::-webkit-scrollbar {
	height: 10px;
}

.dpc-plan-slider::-webkit-scrollbar-track {
	border-radius: 999px;
	background: #dff8ff;
}

.dpc-plan-slider::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: linear-gradient(135deg, var(--dpc-blue), var(--dpc-teal));
}

.dpc-plan-card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	scroll-snap-align: start;
	padding: 20px;
	border-radius: 30px;
	text-align: center;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.dpc-plan-card--featured {
	border-color: rgba(20, 184, 166, 0.78);
	box-shadow: 0 28px 70px rgba(37, 99, 235, 0.16);
}

.dpc-badge {
	position: absolute;
	right: 16px;
	top: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 7px 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--dpc-blue), var(--dpc-teal));
	color: #ffffff;
	font-size: 11px;
	font-weight: 900;
}

.dpc-plan-head span {
	display: none;
}

.dpc-plan-head h3 {
	margin: 0 0 6px;
	color: var(--dpc-ink);
	font-size: 25px;
	font-weight: 950;
	letter-spacing: -0.04em;
}

.dpc-price {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	margin: 18px 0 14px;
	padding: 14px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.1));
}

.dpc-price strong {
	display: block;
	color: var(--dpc-ink);
	font-size: clamp(23px, 2.1vw, 30px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 1;
}

.dpc-price span {
	display: block;
	margin-bottom: 2px;
	color: var(--dpc-muted);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.dpc-billing-select {
	margin: 0 0 14px;
}

.dpc-cycle-select {
	width: 100%;
	height: 42px;
	padding: 0 36px 0 12px;
	border: 1px solid var(--dpc-border);
	border-radius: 999px;
	background: #ffffff;
	color: var(--dpc-ink);
	cursor: pointer;
	font-size: 13px;
	font-weight: 850;
	outline: none;
	text-align: center;
}

.dpc-cycle-select:focus {
	border-color: var(--dpc-teal);
	box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.dpc-spec-list {
	display: grid;
	gap: 6px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.dpc-spec-list li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 12px;
	border: 1px solid #edf4ff;
	border-radius: 999px;
	background: #fbfdff;
}

.dpc-spec-list span {
	color: var(--dpc-muted);
	font-size: 12.5px;
	font-weight: 750;
}

.dpc-spec-list strong {
	max-width: 66%;
	color: var(--dpc-ink);
	font-size: 12.5px;
	font-weight: 900;
	line-height: 1.45;
	text-align: right;
}

.dpc-plan-action {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: auto;
	border-radius: 999px;
	background: var(--dpc-navy);
	color: #ffffff;
	font-size: 13.5px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.dpc-plan-action:hover {
	background: var(--dpc-teal);
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
}

.dpc-why__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
	gap: 58px;
	align-items: center;
}

.dpc-control-panel {
	display: grid;
	gap: 14px;
	width: min(100%, 360px);
	padding: 28px;
	border-radius: 30px;
	background: #ffffff;
	box-shadow: 0 28px 70px rgba(7, 24, 50, 0.14);
}

.dpc-control-panel strong,
.dpc-control-panel span {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-radius: 18px;
	font-size: 17px;
	font-weight: 950;
}

.dpc-control-panel strong {
	background: linear-gradient(135deg, #071832, #075985);
	color: #ffffff;
}

.dpc-control-panel span {
	background: #f2fbff;
	color: var(--dpc-teal);
}

.dpc-check-list {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.dpc-check-list > div {
	padding: 24px;
	border: 1px solid var(--dpc-border);
	border-radius: 24px;
	background: #ffffff;
}

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

.dpc-faq-list details {
	padding: 0;
	overflow: hidden;
}

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

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

.dpc-faq-list p {
	margin: 0;
	padding: 0 24px 24px;
	color: var(--dpc-muted);
	font-size: 15.5px;
	line-height: 1.72;
}

.dpc-cta {
	padding: 86px 0;
	background: linear-gradient(135deg, #041020, #075985);
	color: #ffffff;
}

.dpc-cta__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
}

.dpc-cta h2 {
	max-width: 860px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 950;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.dpc-cta p {
	max-width: 760px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.7;
}

@media (max-width: 1180px) {
	.dpc-plan-slider {
		grid-auto-columns: calc((100% - 48px) / 3);
	}

	.dpc-feature-grid,
	.dpc-usecase-grid,
	.dpc-advantage-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.dpc-overview__grid,
	.dpc-why__grid,
	.dpc-faq__grid,
	.dpc-cta__box,
	.dpc-tabs-wrap {
		grid-template-columns: 1fr;
	}

	.dpc-hero {
		padding: 90px 0 72px;
	}

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

	.dpc-cta__actions {
		margin-top: 0;
	}

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

@media (max-width: 640px) {
	.dpc-hero {
		padding: 72px 0 60px;
	}

	.dpc-hero h1 {
		font-size: 36px;
	}

	.dpc-plan-slider,
	.dpc-feature-grid,
	.dpc-usecase-grid,
	.dpc-advantage-grid {
		grid-template-columns: 1fr;
	}

	.dpc-tabs-wrap {
		padding: 8px;
		border-radius: 26px;
	}

	.dpc-tab-btn {
		padding: 12px;
		border-radius: 18px;
	}

	.dpc-tab-panel {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 30px 22px;
	}

	.dpc-plan-slider {
		grid-auto-columns: minmax(286px, 88vw);
	}

	.dpc-spec-list li {
		align-items: flex-start;
		flex-direction: column;
	}

	.dpc-spec-list strong {
		max-width: 100%;
		text-align: left;
	}

	.dpc-btn {
		width: 100%;
	}
}
