:root {
	--bg: #070a0f;
	--bg-soft: #0b1018;
	--bg-panel: #101721;
	--graphite: #151d28;
	--line: rgba(189, 205, 229, 0.16);
	--line-strong: rgba(216, 225, 236, 0.28);
	--text: #f7fbff;
	--muted: #a9b7c9;
	--muted-2: #75849a;
	--blue: #0b5cff;
	--cyan: #22d3ee;
	--metal: #d8e1ec;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
	--shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.24);
	--radius: 8px;
	--container: 1180px;
	--font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--display: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
		radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.13), transparent 28rem),
		radial-gradient(circle at 78% 4%, rgba(11, 92, 255, 0.11), transparent 24rem),
		var(--bg);
	background-size: 56px 56px, 56px 56px, auto, auto, auto;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--cyan);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 4px;
}

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

svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.container {
	width: min(100% - 40px, var(--container));
	margin-inline: auto;
}

.narrow {
	max-width: 820px;
}

.screen-reader-text {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px;
}

.skip-link:focus {
	position: fixed;
	top: 14px;
	left: 14px;
	z-index: 100;
	clip: auto;
	width: auto;
	height: auto;
	padding: 10px 14px;
	border-radius: 8px;
	background: var(--cyan);
	color: #031018;
	font-weight: 800;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(7, 10, 15, 0.76);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(18px);
	transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(5, 7, 11, 0.9);
	border-bottom-color: rgba(216, 225, 236, 0.22);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 800;
	font-family: var(--display);
	letter-spacing: 0;
	transition: transform 180ms ease;
}

.brand:hover {
	color: var(--text);
	transform: translateY(-1px);
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(216, 225, 236, 0.34);
	background: linear-gradient(145deg, rgba(216, 225, 236, 0.2), rgba(34, 211, 238, 0.07));
	border-radius: 8px;
	color: var(--metal);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.24);
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.brand:hover .brand-mark {
	border-color: rgba(34, 211, 238, 0.56);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.24), 0 0 24px rgba(34,211,238,0.18);
}

.brand-name {
	font-size: 1.08rem;
}

.primary-nav,
.menu {
	display: flex;
	align-items: center;
	gap: 24px;
}

.menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a,
.footer-menu a {
	position: relative;
	color: var(--muted);
	font-weight: 600;
	font-size: 0.92rem;
}

.menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 2px;
	background: var(--cyan);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.menu a:hover::after,
.menu .current-menu-item > a::after {
	transform: scaleX(1);
}

.menu .current-menu-item > a {
	color: var(--text);
}

.nav-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 8px;
	font-weight: 800;
	border: 1px solid transparent;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.btn.primary {
	color: #031018;
	background: linear-gradient(135deg, var(--cyan) 0%, #8be9ff 60%, #a5f3fc 100%);
	box-shadow: 0 10px 30px rgba(34, 211, 238, 0.28), inset 0 1px 0 rgba(255,255,255,0.4);
	font-weight: 900;
}

.hero-actions .btn.primary {
	min-height: 50px;
	padding: 0 24px;
	font-size: 1rem;
	box-shadow: 0 14px 38px rgba(34, 211, 238, 0.35), inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn.secondary {
	color: var(--text);
	background: rgba(255,255,255,0.04);
	border-color: rgba(216,225,236,0.22);
}

.btn.secondary:hover {
	border-color: rgba(34,211,238,0.38);
	background: rgba(34,211,238,0.06);
	color: var(--text);
}

.hero-actions .btn.secondary {
	min-height: 50px;
	padding: 0 24px;
	font-size: 1rem;
}

.nav-cta:hover,
.btn:hover {
	color: inherit;
	transform: translateY(-2px);
}

.btn.primary:hover,
.nav-cta:hover {
	color: #031018;
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line);
	background: rgba(255,255,255,0.04);
	border-radius: 8px;
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--text);
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
	position: relative;
	overflow: hidden;
	padding: 94px 0 72px;
	min-height: calc(100vh - 76px);
	display: flex;
	align-items: center;
	isolation: isolate;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 10% 24%, rgba(34,211,238,0.22), transparent 22rem),
		radial-gradient(circle at 80% 14%, rgba(11,92,255,0.32), transparent 30rem),
		radial-gradient(ellipse at 52% 80%, rgba(34,211,238,0.1), transparent 28rem),
		linear-gradient(115deg, rgba(7, 10, 15, 0.08), rgba(7, 10, 15, 0.94) 62%),
		linear-gradient(180deg, transparent, var(--bg) 96%);
}

.hero-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(34,211,238,0.08) 1px, transparent 1px),
		linear-gradient(rgba(34,211,238,0.06) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(circle at 58% 36%, black, transparent 68%);
}

.hero-grid,
.split-grid,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
	gap: clamp(34px, 5vw, 64px);
	align-items: center;
}

.hero-copy-block {
	position: relative;
	z-index: 2;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.hero-kicker span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 30px;
	padding: 0 12px;
	border: 1px solid rgba(34,211,238,0.36);
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(11,92,255,0.08));
	color: var(--cyan);
	box-shadow: 0 0 18px rgba(34,211,238,0.12);
}

.hero-kicker span::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 10px rgba(34,211,238,0.8);
	animation: status-glow 2.2s ease-in-out infinite;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--cyan);
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eyebrow::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 2px;
	background: var(--cyan);
	border-radius: 99px;
	flex-shrink: 0;
	box-shadow: 0 0 8px rgba(34,211,238,0.6);
}

h1, h2, h3 {
	font-family: var(--display);
	line-height: 1.04;
	letter-spacing: 0;
	margin: 0;
}

h1 {
	max-width: 820px;
	font-size: clamp(3.1rem, 7vw, 5.85rem);
	line-height: 0.98;
}

.hero-section h1 {
	font-size: clamp(2.6rem, 5.4vw, 4.9rem);
	line-height: 1.04;
	background: linear-gradient(150deg, #ffffff 0%, #e8f4ff 40%, #a8d8f0 72%, var(--cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: 0.08em;
}

h2 {
	font-size: clamp(2rem, 4.5vw, 3.45rem);
	max-width: 920px;
}

h3 {
	font-size: 1.18rem;
}

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

.hero-copy {
	max-width: 620px;
	margin-top: 22px;
	font-size: clamp(1.05rem, 2vw, 1.28rem);
	color: #d8e1ec;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 34px;
}


.hero-metrics span {
	min-height: 82px;
	padding: 18px;
	border: 1px solid rgba(34,211,238,0.18);
	background: linear-gradient(145deg, rgba(34,211,238,0.06), rgba(11,92,255,0.04), rgba(255,255,255,0.02));
	border-radius: 10px;
	color: var(--muted);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 24px rgba(0,0,0,0.18);
	transition: transform 180ms ease, border-color 180ms ease;
}

.hero-metrics span:hover {
	transform: translateY(-2px);
	border-color: rgba(34,211,238,0.36);
}

.hero-metrics strong {
	display: block;
	font-size: 1.48rem;
	font-family: var(--display);
	font-weight: 900;
	background: linear-gradient(135deg, var(--text), var(--cyan) 200%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-metrics small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.8rem;
	line-height: 1.35;
}

.infra-visual {
	position: relative;
	min-height: 570px;
	padding: 20px;
	border: 1px solid rgba(34, 211, 238, 0.22);
	border-top-color: rgba(34, 211, 238, 0.52);
	border-radius: 12px;
	background:
		linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)),
		radial-gradient(circle at 76% 18%, rgba(34, 211, 238, 0.26), transparent 16rem),
		radial-gradient(circle at 12% 90%, rgba(11,92,255,0.2), transparent 16rem);
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.14), 0 0 60px rgba(34,211,238,0.08);
	overflow: hidden;
}

.infra-visual::after {
	content: "";
	position: absolute;
	inset: auto -14% -26% 12%;
	height: 220px;
	background: radial-gradient(ellipse, rgba(34,211,238,0.18), transparent 62%);
	pointer-events: none;
}

.infra-visual::before {
	content: "";
	position: absolute;
	inset: 54px 0 0;
	background-image:
		linear-gradient(rgba(34,211,238,0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(34,211,238,0.1) 1px, transparent 1px);
	background-size: 38px 38px;
	mask-image: linear-gradient(black, transparent 88%);
}

.visual-toolbar {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 1;
}

.visual-status-card {
	position: absolute;
	top: 58px;
	right: -10px;
	z-index: 3;
	display: grid;
	gap: 2px;
	min-width: 188px;
	padding: 14px 16px;
	border: 1px solid rgba(34,211,238,0.24);
	border-radius: 8px;
	background: rgba(7,10,15,0.82);
	box-shadow: 0 18px 44px rgba(0,0,0,0.3);
	backdrop-filter: blur(14px);
}

.visual-status-card span {
	position: absolute;
	top: 15px;
	right: 14px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 18px rgba(34,197,94,0.7);
	animation: status-glow 2.2s ease-in-out infinite;
}

.visual-status-card strong {
	color: var(--text);
	font-size: 0.92rem;
}

.visual-status-card small {
	color: var(--muted);
	font-size: 0.76rem;
}

.visual-toolbar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--muted-2);
}

.visual-toolbar span:nth-child(1) { background: #ff6b6b; }
.visual-toolbar span:nth-child(2) { background: #ffd166; }
.visual-toolbar span:nth-child(3) { background: #22d3ee; }
.visual-toolbar p {
	margin-left: 10px;
	font-size: 0.82rem;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.visual-toolbar strong {
	padding: 4px 9px;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.1);
	color: var(--cyan);
	border: 1px solid rgba(34, 211, 238, 0.24);
	font-size: 0.72rem;
}

.visual-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 22px;
}

.visual-summary {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 22px;
}

.visual-summary div {
	min-height: 86px;
	padding: 16px;
	border: 1px solid rgba(34,211,238,0.16);
	border-radius: 10px;
	background: rgba(7,10,15,0.7);
	backdrop-filter: blur(12px);
	transition: border-color 180ms ease;
}

.visual-summary div:hover {
	border-color: rgba(34,211,238,0.32);
}

.visual-summary span {
	display: block;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.visual-summary strong {
	display: block;
	margin-top: 8px;
	font-size: 1.2rem;
	font-family: var(--display);
	font-weight: 900;
	background: linear-gradient(135deg, var(--text), var(--cyan) 200%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.visual-card {
	min-height: 168px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(7,10,15,0.68);
	backdrop-filter: blur(12px);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
	transition: transform 180ms ease, border-color 180ms ease;
}

.visual-card:hover {
	transform: translateY(-3px);
	border-color: rgba(34, 211, 238, 0.32);
}

.visual-card strong {
	display: block;
	margin-bottom: 14px;
}

.visual-card code {
	display: block;
	color: #b8f7ff;
	font-size: 0.86rem;
	margin-top: 8px;
	white-space: nowrap;
}

.visual-card.terminal code:last-child::after {
	content: "█";
	font-size: 0.78em;
	margin-left: 2px;
	animation: blink-cursor 1.1s step-start infinite;
	color: var(--cyan);
	opacity: 0.9;
}

.node-ring {
	position: relative;
	width: 112px;
	height: 112px;
	margin: 4px auto 16px;
	border: 1px solid rgba(34, 211, 238, 0.42);
	border-radius: 50%;
	animation: pulse-ring 3.4s ease-in-out infinite;
}

.node-ring span {
	position: absolute;
	width: 18px;
	height: 18px;
	background: var(--cyan);
	border-radius: 50%;
	box-shadow: 0 0 24px rgba(34,211,238,0.62);
}

.node-ring span:nth-child(1) { top: 8px; left: 47px; }
.node-ring span:nth-child(2) { right: 8px; top: 47px; }
.node-ring span:nth-child(3) { bottom: 8px; left: 47px; }
.node-ring span:nth-child(4) { left: 8px; top: 47px; }

.graph-lines {
	display: grid;
	gap: 16px;
	padding-top: 14px;
}

.graph-lines span {
	height: 9px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.graph-lines span:nth-child(1) { width: 82%; }
.graph-lines span:nth-child(2) { width: 58%; }
.graph-lines span:nth-child(3) { width: 72%; }

.deploy ol {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: pipeline-step;
}

.deploy ol li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 0.84rem;
	padding-left: 2px;
}

.deploy ol li::before {
	counter-increment: pipeline-step;
	content: counter(pipeline-step);
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(34,211,238,0.12);
	border: 1px solid rgba(34,211,238,0.28);
	color: var(--cyan);
	font-size: 0.72rem;
	font-weight: 800;
}

.deploy ol li:last-child::before {
	background: rgba(34,211,238,0.22);
	box-shadow: 0 0 10px rgba(34,211,238,0.4);
}

.deploy ol li:last-child {
	color: var(--cyan);
}

.visual-floating-note {
	position: absolute;
	left: -12px;
	bottom: 76px;
	z-index: 3;
	min-width: 152px;
	padding: 13px 15px;
	border: 1px solid rgba(216,225,236,0.18);
	border-radius: 8px;
	background: rgba(7,10,15,0.82);
	box-shadow: 0 18px 42px rgba(0,0,0,0.28);
	backdrop-filter: blur(14px);
}

.visual-floating-note small {
	display: block;
	color: var(--muted);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.visual-floating-note strong {
	display: block;
	margin-top: 4px;
	color: var(--cyan);
	font-size: 1.02rem;
}

.section {
	padding: 92px 0;
}

.about-section,
.technology-section,
.process-section {
	background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
}

.trust-strip {
	padding: 28px 0;
	border-block: 1px solid var(--line);
	background: rgba(255,255,255,0.02);
}

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

.strip-grid span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 1px solid rgba(216,225,236,0.1);
	border-radius: 8px;
	background: rgba(255,255,255,0.025);
	color: var(--muted);
	font-weight: 800;
	text-align: center;
}

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

.section-heading h2 + p {
	margin-top: 16px;
}

.section-copy {
	display: grid;
	gap: 18px;
}

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

.service-card,
.case-card,
.testimonial-card,
.post-card,
.contact-panel,
.contact-form,
.contact-form-wrap,
.differential-item {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
	box-shadow: var(--shadow-soft);
}

.service-card {
	position: relative;
	overflow: hidden;
	min-height: 410px;
	padding: 26px;
	transition: transform 180ms ease, border-color 180ms ease;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--cyan), transparent);
	opacity: 0.18;
	transition: opacity 180ms ease;
}

.service-card:hover {
	transform: translateY(-4px);
	border-color: rgba(34, 211, 238, 0.38);
}

.service-card:hover::before {
	opacity: 1;
}

.card-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 24px;
	border-radius: 8px;
	color: var(--cyan);
	background: rgba(34, 211, 238, 0.08);
	border: 1px solid rgba(34, 211, 238, 0.18);
}

.service-card p {
	margin-top: 14px;
}

.service-card h2 {
	font-size: 1.28rem;
	line-height: 1.15;
}

.service-fit {
	display: block;
	margin-top: 18px;
	color: #d8e1ec;
	font-size: 0.9rem;
	line-height: 1.45;
}

.service-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.card-link {
	display: inline-flex;
	margin-top: 24px;
	color: var(--cyan);
	font-weight: 800;
	font-size: 0.9rem;
}

.card-link::after {
	content: "\2192";
	margin-left: 8px;
	transition: transform 180ms ease;
}

.service-card:hover .card-link::after {
	transform: translateX(4px);
}

.service-card li,
.tech-cloud > span {
	border: 1px solid var(--line);
	border-radius: 999px;
	color: #d8e1ec;
	background: rgba(255,255,255,0.035);
}

.service-card li {
	padding: 6px 10px;
	font-size: 0.82rem;
}

.tech-cloud {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.tech-cloud > span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 62px;
	padding: 12px 14px;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.2;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.tech-cloud.large > span {
	min-height: 88px;
	padding: 18px;
	font-size: 1.05rem;
}

.tech-logo {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: linear-gradient(145deg, rgba(34,211,238,0.15), rgba(255,255,255,0.035));
	color: var(--cyan);
	border: 1px solid rgba(34,211,238,0.24);
	box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.tech-logo svg {
	width: 22px;
	height: 22px;
	stroke-width: 1.7;
}

.tech-cloud > span:hover {
	transform: translateY(-3px);
	border-color: rgba(34, 211, 238, 0.38);
	background: linear-gradient(145deg, rgba(34, 211, 238, 0.09), rgba(255,255,255,0.04));
	box-shadow: 0 18px 38px rgba(0,0,0,0.22);
}

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

.tech-group-card {
	padding: 28px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.024));
	box-shadow: var(--shadow-soft);
}

.tech-group-card h2 {
	font-size: 1.45rem;
}

.tech-group-card p {
	margin-top: 12px;
}

.tech-mini-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.tech-mini-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 6px 10px 6px 6px;
	border: 1px solid rgba(216,225,236,0.14);
	border-radius: 8px;
	background: rgba(255,255,255,0.03);
	color: #d8e1ec;
	font-weight: 800;
	font-size: 0.84rem;
}

.tech-mini-row .tech-logo {
	width: 30px;
	height: 30px;
}

.tech-mini-row .tech-logo svg {
	width: 18px;
	height: 18px;
}

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

.differential-item {
	min-height: 150px;
	padding: 22px;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.differential-item:hover {
	transform: translateY(-3px);
	border-color: rgba(34, 211, 238, 0.28);
	background: linear-gradient(145deg, rgba(34,211,238,0.08), rgba(255,255,255,0.025));
}

.differential-item span {
	display: block;
	color: var(--cyan);
	font-weight: 800;
	margin-bottom: 24px;
}

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

.case-card {
	position: relative;
	overflow: hidden;
	min-height: 390px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background:
		linear-gradient(160deg, rgba(34,211,238,0.11), rgba(11,92,255,0.055) 42%, rgba(255,255,255,0.025)),
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: auto, 26px 26px;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 12%, rgba(34,211,238,0.2), transparent 9rem),
		linear-gradient(180deg, rgba(255,255,255,0.08), transparent 36%);
	opacity: 0.78;
	pointer-events: none;
}

.case-card::after {
	content: "";
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--cyan), rgba(11,92,255,0.22));
	opacity: 0.72;
}

.case-card > * {
	position: relative;
	z-index: 1;
}

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

.case-grid.expanded .case-card {
	min-height: 420px;
}

.case-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 28px;
}

.case-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	color: var(--cyan);
	background: rgba(7, 10, 15, 0.55);
	border: 1px solid rgba(34,211,238,0.24);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.case-card h2,
.case-card h3 {
	font-size: 1.28rem;
	line-height: 1.16;
}

.case-card strong {
	display: block;
	margin: 16px 0 20px;
	color: var(--muted);
	font-weight: 600;
	line-height: 1.55;
}

.case-card:hover {
	transform: translateY(-5px);
	border-color: rgba(34, 211, 238, 0.42);
	box-shadow: 0 24px 70px rgba(0,0,0,0.32), 0 0 0 1px rgba(34,211,238,0.08);
}

.case-card p {
	font-size: 0.82rem;
}

.case-card p {
	display: inline-flex;
	align-self: start;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(34,211,238,0.12);
	color: var(--cyan);
	border: 1px solid rgba(34,211,238,0.24);
	font-weight: 800;
	white-space: nowrap;
}

.case-impact {
	display: grid;
	gap: 5px;
	margin-top: auto;
	padding: 16px;
	border: 1px solid rgba(216,225,236,0.14);
	border-radius: 8px;
	background: rgba(7,10,15,0.48);
}

.case-impact span {
	color: var(--text);
	font-size: 1.08rem;
	font-weight: 900;
}

.case-impact small {
	color: var(--muted);
	font-size: 0.82rem;
	line-height: 1.45;
}

.case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.case-tags li {
	padding: 6px 9px;
	border: 1px solid rgba(216,225,236,0.14);
	border-radius: 999px;
	background: rgba(255,255,255,0.035);
	color: #d8e1ec;
	font-size: 0.78rem;
	font-weight: 700;
}

.case-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-top: 20px;
	color: var(--cyan);
	font-weight: 900;
	font-size: 0.9rem;
}

.case-link::after {
	content: "\2192";
	margin-left: 8px;
	transition: transform 180ms ease;
}

.case-link:hover::after {
	transform: translateX(4px);
}

.timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1px;
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden;
}

.timeline-step {
	min-height: 170px;
	padding: 22px;
	background: rgba(255,255,255,0.035);
	transition: background 180ms ease;
}

.timeline-step:hover {
	background: rgba(34,211,238,0.055);
}

.timeline-step span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 28px;
	border-radius: 50%;
	background: rgba(34,211,238,0.1);
	color: var(--cyan);
	font-weight: 800;
}

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

.testimonial-card {
	margin: 0;
	padding: 34px;
	position: relative;
	overflow: hidden;
}

.testimonial-card::before {
	display: none;
}

.testimonial-avatar {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(34,211,238,0.18), rgba(11,92,255,0.14));
	border: 1px solid rgba(34,211,238,0.32);
	color: var(--cyan);
	font-weight: 900;
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	font-family: var(--display);
	margin-bottom: 6px;
}

.testimonial-card p {
	margin-top: 18px;
	color: var(--text);
	font-size: 1.18rem;
	line-height: 1.6;
}

.testimonial-card cite {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 22px;
	font-style: normal;
}

.testimonial-card cite strong {
	color: var(--text);
	font-size: 0.9rem;
}

.testimonial-card cite span {
	color: var(--muted);
	font-size: 0.84rem;
}

.future-section {
	background: rgba(255,255,255,0.018);
	border-block: 1px solid var(--line);
}

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

.future-card {
	padding: 26px 24px 22px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255,255,255,0.028);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: border-color 200ms ease, background 200ms ease;
}

.future-card:hover {
	border-color: rgba(34,211,238,0.28);
	background: rgba(34,211,238,0.04);
}

.future-card-icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: rgba(34,211,238,0.1);
	border: 1px solid rgba(34,211,238,0.2);
	color: var(--cyan);
}

.future-card-icon svg {
	width: 20px;
	height: 20px;
}

.future-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 9px;
	border-radius: 99px;
	background: rgba(34,211,238,0.1);
	border: 1px solid rgba(34,211,238,0.24);
	color: var(--cyan);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	align-self: flex-start;
}

.future-badge::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 6px rgba(34,211,238,0.8);
	animation: status-glow 2s ease-in-out infinite;
}

.future-card h3 {
	font-size: 1.02rem;
	margin: 0;
	color: var(--text);
}

.future-card p {
	font-size: 0.88rem;
	color: var(--muted);
	line-height: 1.55;
	margin: 0;
	flex: 1;
}

.future-card-link {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--muted-2);
	transition: color 150ms ease;
	align-self: flex-start;
}

.future-card-link:hover {
	color: var(--cyan);
}

@media (max-width: 860px) {
	.future-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 500px) {
	.future-cards {
		grid-template-columns: 1fr;
	}
}

.final-cta {
	padding: 120px 0;
	text-align: center;
	position: relative;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(34,211,238,0.2), transparent 55%),
		radial-gradient(ellipse at 20% 100%, rgba(11,92,255,0.16), transparent 50%),
		radial-gradient(ellipse at 80% 100%, rgba(34,211,238,0.12), transparent 44%),
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
		var(--bg);
	background-size: auto, auto, auto, 42px 42px, auto;
	border-top: 1px solid rgba(34,211,238,0.18);
}

.final-cta h2 {
	margin-inline: auto;
}

.final-cta .btn {
	margin-top: 30px;
}

.page-hero {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, rgba(34,211,238,0.07), transparent);
}

.notfound-hero {
	min-height: 72vh;
	display: flex;
	align-items: center;
	padding: 120px 0;
}

.notfound-hero .eyebrow {
	font-size: 5rem;
	font-family: var(--display);
	font-weight: 900;
	color: rgba(34,211,238,0.22);
	letter-spacing: -0.02em;
	margin-bottom: 24px;
	display: block;
}

.notfound-hero .eyebrow::before {
	display: none;
}

.page-hero.compact {
	min-height: 340px;
	display: flex;
	align-items: end;
}

.page-content :where(h1, h2, h3, p, ul, ol) {
	margin-bottom: 22px;
}

.page-content a {
	color: var(--cyan);
}

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

.post-card {
	padding: 24px;
}

.post-card h2 {
	font-size: 1.35rem;
	margin-bottom: 14px;
}

.contact-layout {
	padding-top: 40px;
}

.contact-grid {
	align-items: start;
}

.contact-panel,
.contact-form,
.contact-form-wrap {
	padding: 28px;
}

.contact-panel h2 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.contact-panel p {
	margin-bottom: 12px;
}

.contact-panel a {
	color: var(--cyan);
}

.contact-proof {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.contact-proof div {
	display: grid;
	gap: 7px;
	min-height: 136px;
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(255,255,255,0.035);
}

.contact-proof svg {
	color: var(--cyan);
}

.contact-proof strong {
	color: var(--text);
	line-height: 1.2;
}

.contact-proof span {
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.map-placeholder {
	display: grid;
	place-items: center;
	min-height: 240px;
	margin-top: 26px;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--muted);
	background:
		linear-gradient(rgba(34,211,238,0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(34,211,238,0.08) 1px, transparent 1px);
	background-size: 28px 28px;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form label {
	display: grid;
	gap: 7px;
	color: var(--muted);
	font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(7,10,15,0.72);
	color: var(--text);
	padding: 13px 14px;
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: rgba(34, 211, 238, 0.62);
	background: rgba(7,10,15,0.92);
	box-shadow: 0 0 0 4px rgba(34,211,238,0.08);
}

.form-note {
	font-size: 0.84rem;
	color: var(--muted-2);
}

.form-feedback {
	padding: 13px 16px;
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0;
}

.form-feedback--ok {
	background: rgba(16,185,129,0.1);
	border: 1px solid rgba(16,185,129,0.3);
	color: #34d399;
}

.form-feedback--error {
	background: rgba(239,68,68,0.1);
	border: 1px solid rgba(239,68,68,0.28);
	color: #f87171;
}

.contact-form input.field-error,
.contact-form textarea.field-error {
	border-color: rgba(239,68,68,0.6);
	box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.btn--loading {
	opacity: 0.6;
	cursor: wait;
	pointer-events: none;
}

/* CF7 integration */
.contact-form-wrap {
	display: grid;
	gap: 16px;
}

.wpcf7-form {
	display: grid;
	gap: 16px;
}

.wpcf7-form p {
	display: contents;
}

.wpcf7-form label {
	display: grid;
	gap: 7px;
	color: var(--muted);
	font-weight: 700;
}

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

.wpcf7-form input:not([type="submit"]),
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: rgba(7,10,15,0.72);
	color: var(--text);
	padding: 13px 14px;
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
	outline: none;
}

.wpcf7-form input:not([type="submit"]):focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
	border-color: rgba(34, 211, 238, 0.62);
	background: rgba(7,10,15,0.92);
	box-shadow: 0 0 0 4px rgba(34,211,238,0.08);
}

.wpcf7-form .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 30px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.97rem;
	cursor: pointer;
	border: none;
	background: var(--cyan);
	color: #070a0f;
	transition: background 180ms ease, box-shadow 180ms ease;
	width: 100%;
	justify-content: center;
}

.wpcf7-form .wpcf7-submit:hover {
	background: #67e8f9;
	box-shadow: 0 0 24px rgba(34,211,238,0.35);
}

.wpcf7-form .wpcf7-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

.wpcf7-response-output {
	padding: 13px 16px;
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 600;
	margin: 0;
}

.wpcf7-form.sent .wpcf7-response-output {
	background: rgba(16,185,129,0.1);
	border: 1px solid rgba(16,185,129,0.3);
	color: #34d399;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
	background: rgba(239,68,68,0.1);
	border: 1px solid rgba(239,68,68,0.28);
	color: #f87171;
}

.wpcf7-form.invalid .wpcf7-response-output {
	background: rgba(245,158,11,0.1);
	border: 1px solid rgba(245,158,11,0.3);
	color: #fbbf24;
}

.wpcf7-not-valid {
	border-color: rgba(239,68,68,0.6) !important;
	box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.wpcf7-not-valid-tip {
	color: #f87171;
	font-size: 0.82rem;
	margin-top: 4px;
	display: block;
}

.site-footer {
	border-top: 1px solid var(--line);
	background: #05070b;
	padding: 58px 0 26px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(4, minmax(0, 0.72fr));
	gap: 34px;
}

.footer-grid p {
	margin-top: 18px;
	max-width: 440px;
}

.footer-grid h2 {
	margin-bottom: 18px;
	font-size: 1rem;
}

.footer-menu,
.language-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 22px;
}

.footer-social a,
.language-list a {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	color: var(--muted);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	color: var(--muted-2);
	font-size: 0.9rem;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 40;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #04130a;
	box-shadow: 0 8px 28px rgba(37,211,102,0.38), 0 18px 36px rgba(0,0,0,0.28);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
	color: #04130a;
	transform: translateY(-3px) scale(1.06);
	box-shadow: 0 12px 36px rgba(37,211,102,0.5), 0 22px 42px rgba(0,0,0,0.34);
}

.whatsapp-float svg {
	display: block;
	flex-shrink: 0;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes pulse-ring {
	0%, 100% { box-shadow: 0 0 0 0 rgba(34,211,238,0.28); }
	50% { box-shadow: 0 0 0 18px rgba(34,211,238,0); }
}

@keyframes status-glow {
	0%, 100% { box-shadow: 0 0 12px rgba(34,197,94,0.6); }
	50% { box-shadow: 0 0 28px rgba(34,197,94,1), 0 0 6px rgba(34,197,94,0.8); }
}

@keyframes blink-cursor {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

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

	.reveal {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1080px) {
	.service-grid,
	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.case-grid,
	.timeline,
	.differential-grid,
	.tech-group-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.case-grid.expanded {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.timeline {
		overflow: visible;
	}
}

@media (max-width: 860px) {
	.container {
		width: min(100% - 28px, var(--container));
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		inset: 88px 14px auto;
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: rgba(7, 10, 15, 0.98);
		box-shadow: var(--shadow);
		max-height: calc(100vh - 104px);
		overflow-y: auto;
	}

	.primary-nav.is-open {
		display: flex;
	}

	.primary-nav .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.primary-nav .menu a {
		display: flex;
		align-items: center;
		min-height: 44px;
		padding: 0 10px;
		border-radius: 8px;
	}

	.primary-nav .menu a:hover,
	.primary-nav .menu .current-menu-item > a {
		background: rgba(255,255,255,0.055);
		color: var(--text);
	}

	.primary-nav .menu a::after {
		display: none;
	}

	.nav-cta {
		margin-top: 6px;
		width: 100%;
	}

	.hero-section {
		padding: 72px 0;
		min-height: auto;
	}

	.hero-grid,
	.split-grid,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	h1 {
		font-size: clamp(2.7rem, 13vw, 4.2rem);
	}

	.hero-metrics,
	.testimonial-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.infra-visual {
		min-height: auto;
	}

	.visual-status-card,
	.visual-floating-note {
		position: relative;
		inset: auto;
		margin-top: 14px;
	}

	.visual-status-card {
		min-width: 0;
	}

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

	.visual-summary {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
	}

	.timeline-step,
	.differential-item {
		min-height: 140px;
	}

	.case-card,
	.case-grid.expanded .case-card {
		min-height: 360px;
	}
}

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

	.hero-actions,
	.hero-actions .btn,
	.final-cta .btn {
		width: 100%;
	}

	.btn,
	.nav-cta {
		min-height: 48px;
	}

	.service-grid,
	.posts-grid,
	.case-grid,
	.case-grid.expanded,
	.tech-cloud,
	.tech-group-grid,
	.timeline,
	.differential-grid,
	.strip-grid {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: auto;
		padding: 22px;
	}

	.case-card,
	.case-grid.expanded .case-card {
		min-height: auto;
		padding: 22px;
	}

	.case-card-top {
		margin-bottom: 22px;
	}

	.case-impact {
		margin-top: 18px;
	}

	.page-hero.compact {
		min-height: 280px;
	}

	.hero-metrics {
		gap: 10px;
	}

	.hero-metrics span {
		min-height: auto;
	}

	.hero-kicker {
		align-items: flex-start;
		flex-direction: column;
	}

	.visual-toolbar strong {
		display: none;
	}

	.visual-card {
		min-height: 138px;
	}

	.visual-card code {
		white-space: normal;
		word-break: break-word;
	}

	.footer-social {
		flex-direction: column;
		align-items: flex-start;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		width: 50px;
		height: 50px;
	}
}

/* ============================================================
   GLOBAL POLISH
   ============================================================ */

::selection {
	background: rgba(34, 211, 238, 0.22);
	color: var(--text);
}

::-webkit-scrollbar {
	width: 5px;
}
::-webkit-scrollbar-track {
	background: var(--bg);
}
::-webkit-scrollbar-thumb {
	background: rgba(34, 211, 238, 0.28);
	border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
	background: rgba(34, 211, 238, 0.56);
}

/* ============================================================
   SECTION SEPARATION — visual rhythm between sections
   ============================================================ */

.services-section,
.cases-section,
.process-section,
.testimonials-section,
.differentials-section {
	border-top: 1px solid var(--line);
}

/* ============================================================
   TRUST STRIP — dot prefix per item
   ============================================================ */

.strip-grid span {
	gap: 10px;
}

.strip-grid span::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	flex-shrink: 0;
	box-shadow: 0 0 8px rgba(34,211,238,0.7);
}

/* ============================================================
   ABOUT — section-copy left accent
   ============================================================ */

.section-copy {
	padding-left: 22px;
	border-left: 2px solid rgba(34, 211, 238, 0.22);
}

/* ============================================================
   DIFFERENTIAL ITEMS — large number accent
   ============================================================ */

.differential-item {
	display: flex;
	flex-direction: column;
}

.differential-item span {
	font-size: 2.6rem;
	font-family: var(--display);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 16px;
	background: linear-gradient(135deg, var(--cyan) 0%, rgba(34,211,238,0.35) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.differential-item h3 {
	margin-top: auto;
}

/* ============================================================
   PROCESS TIMELINE — accent top border + step glow
   ============================================================ */

.timeline {
	position: relative;
	border-top: 2px solid rgba(34, 211, 238, 0.45);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	overflow: visible;
}

.timeline-step {
	position: relative;
}

.timeline-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 38px;
	right: -1px;
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, rgba(34,211,238,0.4), transparent);
	pointer-events: none;
}

.timeline-step span {
	background: linear-gradient(135deg, rgba(34,211,238,0.18), rgba(11,92,255,0.1));
	border: 1px solid rgba(34,211,238,0.36);
	font-weight: 900;
	font-family: var(--display);
	font-size: 0.88rem;
	box-shadow: 0 0 14px rgba(34,211,238,0.15);
}

/* ============================================================
   TESTIMONIALS — decorative quote mark
   ============================================================ */

.testimonial-card::after {
	content: "\201C";
	position: absolute;
	bottom: -24px;
	right: 18px;
	font-size: 9rem;
	line-height: 1;
	font-family: var(--display);
	font-weight: 900;
	color: rgba(34, 211, 238, 0.08);
	pointer-events: none;
	user-select: none;
}

/* ============================================================
   FINAL CTA — h2 gradient
   ============================================================ */

.final-cta h2 {
	background: linear-gradient(135deg, var(--text) 40%, var(--cyan) 120%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: 0.06em;
}

/* ============================================================
   CARD FOCUS GLOW — subtle ring on keyboard focus
   ============================================================ */

.service-card:focus-within,
.case-card:focus-within {
	outline: 2px solid rgba(34,211,238,0.5);
	outline-offset: 2px;
}

/* ============================================================
   SERVICE CARDS — icon accent per position
   ============================================================ */

.service-card:nth-child(1) .card-icon { background: rgba(34,211,238,0.1); border-color: rgba(34,211,238,0.24); }
.service-card:nth-child(2) .card-icon { background: rgba(11,92,255,0.14); border-color: rgba(11,92,255,0.32); color: #7aa8ff; }
.service-card:nth-child(3) .card-icon { background: rgba(34,211,238,0.07); border-color: rgba(34,211,238,0.2); }
.service-card:nth-child(4) .card-icon { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.24); color: #c084fc; }
.service-card:nth-child(5) .card-icon { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.24); color: #34d399; }
.service-card:nth-child(6) .card-icon { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.24); color: #fbbf24; }

/* ============================================================
   FOOTER — improved brand column
   ============================================================ */

.site-footer {
	background: linear-gradient(180deg, rgba(255,255,255,0.012), rgba(0,0,0,0)) , #05070b;
}

.footer-grid h2 {
	color: var(--muted);
	font-weight: 700;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.footer-menu a {
	font-size: 0.92rem;
	transition: color 150ms ease, padding-left 150ms ease;
}

.footer-menu a:hover {
	color: var(--text);
	padding-left: 4px;
}

/* ============================================================
   H2 SECTION HEADINGS — subtle gradient on section h2
   ============================================================ */

.section-heading h2 {
	background: linear-gradient(160deg, var(--text) 55%, rgba(247,251,255,0.65) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding-bottom: 0.04em;
}

/* ============================================================
   TECH CLOUD — hover glow
   ============================================================ */

.tech-cloud > span:hover .tech-logo {
	box-shadow: 0 0 20px rgba(34,211,238,0.3);
	border-color: rgba(34,211,238,0.5);
}

/* ============================================================
   ABOUT SECTION — first paragraph larger
   ============================================================ */

.section-copy p:first-child {
	font-size: 1.05rem;
	color: #d8e1ec;
	line-height: 1.72;
}

/* ============================================================
   SECTION HEADING — consistent bottom spacing
   ============================================================ */

.section-heading {
	margin-bottom: 48px;
}

/* ============================================================
   HERO COPY — tighter copy line-height
   ============================================================ */

.hero-copy {
	line-height: 1.65;
}

/* ============================================================
   HERO ACTIONS — gap between CTA and secondary
   ============================================================ */

.hero-actions {
	gap: 12px;
}

/* ============================================================
   FOOTER BRAND — subtle bottom tagline
   ============================================================ */

.footer-grid > div:first-child p {
	font-size: 0.9rem;
	line-height: 1.6;
}

/* ============================================================
   ACTIVE NAV LINK
   ============================================================ */

.menu a.is-active {
	color: var(--cyan);
}

.menu a.is-active::after {
	transform: scaleX(1);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */

.scroll-top {
	position: fixed;
	right: 22px;
	bottom: 88px;
	z-index: 39;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid var(--line-strong);
	border-radius: 10px;
	background: rgba(7, 10, 15, 0.88);
	color: var(--muted);
	cursor: pointer;
	transition: color 180ms ease, border-color 180ms ease, transform 180ms ease, background 180ms ease;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.scroll-top:hover {
	color: var(--cyan);
	border-color: rgba(34,211,238,0.42);
	background: rgba(34,211,238,0.07);
	transform: translateY(-2px);
}

.scroll-top[hidden] {
	display: none;
}

@media (max-width: 640px) {
	.scroll-top {
		right: 14px;
		bottom: 76px;
	}
}

/* ============================================================
   LANGUAGE-SPECIFIC HERO FONT SIZE
   Hero h1 in PT/ES uses longer words — reduce slightly so they fit
   ============================================================ */

.lang-pt .hero-section h1,
.lang-es .hero-section h1 {
	font-size: clamp(2.2rem, 4.4vw, 4.1rem);
	line-height: 1.06;
}

/* ============================================================
   LANGUAGE SWITCHER — nav dropdown
   ============================================================ */

.lang-switcher {
	position: relative;
	flex-shrink: 0;
}

.lang-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 38px;
	padding: 0 11px;
	border: 1px solid rgba(216,225,236,0.2);
	border-radius: 8px;
	background: rgba(255,255,255,0.04);
	color: var(--muted);
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.82rem;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.lang-trigger:hover,
.lang-switcher.is-open .lang-trigger {
	border-color: rgba(34,211,238,0.42);
	background: rgba(34,211,238,0.07);
	color: var(--text);
	box-shadow: 0 0 18px rgba(34,211,238,0.1);
}

.flag-svg {
	display: block;
	width: 22px;
	height: auto;
	border-radius: 3px;
	flex-shrink: 0;
	box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.lang-code {
	font-family: var(--display);
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	color: inherit;
}

.lang-chevron {
	width: 14px;
	height: 14px;
	stroke-width: 2.4;
	color: var(--muted-2);
	transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1), color 180ms ease;
	flex-shrink: 0;
}

.lang-switcher.is-open .lang-chevron {
	transform: rotate(180deg);
	color: var(--cyan);
}

/* Dropdown */
.lang-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	min-width: 186px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border: 1px solid rgba(34,211,238,0.22);
	border-radius: 12px;
	background: rgba(7,10,15,0.96);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	box-shadow:
		0 24px 60px rgba(0,0,0,0.55),
		0 0 0 1px rgba(255,255,255,0.04) inset,
		0 1px 0 rgba(255,255,255,0.08) inset;
	opacity: 0;
	transform: translateY(-8px) scale(0.96);
	transform-origin: top right;
	pointer-events: none;
	transition:
		opacity 200ms cubic-bezier(0.16, 1, 0.3, 1),
		transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 200;
}

/* notch/arrow */
.lang-dropdown::before {
	content: "";
	position: absolute;
	top: -5px;
	right: 18px;
	width: 10px;
	height: 10px;
	background: rgba(7,10,15,0.96);
	border-top: 1px solid rgba(34,211,238,0.22);
	border-left: 1px solid rgba(34,211,238,0.22);
	transform: rotate(45deg);
	border-radius: 2px 0 0 0;
}

.lang-switcher.is-open .lang-dropdown {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 600;
	transition: background 150ms ease, color 150ms ease;
	cursor: pointer;
}

.lang-option:hover {
	background: rgba(255,255,255,0.06);
	color: var(--text);
}

.lang-option--active {
	background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(11,92,255,0.08));
	color: var(--cyan);
	font-weight: 800;
	cursor: default;
}

.lang-option--active:hover {
	background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(11,92,255,0.08));
	color: var(--cyan);
}

.lang-option-name {
	flex: 1;
}

.lang-check {
	width: 15px;
	height: 15px;
	stroke-width: 2.8;
	color: var(--cyan);
	flex-shrink: 0;
}

/* ============================================================
   FOOTER LANGUAGE LIST
   ============================================================ */

.language-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.language-list a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 28px;
	color: var(--muted);
	font-size: 0.92rem;
	transition: color 150ms ease, padding-left 150ms ease;
}

.language-list a:hover {
	color: var(--text);
	padding-left: 4px;
}

.language-list a.lang-active {
	color: var(--cyan);
	font-weight: 800;
	pointer-events: none;
}

.language-list a.lang-active::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 8px rgba(34,211,238,0.7);
	flex-shrink: 0;
}

/* Mobile nav lang-switcher */
@media (max-width: 860px) {
	.lang-switcher {
		width: 100%;
		margin-top: 6px;
	}

	.lang-trigger {
		width: 100%;
		justify-content: flex-start;
		height: 44px;
		padding: 0 14px;
	}

	.lang-dropdown {
		left: 0;
		right: 0;
		top: calc(100% + 8px);
		transform-origin: top center;
	}

	.lang-dropdown::before {
		right: auto;
		left: 20px;
	}
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS FOR NEW RULES
   ============================================================ */

@media (max-width: 860px) {
	.section-copy {
		padding-left: 16px;
	}

	.timeline::before {
		display: none;
	}

	.final-cta {
		padding: 80px 0;
	}
}

@media (max-width: 640px) {
	.eyebrow::before {
		width: 12px;
	}
}
