:root {
	--hc-dark: #061426;
	--hc-navy: #0b1f3a;
	--hc-blue: #0b74d1;
	--hc-blue-deep: #0759a6;
	--hc-cyan: #12c7f5;
	--hc-green: #2fd17c;
	--hc-text: #17243a;
	--hc-muted: #5f6f86;
	--hc-soft: #f4f8ff;
	--hc-soft-blue: #eaf5ff;
	--hc-border: rgba(14, 50, 93, 0.12);
	--hc-white: #ffffff;
	--hc-shadow: 0 24px 70px rgba(8, 32, 63, 0.14);
}

.hybrid-connect-page {
	background: var(--hc-white);
	color: var(--hc-text);
	font-family: inherit;
	overflow: hidden;
}

.hybrid-connect-page * {
	box-sizing: border-box;
}

.hc-section {
	padding: 92px 0;
	position: relative;
}

.hc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--hc-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.hc-eyebrow::before {
	content: '';
	display: inline-block;
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--hc-blue), var(--hc-cyan));
}

.hc-section-heading h2,
.hc-cta__box h2 {
	margin: 0;
	color: var(--hc-dark);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.hc-section-heading p {
	margin: 18px 0 0;
	color: var(--hc-muted);
	font-size: 1.06rem;
	line-height: 1.75;
}

.hc-center {
	max-width: 820px;
	margin: 0 auto 44px;
	text-align: center;
}

.hc-center .hc-eyebrow {
	justify-content: center;
}

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

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

.hc-btn--primary {
	background: linear-gradient(135deg, var(--hc-blue), var(--hc-cyan));
	box-shadow: 0 18px 42px rgba(18, 136, 220, 0.32);
	color: var(--hc-white);
}

.hc-btn--outline {
	border: 1px solid rgba(255, 255, 255, 0.38);
	background: rgba(255, 255, 255, 0.1);
	color: var(--hc-white);
	backdrop-filter: blur(10px);
}

.hc-btn--outline:hover {
	border-color: rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.18);
	color: var(--hc-white);
}

.hc-btn--light {
	background: var(--hc-white);
	box-shadow: 0 16px 38px rgba(2, 16, 36, 0.24);
	color: var(--hc-blue-deep);
}

.hc-hero {
	position: relative;
	min-height: 760px;
	padding: 128px 0 96px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(115deg, rgba(4, 16, 36, 0.96) 0%, rgba(6, 30, 60, 0.88) 47%, rgba(7, 76, 133, 0.78) 100%),
		url('../images/hybrid-connect/banner.jpg') center / cover no-repeat;
	color: var(--hc-white);
}

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

.hc-hero::before {
	inset: auto -140px -180px auto;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(18, 199, 245, 0.34), rgba(18, 199, 245, 0));
}

.hc-hero::after {
	top: 90px;
	left: -120px;
	width: 320px;
	height: 320px;
	background: radial-gradient(circle, rgba(47, 209, 124, 0.22), rgba(47, 209, 124, 0));
}

.hc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
	gap: 56px;
	align-items: center;
}

.hc-hero .hc-eyebrow {
	color: #8fe9ff;
}

.hc-hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--hc-white) !important;
	font-size: clamp(2.75rem, 6vw, 5.65rem);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.06em;
	text-wrap: balance;
}

.hc-hero__content > p {
	max-width: 760px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.83);
	font-size: clamp(1.05rem, 1.4vw, 1.24rem);
	line-height: 1.75;
}

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

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

.hc-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.9rem;
	font-weight: 700;
	backdrop-filter: blur(12px);
}

.hc-trust-row span::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--hc-green);
	box-shadow: 0 0 0 5px rgba(47, 209, 124, 0.16);
}

.hc-hero__visual {
	min-width: 0;
}

.hc-network-card {
	position: relative;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 30px;
	background: rgba(4, 18, 42, 0.72);
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(20px);
}

.hc-network-card::before {
	content: '';
	position: absolute;
	inset: 16px;
	border-radius: 24px;
	border: 1px solid rgba(18, 199, 245, 0.18);
	pointer-events: none;
}

.hc-network-card__status {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(47, 209, 124, 0.15);
	color: #aaf8c9;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hc-network-card__status::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--hc-green);
}

.hc-network-card__map {
	position: relative;
	z-index: 1;
	min-height: 330px;
	margin: 28px 0;
	border-radius: 24px;
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 38px 38px;
	overflow: hidden;
}

.hc-node {
	position: absolute;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 118px;
	min-height: 58px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 14px 40px rgba(0, 0, 0, 0.2);
	color: var(--hc-white);
	font-size: 0.92rem;
	font-weight: 800;
}

.hc-node--office {
	top: 38px;
	left: 0;
}

.hc-node--hub {
	top: 136px;
	left: 50%;
	transform: translateX(-50%);
	border-color: rgba(18, 199, 245, 0.55);
	background: linear-gradient(135deg, rgba(11, 116, 209, 0.86), rgba(18, 199, 245, 0.7));
}

.hc-node--cloud {
	right: 0;
	bottom: 42px;
	background: rgba(47, 209, 124, 0.18);
}

.hc-link {
	position: absolute;
	z-index: 1;
	height: 4px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--hc-cyan), var(--hc-green));
	box-shadow: 0 0 20px rgba(18, 199, 245, 0.48);
	transform-origin: left center;
}

.hc-link--one {
	top: 104px;
	left: 102px;
	width: 190px;
	transform: rotate(24deg);
}

.hc-link--two {
	top: 206px;
	left: 220px;
	width: 190px;
	transform: rotate(24deg);
}

.hc-network-card__metrics {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.hc-network-card__metrics div {
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
}

.hc-network-card__metrics strong,
.hc-network-card__metrics span {
	display: block;
}

.hc-network-card__metrics strong {
	color: var(--hc-white);
	font-size: 0.8rem;
}

.hc-network-card__metrics span {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.76rem;
	line-height: 1.4;
}

.hc-overview {
	background:
		radial-gradient(circle at 8% 20%, rgba(18, 199, 245, 0.12), transparent 28%),
		linear-gradient(180deg, #f8fbff 0%, var(--hc-white) 100%);
}

.hc-overview__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
	gap: 54px;
	align-items: center;
}

.hc-rich-text {
	margin-top: 24px;
}

.hc-rich-text p {
	margin: 0 0 18px;
	color: var(--hc-muted);
	font-size: 1.04rem;
	line-height: 1.82;
}

.hc-overview__panel {
	padding: 34px;
	border: 1px solid var(--hc-border);
	border-radius: 30px;
	background: var(--hc-white);
	box-shadow: var(--hc-shadow);
}

.hc-overview__panel img {
	display: block;
	width: min(100%, 350px);
	margin: 0 auto 24px;
	height: auto;
}

.hc-overview__panel h3 {
	margin: 0;
	color: var(--hc-dark);
	font-size: 1.45rem;
	font-weight: 800;
	line-height: 1.28;
}

.hc-overview__panel p {
	margin: 14px 0 0;
	color: var(--hc-muted);
	line-height: 1.7;
}

.hc-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 54px;
}

.hc-stat-grid article {
	padding: 28px 22px;
	border: 1px solid var(--hc-border);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 16px 44px rgba(8, 32, 63, 0.08);
}

.hc-stat-grid strong,
.hc-stat-grid span {
	display: block;
}

.hc-stat-grid strong {
	color: var(--hc-blue);
	font-size: clamp(1.85rem, 3vw, 2.75rem);
	font-weight: 900;
	letter-spacing: -0.05em;
}

.hc-stat-grid span {
	margin-top: 8px;
	color: var(--hc-muted);
	font-size: 0.94rem;
	line-height: 1.5;
}

.hc-features {
	background: var(--hc-white);
}

.hc-feature-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.hc-feature-card {
	position: relative;
	min-height: 300px;
	padding: 28px;
	border: 1px solid var(--hc-border);
	border-radius: 28px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: 0 18px 50px rgba(9, 34, 69, 0.08);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hc-feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(18, 199, 245, 0.38);
	box-shadow: 0 26px 70px rgba(9, 34, 69, 0.14);
}

.hc-feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 20px;
	background: var(--hc-soft-blue);
}

.hc-feature-card__icon img {
	width: 38px;
	height: 38px;
	object-fit: contain;
}

.hc-feature-card > span {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--hc-blue);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.hc-feature-card h3 {
	margin: 0;
	color: var(--hc-dark);
	font-size: 1.2rem;
	font-weight: 800;
	line-height: 1.28;
}

.hc-feature-card p {
	margin: 12px 0 0;
	color: var(--hc-muted);
	font-size: 0.96rem;
	line-height: 1.66;
}

.hc-benefits {
	background:
		linear-gradient(135deg, rgba(5, 20, 42, 0.96), rgba(8, 45, 84, 0.96)),
		radial-gradient(circle at 80% 20%, rgba(18, 199, 245, 0.3), transparent 30%);
	color: var(--hc-white);
}

.hc-benefits .hc-section-heading h2,
.hc-benefits .hc-section-heading p {
	color: var(--hc-white);
}

.hc-benefits .hc-section-heading p {
	opacity: 0.78;
}

.hc-benefits .hc-eyebrow {
	color: #9eeeff;
}

.hc-benefits__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
	gap: 52px;
	align-items: start;
}

.hc-benefit-list {
	display: grid;
	gap: 16px;
}

.hc-benefit-card {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 18px;
	align-items: start;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
}

.hc-benefit-card img {
	width: 54px;
	height: 54px;
	padding: 10px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.12);
	object-fit: contain;
}

.hc-benefit-card h3 {
	margin: 0;
	color: var(--hc-white);
	font-size: 1.15rem;
	font-weight: 800;
}

.hc-benefit-card p {
	margin: 9px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.96rem;
	line-height: 1.66;
}

.hc-topology {
	background:
		radial-gradient(circle at 90% 10%, rgba(18, 199, 245, 0.12), transparent 26%),
		var(--hc-soft);
}

.hc-topology-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.hc-topology-grid article {
	position: relative;
	padding: 28px;
	border: 1px solid var(--hc-border);
	border-radius: 26px;
	background: var(--hc-white);
	box-shadow: 0 18px 50px rgba(9, 34, 69, 0.08);
	overflow: hidden;
}

.hc-topology-grid article::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--hc-blue), var(--hc-cyan), var(--hc-green));
}

.hc-topology-grid h3 {
	margin: 0;
	color: var(--hc-dark);
	font-size: 1.22rem;
	font-weight: 850;
}

.hc-topology-grid p {
	margin: 13px 0 0;
	color: var(--hc-muted);
	line-height: 1.68;
}

.hc-models {
	background: var(--hc-white);
}

.hc-models__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 0.42fr);
	gap: 44px;
	align-items: start;
}

.hc-model-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 36px;
}

.hc-model-list article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--hc-border);
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hc-model-list strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--hc-blue), var(--hc-cyan));
	color: var(--hc-white);
	font-size: 1.02rem;
	font-weight: 900;
}

.hc-model-list h3 {
	margin: 0;
	color: var(--hc-dark);
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.3;
}

.hc-model-list p {
	margin: 10px 0 0;
	color: var(--hc-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.hc-usecase-card {
	position: sticky;
	top: 98px;
	padding: 30px;
	border: 1px solid var(--hc-border);
	border-radius: 30px;
	background: linear-gradient(145deg, var(--hc-dark), var(--hc-navy));
	box-shadow: var(--hc-shadow);
	color: var(--hc-white);
}

.hc-usecase-card h3 {
	margin: 0 0 22px;
	color: var(--hc-white);
	font-size: 1.45rem;
	font-weight: 850;
}

.hc-usecase-card div {
	padding: 18px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hc-usecase-card h4 {
	margin: 0;
	color: #a9ecff;
	font-size: 1rem;
	font-weight: 800;
}

.hc-usecase-card p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.94rem;
	line-height: 1.62;
}

.hc-services {
	background:
		radial-gradient(circle at 12% 20%, rgba(47, 209, 124, 0.12), transparent 28%),
		linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.hc-services__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
	gap: 46px;
	align-items: center;
}

.hc-service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hc-service-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 12px 18px;
	border: 1px solid rgba(11, 116, 209, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 12px 30px rgba(8, 32, 63, 0.06);
	color: var(--hc-text);
	font-weight: 780;
}

.hc-why {
	background: var(--hc-white);
}

.hc-why__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.hc-why-list {
	display: grid;
	gap: 14px;
}

.hc-why-list div {
	position: relative;
	padding: 20px 22px 20px 58px;
	border: 1px solid var(--hc-border);
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 16px 42px rgba(8, 32, 63, 0.07);
	color: var(--hc-muted);
	font-size: 1rem;
	line-height: 1.68;
}

.hc-why-list div::before {
	content: '✓';
	position: absolute;
	top: 20px;
	left: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: rgba(47, 209, 124, 0.15);
	color: #0f9b55;
	font-weight: 900;
}

.hc-faq {
	background: var(--hc-soft);
}

.hc-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.hc-faq__list {
	display: grid;
	gap: 14px;
}

.hc-faq details {
	border: 1px solid var(--hc-border);
	border-radius: 20px;
	background: var(--hc-white);
	box-shadow: 0 14px 36px rgba(8, 32, 63, 0.06);
	overflow: hidden;
}

.hc-faq summary {
	position: relative;
	padding: 20px 58px 20px 22px;
	cursor: pointer;
	color: var(--hc-dark);
	font-weight: 850;
	line-height: 1.45;
	list-style: none;
}

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

.hc-faq summary::after {
	content: '+';
	position: absolute;
	top: 50%;
	right: 22px;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--hc-soft-blue);
	color: var(--hc-blue);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 28px;
	text-align: center;
	transform: translateY(-50%);
}

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

.hc-faq details p {
	margin: 0;
	padding: 0 22px 22px;
	color: var(--hc-muted);
	line-height: 1.7;
}

.hc-cta {
	padding: 96px 0;
	background: var(--hc-white);
}

.hc-cta__box {
	position: relative;
	padding: clamp(34px, 6vw, 72px);
	border-radius: 34px;
	background:
		linear-gradient(135deg, rgba(6, 20, 38, 0.92), rgba(8, 82, 144, 0.9)),
		url('../images/hybrid-connect/banner.jpg') center / cover no-repeat;
	box-shadow: 0 28px 90px rgba(8, 32, 63, 0.24);
	color: var(--hc-white);
	overflow: hidden;
}

.hc-cta__box::after {
	content: '';
	position: absolute;
	right: -130px;
	bottom: -160px;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(18, 199, 245, 0.36), transparent 68%);
}

.hc-cta__box > * {
	position: relative;
	z-index: 1;
}

.hc-cta__box .hc-eyebrow {
	color: #a9ecff;
}

.hc-cta__box h2 {
	max-width: 900px;
	color: var(--hc-white) !important;
}

.hc-cta__box p {
	max-width: 760px;
	margin: 18px 0 30px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.06rem;
	line-height: 1.72;
}

@media (max-width: 1200px) {
	.hc-feature-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.hc-topology-grid,
	.hc-stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.hc-section {
		padding: 74px 0;
	}

	.hc-hero {
		min-height: auto;
		padding: 110px 0 76px;
	}

	.hc-hero__grid,
	.hc-overview__grid,
	.hc-benefits__grid,
	.hc-models__grid,
	.hc-services__grid,
	.hc-why__grid,
	.hc-faq__grid {
		grid-template-columns: 1fr;
	}

	.hc-hero__visual {
		max-width: 580px;
	}

	.hc-usecase-card {
		position: static;
	}
}

@media (max-width: 768px) {
	.hc-section-heading h2,
	.hc-cta__box h2 {
		font-size: clamp(1.8rem, 8vw, 2.45rem);
	}

	.hc-hero h1 {
		font-size: clamp(2.4rem, 13vw, 3.9rem);
	}

	.hc-feature-grid,
	.hc-model-list,
	.hc-topology-grid,
	.hc-stat-grid {
		grid-template-columns: 1fr;
	}

	.hc-benefit-card,
	.hc-model-list article {
		grid-template-columns: 1fr;
	}

	.hc-network-card {
		padding: 20px;
		border-radius: 24px;
	}

	.hc-network-card__map {
		min-height: 300px;
	}

	.hc-node {
		min-width: 104px;
		font-size: 0.82rem;
	}

	.hc-link--one {
		left: 74px;
		width: 145px;
	}

	.hc-link--two {
		left: 150px;
		width: 145px;
	}

	.hc-network-card__metrics {
		grid-template-columns: 1fr;
	}

	.hc-cta {
		padding: 74px 0;
	}
}

@media (max-width: 520px) {
	.hc-hero {
		padding: 96px 0 66px;
	}

	.hc-hero__actions,
	.hc-btn {
		width: 100%;
	}

	.hc-overview__panel,
	.hc-feature-card,
	.hc-usecase-card,
	.hc-cta__box {
		border-radius: 22px;
	}

	.hc-node--office {
		left: 50%;
		transform: translateX(-50%);
	}

	.hc-node--hub {
		top: 126px;
	}

	.hc-node--cloud {
		right: 50%;
		bottom: 30px;
		transform: translateX(50%);
	}

	.hc-link--one,
	.hc-link--two {
		left: 50%;
		width: 4px;
		height: 70px;
		transform: translateX(-50%);
	}

	.hc-link--one {
		top: 86px;
	}

	.hc-link--two {
		top: 182px;
	}
}