:root {
	--hosting-ink: #101114;
	--hosting-muted: #59616f;
	--hosting-paper: #f7f8fb;
	--hosting-surface: #ffffff;
	--hosting-line: #dce1ea;
	--hosting-blue: #0049ff;
	--hosting-blue-dark: #0032b3;
	--hosting-blue-soft: #eaf0ff;
	--hosting-blue-wash: #f2f5ff;
	--hosting-cyan: #2364ff;
	--hosting-coral: #0049ff;
	--hosting-dark: #0d1117;
	--hosting-dark-soft: #151b24;
}

body.page-template-page-hospedagem,
body.page-template-page-hospedagem-php {
	background: var(--hosting-paper);
}

.clica-hosting,
.clica-hosting * {
	box-sizing: border-box;
}

.clica-hosting {
	background: var(--hosting-paper);
	color: var(--hosting-ink);
	font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	min-height: 100vh;
	overflow-x: clip;
}

.hosting-progressbar {
	background: var(--hosting-blue);
	height: 3px;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: scaleX(var(--hosting-scroll-progress, 0));
	transform-origin: left center;
	width: 100%;
	z-index: 80;
}

.hosting-motion-ready .clica-hosting [data-animate] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 640ms ease, transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.hosting-motion-ready .clica-hosting [data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.clica-hosting a {
	color: inherit;
	text-decoration: none;
}

.clica-hosting [id] {
	scroll-margin-top: 110px;
}

.hosting-shell {
	margin: 0 auto;
	max-width: 1440px;
	width: 90%;
}

.hosting-nav {
	background: rgba(247, 248, 251, 0.96);
	border-bottom: 1px solid var(--hosting-line);
	position: sticky;
	top: 0;
	transition: background-color 180ms ease, box-shadow 180ms ease;
	z-index: 20;
}

.hosting-nav--scrolled {
	background: rgba(247, 248, 251, 0.98);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.hosting-nav__inner {
	align-items: center;
	display: flex;
	gap: 28px;
	justify-content: space-between;
	min-height: 76px;
}

.hosting-brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
}

.hosting-brand img {
	display: block;
	height: auto;
	max-height: none;
	max-width: 160px;
	object-fit: contain;
	width: auto;
}

.hosting-nav__links {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-left: auto;
}

.hosting-nav__links a {
	color: var(--hosting-muted);
	font-size: 14px;
	font-weight: 700;
}

.hosting-nav__links a:hover,
.hosting-nav__links a:focus-visible {
	color: var(--hosting-ink);
}

.hosting-nav__cta,
.hosting-button {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	line-height: 1.2;
	min-height: 44px;
	overflow: hidden;
	padding: 13px 18px;
	position: relative;
	text-align: center;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hosting-nav__cta::after,
.hosting-button--primary::after,
.hosting-button--dark::after {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
	content: "";
	height: 100%;
	left: -90%;
	position: absolute;
	top: 0;
	transform: skewX(-18deg);
	transition: left 520ms ease;
	width: 60%;
}

.hosting-nav__cta:hover::after,
.hosting-nav__cta:focus-visible::after,
.hosting-button--primary:hover::after,
.hosting-button--primary:focus-visible::after,
.hosting-button--dark:hover::after,
.hosting-button--dark:focus-visible::after {
	left: 130%;
}

.hosting-nav__cta,
.hosting-button--primary {
	background: var(--hosting-blue);
	color: #ffffff;
}

.hosting-nav__cta:visited,
.hosting-button--primary:visited {
	color: #ffffff;
}

.hosting-nav__cta:hover,
.hosting-button--primary:hover,
.hosting-nav__cta:focus-visible,
.hosting-button--primary:focus-visible {
	background: var(--hosting-blue-dark);
	color: #ffffff;
}

.clica-hosting .hosting-nav__cta,
.clica-hosting .hosting-nav__cta:visited,
.clica-hosting .hosting-nav__cta:hover,
.clica-hosting .hosting-nav__cta:focus-visible,
.clica-hosting .hosting-button.hosting-button--primary,
.clica-hosting .hosting-button.hosting-button--primary:visited,
.clica-hosting .hosting-button.hosting-button--primary:hover,
.clica-hosting .hosting-button.hosting-button--primary:focus-visible,
.clica-hosting .hosting-button.hosting-button--dark,
.clica-hosting .hosting-button.hosting-button--dark:visited,
.clica-hosting .hosting-button.hosting-button--dark:hover,
.clica-hosting .hosting-button.hosting-button--dark:focus-visible {
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.hosting-button--ghost {
	background: transparent;
	border: 1px solid var(--hosting-ink);
	color: var(--hosting-ink);
}

.hosting-button--ghost:hover,
.hosting-button--ghost:focus-visible {
	background: var(--hosting-ink);
	color: #ffffff;
}

.hosting-button--dark {
	background: var(--hosting-dark);
	color: #ffffff;
	width: 100%;
}

.hosting-button--dark:hover,
.hosting-button--dark:focus-visible {
	background: var(--hosting-blue-dark);
	color: #ffffff;
}

.hosting-button--light {
	background: #ffffff;
	color: var(--hosting-dark) !important;
	-webkit-text-fill-color: var(--hosting-dark);
}

.hosting-button--light:hover,
.hosting-button--light:focus-visible {
	background: var(--hosting-blue-soft);
	color: var(--hosting-dark) !important;
	-webkit-text-fill-color: var(--hosting-dark);
}

.clica-hosting .hosting-button.hosting-button--light,
.clica-hosting .hosting-button.hosting-button--light:visited,
.clica-hosting .hosting-button.hosting-button--light:hover,
.clica-hosting .hosting-button.hosting-button--light:focus-visible {
	color: var(--hosting-dark) !important;
	-webkit-text-fill-color: var(--hosting-dark);
}

.hosting-button:hover,
.hosting-button:focus-visible,
.hosting-nav__cta:hover,
.hosting-nav__cta:focus-visible {
	transform: translateY(-1px);
}

.hosting-hero {
	align-items: center;
	display: flex;
	min-height: 0;
	padding: 112px 0 88px;
}

.hosting-hero__grid {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

.hosting-hero__copy,
.hosting-console,
.feature-card,
.plan-card,
.support-block,
.process-list li {
	min-width: 0;
}

.hosting-eyebrow {
	align-items: center;
	background: var(--hosting-blue-soft);
	border: 1px solid rgba(0, 73, 255, 0.18);
	border-radius: 999px;
	color: #000000 !important;
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 14px;
	min-height: 30px;
	padding: 7px 12px;
	text-transform: uppercase;
	-webkit-text-fill-color: #000000;
}

.hosting-hero h1 {
	color: var(--hosting-ink);
	font-size: 64px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0 0 22px;
	max-width: 780px;
	overflow-wrap: break-word;
}

.hosting-lead {
	color: var(--hosting-ink);
	font-size: 22px;
	line-height: 1.45;
	margin: 0 0 18px;
	max-width: 700px;
}

.hosting-copy,
.hosting-section__copy p,
.hosting-section__heading p,
.support-block p,
.hosting-final p,
.hosting-note p {
	color: var(--hosting-muted);
	margin: 0;
}

.hosting-copy {
	color: var(--hosting-ink);
	font-size: 17px;
	max-width: 690px;
}

.hosting-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 32px 0 32px;
}

.hosting-proof {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
	max-width: 760px;
}

.hosting-proof div {
	border-top: 2px solid var(--hosting-ink);
	padding-top: 14px;
}

.hosting-proof strong,
.hosting-proof span {
	display: block;
}

.hosting-proof strong {
	font-size: 15px;
	line-height: 1.25;
}

.hosting-proof span {
	color: var(--hosting-muted);
	font-size: 13px;
	margin-top: 4px;
}

.hosting-console {
	animation: hostingFloat 6s ease-in-out infinite;
	background: #ffffff;
	border: 1px solid #dfe5ec;
	border-radius: 8px;
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1);
	color: var(--hosting-ink);
	padding: 24px;
	will-change: transform;
}

.hosting-console__header,
.hosting-console__footer {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.hosting-console__header {
	border-bottom: 1px solid #e5eaf1;
	margin-bottom: 20px;
	padding-bottom: 16px;
}

.hosting-console__header span,
.hosting-console__footer span,
.rack-row span {
	color: var(--hosting-muted);
	font-size: 13px;
	font-weight: 700;
}

.hosting-console__header strong {
	align-items: center;
	background: #edfdf3;
	border: 1px solid #bdecca;
	border-radius: 999px;
	color: var(--hosting-ink);
	display: inline-flex;
	font-size: 12px;
	gap: 7px;
	padding: 6px 11px;
}

.hosting-console__header strong::before {
	animation: hostingStatusPulse 1.9s ease-in-out infinite;
	background: #22c55e;
	border-radius: 999px;
	box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
	content: "";
	height: 8px;
	width: 8px;
}

@keyframes hostingFloat {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

@keyframes hostingStatusPulse {
	0%,
	100% {
		box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
	}

	50% {
		box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
	}
}

.hosting-console__rack {
	display: grid;
	gap: 10px;
}

.rack-row {
	align-items: center;
	background: #f7f9fc;
	border: 1px solid #e3e9f1;
	border-radius: 999px;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding: 15px;
	transition: background-color 180ms ease, border-color 180ms ease, transform 220ms ease;
}

.hosting-console:hover .rack-row {
	background: #ffffff;
	border-color: #cddcff;
	transform: translateX(4px);
}

.hosting-console:hover .rack-row:nth-child(2) {
	transition-delay: 40ms;
}

.hosting-console:hover .rack-row:nth-child(3) {
	transition-delay: 80ms;
}

.hosting-console:hover .rack-row:nth-child(4) {
	transition-delay: 120ms;
}

.rack-row strong {
	color: var(--hosting-ink);
	font-size: 15px;
	text-align: right;
	white-space: nowrap;
}

.hosting-console__footer {
	border-top: 1px solid #e5eaf1;
	gap: 12px;
	margin-top: 20px;
	padding-top: 18px;
}

.hosting-console__footer div {
	flex: 1;
}

.hosting-console__footer strong {
	color: var(--hosting-ink);
	display: block;
	font-size: 22px;
	line-height: 1.2;
	margin-top: 4px;
}

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

.hosting-section__grid {
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.hosting-section h2,
.hosting-final h2,
.hosting-note h2 {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
}

.hosting-section__copy {
	display: grid;
	gap: 18px;
}

.hosting-intro {
	background: #ffffff;
	border-bottom: 1px solid var(--hosting-line);
	border-top: 1px solid var(--hosting-line);
}

.hosting-intro .hosting-section__copy p {
	color: var(--hosting-ink);
}

.hosting-section__heading {
	margin-bottom: 34px;
	max-width: 760px;
}

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

.hosting-section__heading h2 {
	margin-bottom: 14px;
}

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

.feature-card {
	background: var(--hosting-surface);
	border: 1px solid var(--hosting-line);
	border-radius: 8px;
	min-height: 224px;
	padding: 24px;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.feature-card:hover {
	border-color: #bfd0ff;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	transform: translateY(-5px);
}

.feature-card__icon {
	align-items: center;
	background: var(--hosting-blue-soft);
	border: 1px solid rgba(0, 73, 255, 0.16);
	border-radius: 999px;
	color: var(--hosting-blue);
	display: inline-flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 36px;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
	width: 46px;
}

.feature-card__icon svg {
	display: block;
	fill: none;
	height: 23px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 23px;
}

.feature-card:hover .feature-card__icon {
	background: var(--hosting-blue);
	border-color: var(--hosting-blue);
	color: #ffffff;
	transform: translateY(-2px);
}

.feature-card h3,
.plan-card h3,
.support-block h2,
.process-list strong {
	letter-spacing: 0;
	margin: 0;
}

.feature-card h3 {
	font-size: 21px;
	line-height: 1.18;
	margin-bottom: 10px;
}

.feature-card p {
	color: var(--hosting-ink);
	margin: 0;
}

.hosting-plans {
	background: var(--hosting-blue-wash);
	border-bottom: 1px solid var(--hosting-line);
	border-top: 1px solid var(--hosting-line);
}

.plans-billing {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	display: flex;
	gap: 14px;
	justify-content: center;
	margin: -10px auto 22px;
	max-width: 520px;
	padding: 0;
}

.plans-billing > span {
	color: var(--hosting-muted);
	font-size: 13px;
	font-weight: 900;
	padding-left: 6px;
	text-transform: uppercase;
}

.plans-billing__toggle {
	background: #ffffff;
	border: 1px solid #d8e2ff;
	border-radius: 999px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 5px;
	position: relative;
}

.plans-billing__toggle button {
	background: transparent !important;
	background-image: none !important;
	border: 0;
	border-radius: 999px;
	color: var(--hosting-muted) !important;
	cursor: pointer;
	display: grid;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	gap: 2px;
	line-height: 1.1;
	min-height: 44px;
	min-width: 128px;
	padding: 8px 16px;
	position: relative;
	text-align: center;
	transition: background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
	-webkit-text-fill-color: var(--hosting-muted);
	z-index: 1;
}

.plans-billing__toggle button small {
	color: inherit;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	opacity: 1;
	-webkit-text-fill-color: currentColor;
}

.plans-billing__toggle button.is-active {
	background: var(--hosting-blue) !important;
	background-image: none !important;
	box-shadow: 0 8px 20px rgba(0, 73, 255, 0.18);
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.plans-billing__toggle button:focus,
.plans-billing__toggle button:focus-visible,
.plans-billing__toggle button:active {
	background: transparent !important;
	background-image: none !important;
	color: var(--hosting-muted) !important;
	outline: 2px solid rgba(0, 73, 255, 0.28);
	outline-offset: 2px;
	-webkit-text-fill-color: var(--hosting-muted);
}

.plans-billing__toggle button.is-active:focus,
.plans-billing__toggle button.is-active:focus-visible,
.plans-billing__toggle button.is-active:active {
	background: var(--hosting-blue) !important;
	background-image: none !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff;
}

.plans-grid {
	align-items: stretch;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-email-note {
	background: #ffffff;
	border: 1px solid #d9dee8;
	border-radius: 8px;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 18px;
	padding: 20px 24px;
}

.plan-email-note div {
	border-left: 3px solid var(--hosting-blue);
	padding-left: 14px;
}

.plan-email-note strong,
.plan-email-note span {
	display: block;
}

.plan-email-note strong {
	color: var(--hosting-ink);
	font-size: 15px;
	line-height: 1.25;
	margin-bottom: 4px;
}

.plan-email-note span {
	color: var(--hosting-ink);
	font-size: 14px;
	line-height: 1.45;
}

.plan-card {
	background: #ffffff;
	border: 1px solid #d9dee8;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 24px;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.plan-card:hover {
	border-color: #bfd0ff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
	transform: translateY(-6px);
}

.plan-card--featured {
	border-color: var(--hosting-blue);
	box-shadow: inset 0 4px 0 var(--hosting-blue);
}

.plan-card__top span {
	background: var(--hosting-blue-soft);
	border-radius: 8px;
	color: var(--hosting-ink);
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	margin-bottom: 18px;
	padding: 7px 10px;
}

.plan-card h3 {
	font-size: 25px;
	line-height: 1.1;
	margin-bottom: 10px;
}

.plan-card p,
.plan-card li {
	color: var(--hosting-ink);
}

.plan-card p {
	margin: 0;
}

.plan-card__price {
	align-items: baseline;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.plan-card__price strong {
	font-size: 46px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.plan-card__price span {
	color: var(--hosting-ink);
	font-weight: 800;
}

.plan-card__price small {
	background: var(--hosting-blue-wash);
	border: 1px solid #d8e2ff;
	border-radius: 999px;
	color: var(--hosting-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.1;
	margin-top: 4px;
	padding: 5px 8px;
}

.plan-card__differences {
	display: grid;
	gap: 0;
	border-block: 1px solid var(--hosting-line);
}

.plan-card__difference {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #edf1f7;
	display: grid;
	gap: 10px;
	grid-template-columns: 20px minmax(0, 1fr);
	padding: 11px 0;
}

.plan-card__difference:last-child {
	border-bottom: 0;
}

.plan-card__difference > span {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--hosting-blue);
	display: inline-flex;
	height: 20px;
	justify-content: center;
	opacity: 0.8;
	width: 20px;
}

.plan-card__difference svg {
	display: block;
	fill: none;
	height: 16px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 16px;
}

.plan-card__difference small,
.plan-card__difference strong {
	display: block;
}

.plan-card__difference small {
	color: var(--hosting-muted);
	font-size: 10px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.plan-card__difference strong {
	color: var(--hosting-ink);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.plan-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.plan-card__includes {
	display: grid;
	gap: 9px;
}

.plan-card__includes li {
	padding-left: 18px;
	position: relative;
}

.plan-card__includes li::before {
	background: var(--hosting-blue);
	border-radius: 8px;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 10px;
	width: 6px;
}

.plan-card__ideal {
	border-top: 1px solid var(--hosting-line);
	margin-top: auto;
	padding-top: 14px;
}

.plan-card__ideal strong {
	color: var(--hosting-muted);
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.plan-card__ideal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.plan-card__ideal li {
	background: var(--hosting-blue-wash);
	border: 1px solid #d8e2ff;
	border-radius: 999px;
	color: var(--hosting-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.15;
	padding: 5px 8px;
}

.hosting-comparison .hosting-button {
	display: flex;
	margin-left: auto;
	margin-top: 24px;
	width: fit-content;
}

.hosting-comparison .hosting-section__heading {
	max-width: 940px;
}

.hosting-comparison .hosting-section__heading p:not(.hosting-eyebrow) {
	color: var(--hosting-ink);
	font-size: 18px;
}

.comparison-story {
	display: grid;
	gap: 18px;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	margin-bottom: 22px;
}

.comparison-story__copy,
.comparison-infra-card,
.comparison-note {
	background: #ffffff;
	border: 1px solid var(--hosting-line);
	border-radius: 8px;
}

.comparison-story__copy {
	display: grid;
	gap: 16px;
	padding: 28px;
}

.comparison-story__copy p {
	color: var(--hosting-ink);
	margin: 0;
}

.comparison-story__copy strong {
	color: var(--hosting-blue);
}

.comparison-infra-card {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.comparison-infra-card > span {
	color: var(--hosting-ink);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.comparison-infra-card div {
	background: var(--hosting-blue-wash);
	border: 1px solid #d8e2ff;
	border-radius: 999px;
	padding: 13px 16px;
}

.comparison-infra-card strong,
.comparison-infra-card small {
	display: block;
}

.comparison-infra-card strong {
	color: var(--hosting-ink);
	font-size: 18px;
	line-height: 1.15;
}

.comparison-infra-card small {
	color: var(--hosting-muted);
	font-size: 12px;
	font-weight: 700;
	margin-top: 4px;
}

.comparison-table {
	background:
		linear-gradient(180deg, rgba(0, 73, 255, 0.07), rgba(255, 255, 255, 0) 128px),
		#ffffff;
	border: 1px solid #d9dee8;
	border-radius: 8px;
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
	max-width: 100%;
	overflow-x: auto;
	padding: 12px;
	scrollbar-color: #bfd0ff transparent;
}

.comparison-table table {
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

.comparison-table th,
.comparison-table td {
	padding: 18px;
	text-align: left;
	vertical-align: top;
}

.comparison-table thead th {
	background: linear-gradient(180deg, #ffffff, #f5f7ff);
	border-bottom: 1px solid #d9e2f3;
	border-top: 1px solid #eef2fb;
	color: var(--hosting-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.25;
	padding-bottom: 17px;
	padding-top: 17px;
	position: relative;
	text-transform: uppercase;
}

.comparison-table thead th:first-child {
	border-left: 1px solid #eef2fb;
	border-radius: 6px 0 0 6px;
	color: var(--hosting-ink);
}

.comparison-table thead th:last-child {
	background: linear-gradient(180deg, #2364ff, var(--hosting-blue));
	border-color: var(--hosting-blue);
	border-radius: 0 6px 6px 0;
	box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.22);
	color: #ffffff;
	padding-right: 46px;
}

.comparison-table thead th:last-child::after {
	align-items: center;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	color: #ffffff;
	content: "Clica";
	display: inline-flex;
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	padding: 5px 7px;
	position: absolute;
	right: 12px;
	text-transform: none;
	top: 50%;
	transform: translateY(-50%);
}

.comparison-table tbody th,
.comparison-table tbody td {
	background: #ffffff;
	border-bottom: 1px solid #e4e9f2;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.comparison-table tbody tr:first-child th,
.comparison-table tbody tr:first-child td {
	border-top: 10px solid transparent;
}

.comparison-table tbody th {
	background: #fbfcff;
	color: var(--hosting-ink);
	font-weight: 900;
	width: 24%;
}

.comparison-table tbody td {
	border-left: 1px solid #edf1f7;
	color: var(--hosting-muted);
}

.comparison-table tbody td:last-child {
	background: linear-gradient(180deg, var(--hosting-blue-wash), #ffffff);
	border-left-color: #c9d8ff;
	border-right: 1px solid #c9d8ff;
	box-shadow: inset 4px 0 0 var(--hosting-blue);
	color: var(--hosting-ink);
	font-weight: 900;
	padding-left: 36px;
	position: relative;
}

.comparison-table tbody td:last-child::after {
	background: var(--hosting-blue);
	border-radius: 999px;
	content: "";
	height: 7px;
	left: 18px;
	position: absolute;
	top: 27px;
	width: 7px;
}

.comparison-table tbody tr:hover th,
.comparison-table tbody tr:hover td {
	background: #f8faff;
	border-bottom-color: #c9d8ff;
}

.comparison-table tbody tr:hover td:last-child {
	background: var(--hosting-blue-wash);
}

.comparison-table:focus-visible {
	outline: 3px solid rgba(0, 73, 255, 0.24);
	outline-offset: 4px;
}

.comparison-note {
	margin-top: 22px;
	padding: 28px;
}

.comparison-note h3 {
	color: var(--hosting-ink);
	font-size: 28px;
	line-height: 1.15;
	margin: 0 0 14px;
}

.comparison-note p {
	color: var(--hosting-ink);
	margin: 0;
	max-width: 960px;
}

.comparison-note p + p {
	margin-top: 12px;
}

.comparison-note strong {
	color: var(--hosting-blue);
}

.hosting-support {
	background: #ffffff;
	border-bottom: 1px solid var(--hosting-line);
	border-top: 1px solid var(--hosting-line);
}

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

.support-block {
	background: #f7f8fb;
	border: 1px solid var(--hosting-line);
	border-radius: 8px;
	padding: 34px;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.support-block:hover {
	border-color: #bfd0ff;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	transform: translateY(-5px);
}

.support-block h2 {
	font-size: 34px;
	line-height: 1.12;
	margin-bottom: 16px;
}

.support-block p {
	margin-bottom: 26px;
}

.support-block--dark {
	background: var(--hosting-dark);
	border-color: var(--hosting-dark);
	color: #ffffff;
}

.support-block--dark p {
	color: #c9d1dc;
}

.process-list {
	counter-reset: process;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.process-list li {
	background: #ffffff;
	border: 1px solid var(--hosting-line);
	border-radius: 8px;
	min-height: 245px;
	padding: 24px;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.process-list li:hover {
	border-color: #bfd0ff;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	transform: translateY(-5px);
}

.process-list__icon {
	align-items: center;
	background: var(--hosting-blue-soft);
	border: 1px solid rgba(0, 73, 255, 0.16);
	border-radius: 999px;
	color: var(--hosting-cyan);
	display: inline-flex;
	height: 46px;
	justify-content: center;
	margin-bottom: 36px;
	transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
	width: 46px;
}

.process-list__icon svg {
	display: block;
	fill: none;
	height: 23px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 23px;
}

.process-list li:hover .process-list__icon {
	background: var(--hosting-blue);
	border-color: var(--hosting-blue);
	color: #ffffff;
	transform: translateY(-2px);
}

.process-list strong {
	display: block;
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 12px;
}

.process-list p {
	color: var(--hosting-muted);
	margin: 0;
}

.hosting-faq {
	background: #ffffff;
	border-top: 1px solid var(--hosting-line);
}

.faq-grid {
	display: grid;
	gap: 60px;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

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

.faq-list details {
	background: #f7f8fb;
	border: 1px solid var(--hosting-line);
	border-radius: 8px;
	padding: 0 20px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
	background: #ffffff;
	border-color: #bfd0ff;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
	transform: translateY(-2px);
}

.faq-list summary {
	cursor: pointer;
	font-size: 18px;
	font-weight: 900;
	list-style: none;
	padding: 20px 0;
}

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

.faq-list summary::after {
	color: var(--hosting-blue);
	content: "+";
	float: right;
	font-size: 24px;
	line-height: 1;
	margin-left: 18px;
}

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

.faq-list p {
	border-top: 1px solid var(--hosting-line);
	color: var(--hosting-muted);
	margin: 0;
	padding: 18px 0 22px;
}

.hosting-final {
	background: var(--hosting-dark);
	color: #ffffff;
	padding: 74px 0;
}

.hosting-final__inner {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.hosting-final h2 {
	color: #ffffff;
	max-width: 780px;
}

.hosting-final p {
	color: #c9d1dc;
	margin-top: 16px;
	max-width: 680px;
}

html.hosting-contact-open,
html.hosting-contact-open body {
	overflow: hidden;
}

.hosting-contact-modal {
	align-items: center;
	display: grid;
	inset: 0;
	opacity: 0;
	padding: 24px;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease, visibility 180ms ease;
	visibility: hidden;
	z-index: 100;
}

.hosting-contact-modal.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.hosting-contact-modal__backdrop {
	backdrop-filter: blur(8px);
	background: rgba(13, 17, 23, 0.58);
	inset: 0;
	position: absolute;
	-webkit-backdrop-filter: blur(8px);
}

.hosting-contact-modal__dialog {
	background: #fbfcff;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 14px;
	box-shadow: 0 30px 90px rgba(13, 17, 23, 0.32);
	margin: 0 auto;
	max-height: calc(100vh - 48px);
	max-width: 720px;
	overflow-y: auto;
	position: relative;
	transform: translateY(12px) scale(0.98);
	transition: transform 220ms ease;
	width: min(100%, 720px);
}

.hosting-contact-modal.is-open .hosting-contact-modal__dialog {
	transform: translateY(0) scale(1);
}

.hosting-contact-modal__close {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 10px;
	color: #7a8494;
	cursor: pointer;
	display: inline-flex;
	height: 36px;
	justify-content: center;
	padding: 0;
	position: absolute;
	right: 20px;
	top: 20px;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
	width: 36px;
	z-index: 2;
}

.hosting-contact-modal__close:hover {
	background: var(--hosting-blue-soft);
	color: var(--hosting-blue);
}

.hosting-contact-modal__close:focus,
.hosting-contact-modal__close:focus-visible {
	background: transparent;
	color: var(--hosting-blue);
	outline: 2px solid rgba(0, 73, 255, 0.28);
	outline-offset: 2px;
}

.hosting-contact-modal__close svg {
	fill: none;
	height: 18px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
	width: 18px;
}

.hosting-contact-modal__header {
	background:
		linear-gradient(180deg, rgba(0, 73, 255, 0.08), rgba(255, 255, 255, 0) 88%),
		#ffffff;
	border-bottom: 1px solid var(--hosting-line);
	padding: 36px 78px 26px 34px;
	position: relative;
}

.hosting-contact-modal__header::before {
	background: var(--hosting-blue);
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.hosting-contact-modal__header h2 {
	color: var(--hosting-ink);
	font-size: 36px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 12px;
}

.hosting-contact-modal__header p {
	color: var(--hosting-muted);
	margin: 0;
	max-width: 560px;
}

.hosting-contact-modal__source {
	background: var(--hosting-blue-wash);
	border: 1px solid #c9d8ff;
	border-radius: 999px;
	color: var(--hosting-ink) !important;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 14px !important;
	padding: 7px 10px;
	width: fit-content;
}

.hosting-contact-modal__source[hidden] {
	display: none;
}

.hosting-contact-modal__form {
	padding: 30px 34px 34px;
}

.hosting-contact-modal__form .wpcf7 {
	margin: 0;
}

.hosting-contact-modal__form form,
.hosting-contact-modal__form .wpcf7-form {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.hosting-contact-modal__form p {
	margin: 0;
}

.hosting-contact-modal__form .hidden-fields-container {
	display: none;
}

.hosting-contact-modal__form form > fieldset,
.hosting-contact-modal__form form > p:nth-of-type(3),
.hosting-contact-modal__form form > p:nth-of-type(4),
.hosting-contact-modal__form form > p:nth-of-type(5),
.hosting-contact-modal__form form > p:nth-of-type(6),
.hosting-contact-modal__form .wpcf7-response-output {
	grid-column: 1 / -1;
}

.hosting-contact-modal__form form > p:nth-of-type(6) {
	align-items: center;
	display: flex;
	justify-content: flex-end;
	padding-top: 4px;
}

.hosting-contact-modal__form label {
	color: var(--hosting-ink);
	display: grid;
	font-size: 14px;
	font-weight: 900;
	gap: 7px;
	line-height: 1.35;
}

.hosting-contact-modal__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.hosting-contact-modal__form select,
.hosting-contact-modal__form textarea {
	background: #ffffff;
	border: 1px solid var(--hosting-line);
	border-radius: 12px;
	color: var(--hosting-ink);
	font: inherit;
	min-height: 52px;
	outline: 0;
	padding: 14px 16px;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 100%;
}

.hosting-contact-modal__form textarea {
	min-height: 150px;
	resize: vertical;
}

.hosting-contact-modal__form input::placeholder,
.hosting-contact-modal__form textarea::placeholder {
	color: #7a8494;
	opacity: 1;
}

.hosting-contact-modal__form input:not([type="submit"]):focus,
.hosting-contact-modal__form select:focus,
.hosting-contact-modal__form textarea:focus {
	background: #ffffff;
	border-color: var(--hosting-blue);
	box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.12);
}

.hosting-contact-modal__form input[type="checkbox"],
.hosting-contact-modal__form input[type="radio"] {
	appearance: none;
	background: #ffffff;
	border: 1.5px solid #c9d2e2;
	border-radius: 7px;
	cursor: pointer;
	display: grid;
	flex: 0 0 auto;
	height: 22px;
	margin: 2px 0 0;
	min-height: 0;
	place-items: center;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	width: 22px;
	-webkit-appearance: none;
}

.hosting-contact-modal__form input[type="checkbox"]::after {
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	content: "";
	height: 10px;
	opacity: 0;
	transform: rotate(45deg) translate(-1px, -1px);
	width: 5px;
}

.hosting-contact-modal__form input[type="checkbox"]:checked,
.hosting-contact-modal__form input[type="radio"]:checked {
	background: var(--hosting-blue);
	border-color: var(--hosting-blue);
}

.hosting-contact-modal__form input[type="checkbox"]:checked::after {
	opacity: 1;
}

.hosting-contact-modal__form input[type="checkbox"]:focus-visible,
.hosting-contact-modal__form input[type="radio"]:focus-visible {
	box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.14);
}

.hosting-contact-modal__form input[type="submit"],
.hosting-contact-modal__form button[type="submit"] {
	align-items: center;
	background: var(--hosting-blue);
	border: 0;
	border-radius: 12px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	justify-content: center;
	line-height: 1.2;
	min-height: 50px;
	min-width: 168px;
	padding: 14px 22px;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
	width: fit-content;
}

.hosting-contact-modal__form input[type="submit"]:hover,
.hosting-contact-modal__form input[type="submit"]:focus-visible,
.hosting-contact-modal__form button[type="submit"]:hover,
.hosting-contact-modal__form button[type="submit"]:focus-visible {
	background: var(--hosting-blue-dark);
	box-shadow: 0 12px 26px rgba(0, 73, 255, 0.22);
	transform: translateY(-1px);
}

.hosting-contact-modal__form .wpcf7-spinner {
	margin: 0 0 0 12px;
}

.hosting-contact-modal__form .wpcf7-form-control-wrap {
	display: block;
}

.hosting-contact-modal__form .wpcf7-list-item {
	margin-left: 0;
}

.hosting-contact-modal__form .wpcf7-acceptance {
	background: linear-gradient(180deg, #ffffff, #f8faff);
	border: 1px solid #dbe3f1;
	border-radius: 12px;
	display: block;
	padding: 16px;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.hosting-contact-modal__form .wpcf7-acceptance:focus-within {
	border-color: #b8c9ff;
	box-shadow: 0 0 0 3px rgba(0, 73, 255, 0.1);
}

.hosting-contact-modal__form .wpcf7-acceptance label {
	align-items: flex-start;
	color: var(--hosting-muted);
	cursor: pointer;
	display: flex;
	font-size: 13px;
	font-weight: 700;
	gap: 12px;
	line-height: 1.45;
}

.hosting-contact-modal__form .wpcf7-list-item-label {
	display: block;
	padding-top: 1px;
}

.hosting-contact-modal__form .wpcf7-not-valid-tip {
	color: #b42318;
	font-size: 13px;
	font-weight: 500;
	margin-top: 5px;
}

.hosting-contact-modal__form .wpcf7-response-output {
	border-radius: 12px;
	font-weight: 800;
	margin: 4px 0 0 !important;
	padding: 12px 14px !important;
}

.hosting-contact-modal__fallback {
	background: var(--hosting-blue-wash);
	border: 1px solid #c9d8ff;
	border-radius: 8px;
	color: var(--hosting-ink);
	font-weight: 800;
	margin: 0;
	padding: 16px;
}

.hosting-note {
	background: #ffffff;
	border-bottom: 1px solid var(--hosting-line);
	padding: 42px 0;
}

.hosting-note h2 {
	font-size: 24px;
	margin-bottom: 14px;
}

.hosting-note p + p {
	margin-top: 10px;
}

.hosting-footer {
	background: var(--hosting-dark);
	color: #ffffff;
	padding: 48px 0 26px;
}

.hosting-footer__main {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr) minmax(280px, 0.72fr);
	padding-bottom: 34px;
}

.hosting-footer__brand {
	display: grid;
	gap: 18px;
	max-width: 520px;
}

.hosting-footer__logo {
	background: transparent;
	border-radius: 8px;
	display: inline-flex;
	padding: 0;
	width: fit-content;
}

.hosting-footer__logo img {
	display: block;
	height: auto;
	max-height: none;
	max-width: 200px;
	object-fit: contain;
	width: auto;
}

.hosting-footer p,
.hosting-footer__bottom span {
	color: #c9d1dc;
	margin: 0;
}

.hosting-footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hosting-footer__social a {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
	width: 42px;
}

.hosting-footer__social a:hover,
.hosting-footer__social a:focus-visible {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--hosting-blue);
	transform: translateY(-2px);
}

.hosting-footer__social svg {
	display: block;
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
	width: 21px;
}

.hosting-footer__links {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hosting-footer__links div {
	display: grid;
	gap: 10px;
}

.hosting-footer__links strong,
.hosting-footer__cta strong {
	color: #ffffff;
	display: block;
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.hosting-footer__links a,
.hosting-footer__bottom a {
	color: #c9d1dc;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	width: fit-content;
}

.hosting-footer__links a:hover,
.hosting-footer__links a:focus-visible,
.hosting-footer__bottom a:hover,
.hosting-footer__bottom a:focus-visible {
	color: #ffffff;
}

.hosting-footer__cta {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	padding: 22px;
}

.hosting-footer__cta p {
	font-size: 14px;
	line-height: 1.5;
	margin: 10px 0 18px;
}

.hosting-footer__cta .hosting-button {
	width: 100%;
}

.hosting-footer__bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	gap: 18px;
	justify-content: space-between;
	padding-top: 22px;
}

.hosting-footer__bottom span {
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 1100px) {
	.hosting-hero__grid,
	.hosting-section__grid,
	.comparison-story,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.hosting-console {
		max-width: 620px;
	}

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

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

	.hosting-footer__main {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.hosting-footer__cta {
		grid-column: 1 / -1;
	}
}

@media (max-width: 980px) {
	.comparison-table th,
	.comparison-table td {
		padding-left: 14px;
		padding-right: 14px;
	}

	.comparison-table thead th {
		font-size: 12px;
	}

	.comparison-table tbody td:last-child {
		padding-left: 30px;
	}

	.comparison-table tbody td:last-child::after {
		left: 14px;
	}
}

@media (max-width: 780px) {
	.hosting-shell {
		width: min(90%, calc(100% - 32px));
	}

	.clica-hosting [id] {
		scroll-margin-top: 210px;
	}

	.hosting-nav__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
		padding: 16px 0;
	}

	.hosting-nav__links {
		flex-wrap: wrap;
		gap: 16px;
		justify-content: flex-start;
		margin-left: 0;
	}

	.hosting-nav__cta {
		align-self: stretch;
		width: auto;
	}

	.hosting-hero {
		min-height: 0;
		padding: 36px 0 42px;
	}

	.hosting-hero h1 {
		font-size: 44px;
		max-width: 100%;
	}

	.hosting-hero h1 span {
		display: block;
	}

	.hosting-lead {
		font-size: 19px;
	}

	.hosting-proof,
	.feature-grid,
	.plans-grid,
	.plan-email-note,
	.support-grid,
	.process-list,
	.hosting-final__inner {
		grid-template-columns: 1fr;
	}

	.plans-billing {
		align-items: stretch;
		flex-direction: column;
		max-width: none;
	}

	.plans-billing > span {
		padding-left: 2px;
	}

	.plans-billing__toggle button {
		min-width: 0;
	}

	.hosting-proof {
		display: none;
	}

	.hosting-section {
		padding: 62px 0;
	}

	.hosting-section h2,
	.hosting-final h2 {
		font-size: 32px;
	}

	.hosting-console {
		display: none;
		padding: 18px;
		width: 100%;
	}

	.support-block {
		padding: 26px;
	}

	.hosting-contact-modal {
		align-items: end;
		padding: 12px;
	}

	.hosting-contact-modal__dialog {
		max-height: calc(100vh - 24px);
		width: 100%;
	}

	.hosting-contact-modal__header {
		padding: 26px 68px 20px 22px;
	}

	.hosting-contact-modal__header h2 {
		font-size: 28px;
	}

	.hosting-contact-modal__form {
		padding: 22px;
	}

	.hosting-contact-modal__form form,
	.hosting-contact-modal__form .wpcf7-form {
		grid-template-columns: 1fr;
	}

	.hosting-contact-modal__form form > p:nth-of-type(6) {
		justify-content: stretch;
	}

	.hosting-contact-modal__form input[type="submit"],
	.hosting-contact-modal__form button[type="submit"] {
		width: 100%;
	}

	.hosting-contact-modal__close {
		right: 14px;
		top: 14px;
	}

	.comparison-story__copy,
	.comparison-infra-card,
	.comparison-note {
		padding: 22px;
	}

	.comparison-table {
		background: transparent;
		border: 0;
		box-shadow: none;
		overflow: visible;
		padding: 0;
	}

	.comparison-table table {
		border-spacing: 0;
	}

	.comparison-table thead {
		display: none;
	}

	.comparison-table table,
	.comparison-table tbody,
	.comparison-table tbody tr,
	.comparison-table tbody th,
	.comparison-table tbody td {
		display: block;
		width: 100%;
	}

	.comparison-table tbody {
		display: grid;
		gap: 14px;
	}

	.comparison-table tbody tr {
		background: #ffffff;
		border: 1px solid var(--hosting-line);
		border-radius: 8px;
		box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
		overflow: hidden;
	}

	.comparison-table tbody th,
	.comparison-table tbody td {
		border: 0;
		border-bottom: 1px solid var(--hosting-line);
		border-radius: 0;
		padding: 15px 18px;
	}

	.comparison-table tbody th {
		background: var(--hosting-blue-wash);
		color: var(--hosting-ink);
	}

	.comparison-table tbody td {
		color: var(--hosting-ink);
		display: grid;
		gap: 4px;
	}

	.comparison-table tbody td::before {
		color: var(--hosting-muted);
		content: attr(data-label);
		font-size: 11px;
		font-weight: 900;
		text-transform: uppercase;
	}

	.comparison-table tbody td:last-child {
		background: linear-gradient(180deg, var(--hosting-blue-wash), #ffffff);
		border-bottom: 0;
		border-right: 0;
		box-shadow: inset 4px 0 0 var(--hosting-blue);
		padding-left: 18px;
	}

	.comparison-table tbody td:last-child::after {
		display: none;
	}

	.comparison-table tbody tr:hover th,
	.comparison-table tbody tr:hover td {
		box-shadow: none;
	}

	.comparison-table tbody tr:hover td:last-child {
		box-shadow: inset 4px 0 0 var(--hosting-blue);
	}

	.support-block h2 {
		font-size: 28px;
	}

	.hosting-final__inner {
		align-items: flex-start;
	}

	.hosting-footer {
		padding-top: 40px;
	}

	.hosting-footer__main,
	.hosting-footer__links {
		grid-template-columns: 1fr;
	}

	.hosting-footer__brand {
		max-width: none;
	}

	.hosting-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.hosting-brand img {
		max-width: 142px;
	}

	.hosting-actions .hosting-button {
		width: auto;
	}

	.hosting-proof {
		display: none;
	}

	.hosting-hero h1 {
		font-size: 38px;
	}

	.hosting-section h2,
	.hosting-final h2 {
		font-size: 29px;
	}

	.plan-card__price strong {
		font-size: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hosting-console,
	.hosting-console__header strong::before {
		animation: none;
	}

	.hosting-motion-ready .clica-hosting [data-animate] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hosting-nav__cta,
	.hosting-button,
	.rack-row,
	.feature-card,
	.feature-card__icon,
	.plan-card,
	.support-block,
	.process-list li,
	.process-list__icon,
	.faq-list details {
		transition: none;
	}

	.hosting-contact-modal,
	.hosting-contact-modal__dialog,
	.hosting-contact-modal__close,
	.hosting-contact-modal__form input,
	.hosting-contact-modal__form select,
	.hosting-contact-modal__form textarea {
		transition: none;
	}

	.hosting-button:hover,
	.hosting-button:focus-visible,
	.hosting-nav__cta:hover,
	.hosting-nav__cta:focus-visible,
	.hosting-console:hover .rack-row,
	.feature-card:hover,
	.plan-card:hover,
	.support-block:hover,
	.process-list li:hover,
	.faq-list details:hover,
	.faq-list details[open],
	.hosting-contact-modal__form input[type="submit"]:hover,
	.hosting-contact-modal__form input[type="submit"]:focus-visible,
	.hosting-contact-modal__form button[type="submit"]:hover,
	.hosting-contact-modal__form button[type="submit"]:focus-visible {
		transform: none;
	}
}
