:root {
	--ink: #0b1220;
	--navy: #101a2e;
	--panel: #172238;
	--line: #d8e1ec;
	--muted: #5d6b7d;
	--text: #172033;
	--white: #ffffff;
	--blue: #1565d8;
	--cyan: #19c4e8;
	--green: #22c55e;
	--soft: #f5f8fb;
	--radius: 8px;
	--shadow: 0 18px 48px rgba(10, 18, 32, .14);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--text);
	background: var(--white);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.65;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--blue);
	text-decoration: none;
}

a:hover,
a:focus {
	color: #0d47a1;
	text-decoration: underline;
}

.shell {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.site-header .shell {
	width: min(1260px, calc(100% - 48px));
}

.jmodedit,
.btn.jmodedit,
.module-edit,
a[href*="option=com_config"],
a[href*="option=com_modules"][href*="task=module.edit"],
a[href*="task=article.edit"],
.icons,
.com-content-article__edit {
	display: none !important;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, .94);
	border-bottom: 1px solid rgba(216, 225, 236, .8);
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
	box-shadow: 0 12px 32px rgba(10, 18, 32, .08);
}

body.has-animations .site-header {
	animation: headerDrop .58s ease both;
}

.header-shell {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}

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

.brand img {
	width: 158px;
	max-height: 58px;
}

.brand img,
.footer-logo {
	object-fit: contain;
}

.site-nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 9px 13px;
	border-radius: var(--radius);
	color: var(--ink);
	font-weight: 650;
	font-size: .9rem;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav .current > a,
.site-nav .active > a {
	background: #eaf3ff;
	color: #0f4bb5;
	text-decoration: none;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.nav-toggle span:not(.visually-hidden) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
}

.hero {
	position: relative;
	min-height: min(680px, calc(100vh - 82px));
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 90px;
	background: var(--white);
	clip-path: polygon(0 72%, 100% 38%, 100% 100%, 0 100%);
}

.hero-media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(8, 15, 28, .92), rgba(8, 15, 28, .76) 42%, rgba(8, 15, 28, .36)),
		url("../images/hero-rafagatelecom.png") center / cover no-repeat;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, transparent 0%, rgba(25, 196, 232, .12) 42%, transparent 72%),
		radial-gradient(circle at 22% 70%, rgba(21, 101, 216, .22), transparent 30%);
	mix-blend-mode: screen;
	opacity: .68;
}

body.has-animations .hero-media {
	animation: heroDrift 18s ease-in-out infinite alternate;
	transform-origin: center;
}

body.has-animations .hero-media::after {
	animation: signalSweep 6s ease-in-out infinite alternate;
}

.hero-content {
	position: relative;
	z-index: 1;
	padding: 104px 0 114px;
}

body.has-animations .hero-content .eyebrow,
body.has-animations .hero-content h1,
body.has-animations .hero-content .lead,
body.has-animations .hero-tags,
body.has-animations .hero-content .action-row {
	animation: riseFade .72s ease both;
}

body.has-animations .hero-content .eyebrow {
	animation-delay: .1s;
}

body.has-animations .hero-content h1 {
	animation-delay: .22s;
}

body.has-animations .hero-content .lead,
body.has-animations .hero-tags {
	animation-delay: .38s;
}

body.has-animations .hero-content .action-row {
	animation-delay: .56s;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--cyan);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0 0 18px;
	color: inherit;
	line-height: 1.12;
}

h1 {
	max-width: 720px;
	font-size: clamp(1.95rem, 4.1vw, 3.25rem);
}

.article-content h1 {
	max-width: 900px;
	font-size: clamp(2rem, 4vw, 3.25rem);
}

h2 {
	font-size: clamp(1.7rem, 4vw, 2.65rem);
}

h3 {
	font-size: 1.18rem;
}

.lead {
	max-width: 760px;
	margin: 0 0 24px;
	color: rgba(255, 255, 255, .86);
	font-size: 1.02rem;
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 780px;
	margin: 0 0 26px;
}

.hero-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 5px 10px;
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	background: rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .9);
	font-size: .82rem;
	font-weight: 750;
}

body.has-animations .hero-tags span {
	animation: chipIn .46s ease both;
}

body.has-animations .hero-tags span:nth-child(1) {
	animation-delay: .48s;
}

body.has-animations .hero-tags span:nth-child(2) {
	animation-delay: .54s;
}

body.has-animations .hero-tags span:nth-child(3) {
	animation-delay: .6s;
}

body.has-animations .hero-tags span:nth-child(4) {
	animation-delay: .66s;
}

body.has-animations .hero-tags span:nth-child(5) {
	animation-delay: .72s;
}

body.has-animations .hero-tags span:nth-child(6) {
	animation-delay: .78s;
}

.action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.button,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font-weight: 800;
	text-decoration: none;
}

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

.button-primary,
.btn-primary {
	background: var(--blue);
	color: var(--white);
	box-shadow: 0 14px 34px rgba(21, 101, 216, .28);
}

.button-primary:hover,
.button-primary:focus,
.btn-primary:hover,
.btn-primary:focus {
	background: #0d4fb3;
	color: var(--white);
}

.button-secondary {
	border-color: rgba(255, 255, 255, .38);
	color: var(--white);
	background: rgba(255, 255, 255, .08);
}

.button-secondary:hover,
.button-secondary:focus {
	background: rgba(255, 255, 255, .15);
	color: var(--white);
}

.section,
.main-area {
	padding: 72px 0;
}

.section-compact {
	position: relative;
	z-index: 3;
	margin-top: -46px;
	padding: 0 0 58px;
}

.section-accent {
	background: var(--navy);
	color: var(--white);
}

.content-layout {
	display: grid;
	gap: 34px;
}

.content-layout.has-sidebar {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.content-main > :first-child,
.article-content > :first-child {
	margin-top: 0;
}

.intro-grid,
.service-grid,
.trust-grid,
.case-grid,
.sector-grid,
.benefit-grid,
.blog-grid,
.contact-grid {
	display: grid;
	gap: 18px;
}

.intro-grid {
	grid-template-columns: 1.35fr .85fr;
	align-items: start;
	gap: 30px;
}

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

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

.sector-grid,
.case-grid,
.blog-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
	grid-template-columns: 1fr 1fr;
}

.visual-showcase {
	display: grid;
	gap: 22px;
	margin-bottom: 48px;
}

.visual-banner {
	position: relative;
	min-height: 360px;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--ink);
	box-shadow: var(--shadow);
}

.visual-banner img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visual-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 14, 26, .9), rgba(7, 14, 26, .62) 42%, rgba(7, 14, 26, .12));
}

.visual-banner__copy {
	position: relative;
	z-index: 1;
	max-width: 620px;
	padding: 42px;
	color: var(--white);
}

.visual-banner__copy h2 {
	font-size: clamp(1.65rem, 3.2vw, 2.75rem);
}

.visual-banner__copy p:not(.eyebrow) {
	color: rgba(255, 255, 255, .82);
	font-size: 1.04rem;
}

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

.visual-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 12px 34px rgba(10, 18, 32, .08);
}

.visual-card img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.visual-card div {
	padding: 20px;
}

.visual-card h3 {
	margin-bottom: 10px;
	color: var(--ink);
}

.visual-card p {
	margin: 0;
	color: var(--muted);
}

.explainer-showcase {
	display: grid;
	gap: 24px;
	margin-bottom: 52px;
}

.solution-map {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	padding: 28px;
	overflow: hidden;
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(8, 17, 31, .94), rgba(16, 32, 56, .92)),
		url("../images/banner-operacion-tecnologica.png") center / cover no-repeat;
	box-shadow: var(--shadow);
}

.solution-map::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 45%, rgba(25, 196, 232, .24), transparent 30%),
		linear-gradient(90deg, rgba(8, 17, 31, .55), rgba(8, 17, 31, .2));
	pointer-events: none;
}

.map-core,
.solution-node {
	position: relative;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
}

.map-core {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px;
	color: var(--white);
}

.map-core strong {
	display: block;
	font-size: clamp(1.45rem, 3vw, 2.4rem);
	line-height: 1.1;
}

.map-core span {
	color: var(--cyan);
	font-weight: 900;
}

.map-core p {
	max-width: 520px;
	margin: 0;
	color: rgba(255, 255, 255, .78);
}

.solution-node {
	padding: 18px;
	color: var(--white);
}

.solution-node b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: var(--cyan);
	color: #062132;
	font-weight: 950;
}

.solution-node h3 {
	margin-bottom: 8px;
	font-size: 1.02rem;
}

.solution-node p {
	margin: 0;
	color: rgba(255, 255, 255, .76);
	font-size: .94rem;
	line-height: 1.45;
}

.process-flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.process-step {
	position: relative;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 10px 28px rgba(10, 18, 32, .07);
}

.process-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 42px;
	right: -10px;
	width: 20px;
	height: 2px;
	background: var(--cyan);
}

.process-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-bottom: 12px;
	border-radius: var(--radius);
	background: #eaf3ff;
	color: #0f4bb5;
	font-weight: 950;
}

.process-step strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ink);
}

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

.visual-grid-readable .visual-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--muted);
}

.visual-grid-readable .visual-card li {
	position: relative;
	margin-top: 8px;
	padding-left: 18px;
}

.visual-grid-readable .visual-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .64em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--green);
}

.certifications-section {
	margin: 58px 0;
}

.section-heading {
	max-width: 820px;
	margin-bottom: 24px;
}

.section-heading p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.04rem;
	margin-top: 0;
}

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

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

.cert-card {
	display: grid;
	grid-template-rows: 1fr auto;
	overflow: hidden;
	min-height: 260px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #f8fafc;
	box-shadow: 0 10px 28px rgba(10, 18, 32, .07);
	color: var(--ink);
	text-decoration: none;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cert-card:hover,
.cert-card:focus {
	transform: translateY(-4px);
	border-color: rgba(21, 101, 216, .34);
	box-shadow: 0 18px 42px rgba(10, 18, 32, .14);
	color: var(--ink);
	text-decoration: none;
}

.cert-card img {
	width: 100%;
	height: 210px;
	object-fit: contain;
	padding: 12px;
	background: var(--white);
}

.cert-card span {
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 12px 14px;
	border-top: 1px solid var(--line);
	font-weight: 800;
	font-size: .92rem;
	line-height: 1.25;
}

.card,
.service-card,
.profile-card,
.case-card,
.blog-card,
.contact-panel,
.module {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 8px 28px rgba(10, 18, 32, .06);
}

.trust-grid .card {
	min-height: 150px;
	border-color: rgba(21, 101, 216, .14);
	box-shadow: 0 18px 42px rgba(10, 18, 32, .1);
}

.trust-grid .card strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ink);
	font-size: 1.02rem;
}

.trust-grid .card p {
	margin: 0;
	color: var(--muted);
}

body.has-animations .trust-grid .card {
	animation: cardLift .64s ease both;
}

body.has-animations .trust-grid .card:nth-child(1) {
	animation-delay: .72s;
}

body.has-animations .trust-grid .card:nth-child(2) {
	animation-delay: .82s;
}

body.has-animations .trust-grid .card:nth-child(3) {
	animation-delay: .92s;
}

body.has-animations .trust-grid .card:nth-child(4) {
	animation-delay: 1.02s;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .72s ease, transform .72s ease;
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

body.has-animations .visual-banner,
body.has-animations .visual-card {
	animation: cardLift .72s ease both;
}

body.has-animations .visual-card:nth-child(1) {
	animation-delay: .08s;
}

body.has-animations .visual-card:nth-child(2) {
	animation-delay: .16s;
}

body.has-animations .visual-card:nth-child(3) {
	animation-delay: .24s;
}

body.has-animations .cert-card {
	animation: cardLift .68s ease both;
}

body.has-animations .cert-card:nth-child(2n) {
	animation-delay: .08s;
}

body.has-animations .cert-card:nth-child(3n) {
	animation-delay: .16s;
}

.card,
.service-card,
.profile-card,
.case-card,
.blog-card,
.contact-panel {
	padding: 24px;
}

.service-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-height: 250px;
}

.service-card .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	background: #eaf7fb;
	color: #066b82;
	font-weight: 900;
}

.service-card .icon svg {
	width: 25px;
	height: 25px;
	stroke: currentColor;
	stroke-width: 1.9;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.service-card p,
.case-card p,
.blog-card p,
.profile-card p {
	margin-top: 0;
	color: var(--muted);
}

.service-card .button {
	margin-top: auto;
	align-self: flex-start;
	min-height: 40px;
	padding: 9px 13px;
	background: var(--ink);
	color: var(--white);
	font-size: .9rem;
}

.profile-card {
	border-left: 4px solid var(--cyan);
}

.profile-card strong {
	display: block;
	color: var(--ink);
	font-size: 1.06rem;
}

.stat-list,
.check-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.stat-list li,
.check-list li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 28px;
}

.stat-list li::before,
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .52em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(34, 197, 94, .14);
}

.highlight-band {
	padding: 30px;
	border-radius: var(--radius);
	background: var(--soft);
	border: 1px solid var(--line);
}

.dark-panel {
	padding: 32px;
	border-radius: var(--radius);
	background: var(--navy);
	color: var(--white);
	box-shadow: var(--shadow);
}

.dark-panel p {
	color: rgba(255, 255, 255, .78);
}

.breadcrumbs {
	padding: 20px 0 0;
	font-size: .92rem;
	color: var(--muted);
}

.site-footer {
	padding: 52px 0;
	background: #08111f;
	color: rgba(255, 255, 255, .78);
}

.site-footer h2 {
	font-size: 1rem;
	color: var(--white);
}

.site-footer a {
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1fr;
	gap: 28px;
	align-items: start;
}

.footer-logo {
	margin-bottom: 16px;
}

.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: #062213;
	font-weight: 950;
	box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
	animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
	color: #062213;
	transform: translateY(-3px) scale(1.03);
	text-decoration: none;
}

@keyframes headerDrop {
	from {
		opacity: 0;
		transform: translateY(-14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroDrift {
	from {
		transform: scale(1.02) translate3d(0, 0, 0);
	}
	to {
		transform: scale(1.07) translate3d(-18px, -8px, 0);
	}
}

@keyframes signalSweep {
	from {
		opacity: .35;
		transform: translateX(-3%);
	}
	to {
		opacity: .72;
		transform: translateX(3%);
	}
}

@keyframes riseFade {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes chipIn {
	from {
		opacity: 0;
		transform: translateY(10px) scale(.94);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes cardLift {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes whatsappPulse {
	0%,
	100% {
		box-shadow: 0 16px 38px rgba(0, 0, 0, .24), 0 0 0 0 rgba(37, 211, 102, .28);
	}
	50% {
		box-shadow: 0 16px 38px rgba(0, 0, 0, .24), 0 0 0 12px rgba(37, 211, 102, 0);
	}
}

.error-wrap,
.component-shell {
	min-height: 100vh;
	display: grid;
	align-content: center;
	padding: 48px 0;
}

.error-wrap {
	width: min(760px, calc(100% - 32px));
	margin: 0 auto;
}

.form-grid {
	display: grid;
	gap: 14px;
}

.form-grid label {
	display: grid;
	gap: 6px;
	font-weight: 700;
}

.form-grid input,
.form-grid textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 12px 14px;
	font: inherit;
}

.form-grid textarea {
	min-height: 140px;
	resize: vertical;
}

.support-page {
	display: grid;
	gap: 34px;
}

.support-hero {
	position: relative;
	overflow: hidden;
}

.support-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 82% 20%, rgba(25, 196, 232, .2), transparent 28%),
		linear-gradient(135deg, transparent, rgba(21, 101, 216, .16));
	pointer-events: none;
}

.support-hero > * {
	position: relative;
	z-index: 1;
}

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

.support-card {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 10px 30px rgba(10, 18, 32, .07);
}

.support-card h2 {
	font-size: 1.35rem;
	color: var(--ink);
}

.support-card p {
	color: var(--muted);
}

.support-download-card {
	border-color: rgba(21, 101, 216, .28);
	box-shadow: 0 18px 42px rgba(21, 101, 216, .12);
}

.support-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 14px;
	border-radius: var(--radius);
	background: #eaf3ff;
	color: #0f4bb5;
	font-weight: 950;
}

.support-note {
	margin: 14px 0 0;
	font-size: .9rem;
}

.support-note code {
	display: inline-block;
	max-width: 100%;
	padding: 4px 7px;
	border-radius: 6px;
	background: #eef2f7;
	color: var(--ink);
	overflow-wrap: anywhere;
}

.support-steps h2 {
	color: var(--ink);
}

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

.step-grid div {
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
}

.step-grid span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	border-radius: 50%;
	background: var(--blue);
	color: var(--white);
	font-weight: 900;
}

.step-grid strong {
	display: block;
	margin-bottom: 8px;
	color: var(--ink);
}

.step-grid p {
	margin: 0;
	color: var(--muted);
}

.app-downloads {
	display: grid;
	gap: 18px;
}

.app-downloads h2 {
	margin: 0;
	color: var(--ink);
}

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

.download-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 12px 30px rgba(10, 18, 32, .07);
}

.download-card h3 {
	margin: 0 0 8px;
	color: var(--ink);
	font-size: 1.05rem;
}

.download-card p {
	margin: 0 0 10px;
	color: var(--muted);
}

.download-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius);
	background: #eaf3ff;
	color: #0f4bb5;
	font-weight: 950;
}

.download-meta {
	display: inline-flex;
	color: var(--ink);
	font-size: .86rem;
	font-weight: 800;
}

.featured-download {
	grid-column: 1 / -1;
	border-color: rgba(21, 101, 216, .35);
	background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}

@media (max-width: 920px) {
	.nav-toggle {
		display: inline-block;
	}

	.site-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: 78px;
		display: none;
		padding: 12px;
		background: var(--white);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav ul {
		display: grid;
		gap: 2px;
	}

	.site-nav a {
		width: 100%;
		justify-content: flex-start;
	}

	.content-layout.has-sidebar,
	.intro-grid,
	.contact-grid,
	.support-grid,
	.step-grid,
	.solution-map,
	.process-flow,
	.download-grid {
		grid-template-columns: 1fr;
	}

	.download-card {
		grid-template-columns: auto 1fr;
	}

	.download-card .button {
		grid-column: 1 / -1;
		justify-self: start;
	}

	.map-core {
		display: grid;
	}

	.process-step:not(:last-child)::after {
		display: none;
	}

	.service-grid,
	.visual-grid,
	.cert-grid,
	.trust-grid,
	.benefit-grid,
	.sector-grid,
	.case-grid,
	.blog-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.shell {
		width: min(100% - 24px, 1120px);
	}

	.header-shell {
		min-height: 70px;
	}

	.site-nav {
		top: 70px;
	}

	.hero {
		min-height: 650px;
	}

	.hero-content {
		padding: 88px 0 108px;
	}

	.lead {
		font-size: 1rem;
	}

	.service-grid,
	.visual-grid,
	.cert-grid,
	.cert-grid-compact,
	.trust-grid,
	.benefit-grid,
	.sector-grid,
	.case-grid,
	.blog-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section,
	.main-area {
		padding: 52px 0;
	}

	.visual-banner {
		min-height: 420px;
	}

	.visual-banner__copy {
		padding: 28px;
	}

	.solution-map {
		padding: 18px;
	}

	.cert-card {
		min-height: 230px;
	}

	.cert-card img {
		height: 180px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}
