/* ==========================================================================
   Sigma Modern — design system (mobile-first)
   ========================================================================== */

:root {
	--ink: #0b0e14;
	--ink-soft: #12161f;
	--ink-line: #232838;
	--paper: #f7f8fa;
	--paper-soft: #ffffff;
	--muted: #8b93a7;
	--muted-dark: #5b6376;
	--indigo: #5b5fef;
	--cyan: #22d3ee;
	--lime: #c6ff4a;
	--gradient-brand: linear-gradient(120deg, var(--indigo), var(--cyan));
	--gradient-radial: radial-gradient(circle at 30% 20%, rgba(91, 95, 239, 0.35), transparent 60%),
		radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.25), transparent 55%);
	--font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, sans-serif;
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
	--container: 1180px;
	--gutter: 20px;
	--shadow-soft: 0 20px 50px -20px rgba(11, 14, 20, 0.35);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
svg {
	max-width: 100%;
	display: block;
}

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

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

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	line-height: 1.15;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}

p {
	margin: 0 0 1em;
}

button {
	font-family: inherit;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.section {
	padding: 64px 0;
}

.section--tight {
	padding: 40px 0;
}

.section--dark {
	background: var(--ink);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}

.section--dark::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gradient-radial);
	pointer-events: none;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--indigo);
	margin-bottom: 12px;
}

.section--dark .eyebrow {
	color: var(--lime);
}

.eyebrow::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
}

.gradient-text {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lead {
	font-size: 17px;
	color: var(--muted-dark);
	max-width: 60ch;
}

.section--dark .lead {
	color: var(--muted);
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	white-space: nowrap;
}

.btn:active {
	transform: scale(0.96);
}

.btn-primary {
	background: var(--gradient-brand);
	color: #fff;
	box-shadow: 0 12px 30px -10px rgba(91, 95, 239, 0.6);
}

.btn-primary:hover {
	box-shadow: 0 16px 36px -8px rgba(91, 95, 239, 0.75);
}

.btn-accent {
	background: var(--lime);
	color: var(--ink);
}

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

.section--dark .btn-ghost {
	border-color: rgba(247, 248, 250, 0.25);
	color: var(--paper);
}

.btn-block {
	width: 100%;
}

.btn-sm {
	padding: 10px 20px;
	font-size: 13.5px;
}

.header-cta {
	display: none;
}

/* ---- Header ---- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(11, 14, 20, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: padding 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
	background: rgba(11, 14, 20, 0.85);
}

.header-topbar {
	display: none;
}

.header-phone {
	display: none;
}

.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 32px;
	padding: 16px var(--gutter);
}

.site-header.is-scrolled .site-header__bar {
	padding: 10px var(--gutter);
}

.site-logo {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-logo span {
	background: var(--gradient-brand);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.brand-mark {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

/* ---- Circuit-line decoration ---- */
.circuit-deco {
	position: absolute;
	width: 220px;
	height: 220px;
	color: var(--cyan);
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}

.circuit-deco--tr {
	top: 0;
	right: 0;
}

.circuit-deco--bl {
	bottom: 0;
	left: 0;
	color: var(--indigo);
	transform: rotate(180deg);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.lang-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	padding: 6px 12px;
}

.lang-toggle button {
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	padding: 0;
}

.lang-toggle .is-active {
	color: #fff;
}

.nav-toggle {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle svg {
	width: 20px;
	height: 20px;
	stroke: #fff;
}

.primary-nav {
	position: fixed;
	inset: 0;
	background: var(--ink);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 32px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
	z-index: 99;
}

.primary-nav.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-nav ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.primary-nav a {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(28px, 8vw, 40px);
	font-weight: 600;
	color: #fff;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.primary-nav .current-menu-item a {
	color: var(--lime);
}

.primary-nav__footer {
	margin-top: 32px;
	color: var(--muted);
	font-size: 14px;
}

.primary-nav__footer a {
	color: var(--lime);
	font-weight: 600;
}

body.nav-open {
	overflow: hidden;
}

/* ---- Hero ---- */
.hero {
	padding: 120px 0 64px;
	position: relative;
}

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

.hero--circuit {
	background: radial-gradient(circle at 50% 30%, #29296e 0%, #14163f 45%, #0b0e14 78%);
	overflow: hidden;
}

.circuit-field {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.circuit-trace {
	fill: none;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	opacity: 0;
	animation: sigma-circuit-draw 9.5s ease-in-out infinite;
}

.circuit-node {
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center;
	animation: sigma-circuit-node 9.5s ease-in-out infinite;
}

@keyframes sigma-circuit-draw {
	0% {
		stroke-dashoffset: 1;
		opacity: 0;
	}
	8% {
		opacity: 1;
	}
	40% {
		stroke-dashoffset: 0;
		opacity: 1;
	}
	65% {
		stroke-dashoffset: 0;
		opacity: 1;
	}
	85% {
		opacity: 0;
	}
	100% {
		stroke-dashoffset: 0;
		opacity: 0;
	}
}

@keyframes sigma-circuit-node {
	0%,
	38% {
		opacity: 0;
		transform: scale(0.4);
	}
	46% {
		opacity: 1;
		transform: scale(1.3);
	}
	60% {
		opacity: 1;
		transform: scale(1);
	}
	85% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: scale(0.4);
	}
}

@media (prefers-reduced-motion: reduce) {
	.circuit-trace,
	.circuit-node {
		animation: none;
		opacity: 0.5;
		stroke-dashoffset: 0;
	}
}

.hero__eyebrow-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--muted);
}

.hero h1 {
	font-size: clamp(34px, 9vw, 64px);
	color: #fff;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero__visual {
	margin-top: 40px;
	position: relative;
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.55;
	z-index: 0;
}

.orb--1 {
	width: 220px;
	height: 220px;
	background: var(--indigo);
	top: -40px;
	right: -40px;
}

.orb--2 {
	width: 180px;
	height: 180px;
	background: var(--cyan);
	bottom: -30px;
	left: -30px;
}

.hero-illustration {
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	padding: 40px 24px;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.hero-illustration .circuit-deco {
	width: 140px;
	height: 140px;
}

.hero-illustration__core {
	position: relative;
	z-index: 1;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: rgba(91, 95, 239, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-illustration__mark {
	width: 58px;
	height: 58px;
}

.hero-illustration__badge {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 6px;
	background: var(--ink-soft);
	border: 1px solid rgba(255, 255, 255, 0.12);
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	color: #fff;
	box-shadow: var(--shadow-soft);
	white-space: nowrap;
}

.hero-illustration__badge svg {
	width: 14px;
	height: 14px;
	stroke: var(--lime);
}

.hero-illustration__badge--1 {
	top: 20px;
	left: 20px;
}

.hero-illustration__badge--2 {
	bottom: 20px;
	right: 20px;
}

/* ---- Stat strip ---- */
.stat-strip {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	position: relative;
	z-index: 1;
}

.stat-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 20px;
	backdrop-filter: blur(10px);
}

.stat-card__value {
	font-family: var(--font-display);
	font-size: clamp(28px, 6vw, 40px);
	font-weight: 700;
	color: #fff;
}

.stat-card__label {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

/* ---- Bento grid ---- */
.bento {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.bento-card {
	background: var(--paper-soft);
	border: 1px solid #ecedf2;
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
	transform: translateY(-4px);
}

.bento-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--gradient-brand);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.bento-card__icon svg {
	width: 22px;
	height: 22px;
	stroke: #fff;
}

.bento-card h3 {
	font-size: 19px;
	margin-bottom: 8px;
}

.bento-card p {
	color: var(--muted-dark);
	font-size: 14.5px;
	margin: 0 0 14px;
}

.bento-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--indigo);
	transition: gap 0.2s ease;
}

.bento-card__link svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
}

.bento-card:hover .bento-card__link {
	gap: 10px;
}

/* ---- Content blocks (Servicios) ---- */
.content-block {
	display: grid;
	gap: 20px;
	align-items: center;
	padding: 32px 0;
	border-top: 1px solid #e7e8ee;
}

.content-block:first-of-type {
	border-top: none;
}

.content-block__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.content-block__icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--lime);
}

.content-block h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.content-block p {
	color: var(--muted-dark);
}

.content-block ul {
	margin-top: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.content-block ul li {
	display: flex;
	gap: 10px;
	font-size: 14.5px;
	color: var(--ink);
	align-items: flex-start;
}

.content-block ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--indigo);
	margin-top: 8px;
	flex-shrink: 0;
}

/* ---- Cards (Productos) ---- */
.card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.product-card {
	background: var(--ink);
	color: var(--paper);
	border-radius: var(--radius-lg);
	padding: 32px;
	position: relative;
	overflow: hidden;
}

.product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gradient-radial);
	pointer-events: none;
}

.product-card__inner {
	position: relative;
	z-index: 1;
}

.product-card h3 {
	font-size: 24px;
	color: #fff;
}

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

/* ---- Case study ---- */
.case-study {
	background: var(--paper-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	padding: 28px;
	border: 1px solid #ecedf2;
}

.case-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 20px;
}

.case-grid h4 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--indigo);
	margin-bottom: 8px;
}

.case-grid p {
	color: var(--muted-dark);
	font-size: 15px;
}

.case-stat {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	background: var(--ink);
	color: #fff;
	padding: 14px 20px;
	border-radius: 999px;
	margin-top: 16px;
	font-family: var(--font-display);
}

.case-stat strong {
	font-size: 22px;
	color: var(--lime);
}

/* ---- Office cards ---- */
.office-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.office-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 22px;
}

.office-card h4 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lime);
	margin-bottom: 8px;
}

.office-card p {
	color: var(--muted);
	font-size: 14.5px;
	margin: 0 0 6px;
}

.office-card a {
	color: #fff;
	font-weight: 600;
}

/* ---- Form ---- */
.form-field {
	margin-bottom: 16px;
}

.form-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--muted-dark);
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: var(--radius-sm);
	border: 1px solid #dcdee6;
	font-family: var(--font-body);
	font-size: 15px;
	background: #fff;
	color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
	outline: 2px solid var(--indigo);
	outline-offset: 1px;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	margin-bottom: 20px;
	font-size: 14.5px;
	font-weight: 600;
}

.form-notice--success {
	background: #e9ffd6;
	color: #3a6b00;
}

.form-notice--error {
	background: #ffe6e6;
	color: #9c1c1c;
}

/* ---- Consultation band ---- */
.consult-band {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.consult-band__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.consult-band__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(11, 14, 20, 0.92), rgba(11, 14, 20, 0.75));
}

.consult-band__content {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 56px 20px;
}

.consult-band__content h2 {
	font-size: clamp(28px, 6vw, 42px);
	max-width: 16ch;
}

.consult-band__content .lead {
	color: var(--muted);
	margin-bottom: 20px;
}

/* ---- Footer ---- */
.site-footer {
	background: var(--ink);
	color: var(--paper);
	padding: 56px 0 24px;
	position: relative;
	overflow: hidden;
}

.footer-top {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 60ch;
	margin: 0 auto 40px;
}

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

.footer-top p {
	color: var(--muted);
	font-size: 14.5px;
}

.footer-info-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info-item {
	text-align: center;
}

.footer-info-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.footer-info-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--cyan);
}

.footer-info-value {
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	margin: 0 0 4px;
}

.footer-info-value a {
	color: #fff;
}

.footer-info-label {
	color: var(--muted);
	font-size: 13px;
	margin: 0;
}

.footer-links-row {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 22px;
	margin-bottom: 24px;
}

.footer-links-row a {
	color: var(--muted);
	font-size: 14px;
}

.footer-links-row a:hover {
	color: #fff;
}

.footer-social {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
}

.footer-bottom {
	position: relative;
	z-index: 1;
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 13px;
	color: var(--muted-dark);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	text-align: center;
}

/* ---- Floating contact button ---- */
.float-cta {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 90;
	background: var(--lime);
	color: var(--ink);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.4);
}

.float-cta svg {
	width: 24px;
	height: 24px;
	stroke: var(--ink);
}

/* ---- Reveal animation ---- */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---- 404 ---- */
.error-page {
	min-height: 60vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 20px;
}

.error-page .code {
	font-family: var(--font-display);
	font-size: clamp(70px, 20vw, 140px);
	font-weight: 700;
	line-height: 1;
}

/* ==========================================================================
   Tablet — 768px+
   ========================================================================== */
@media (min-width: 768px) {
	.section {
		padding: 88px 0;
	}

	.hero {
		padding: 148px 0 96px;
	}

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

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

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

	.footer-info-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

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

	.content-block {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   Desktop — 1200px+
   ========================================================================== */
@media (min-width: 1200px) {
	.nav-toggle {
		display: none;
	}

	.primary-nav {
		position: static;
		background: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0;
		flex-direction: row;
	}

	.primary-nav ul {
		flex-direction: row;
		align-items: center;
		gap: 28px;
	}

	.primary-nav a {
		font-size: 14.5px;
		font-weight: 600;
		font-family: var(--font-body);
		padding: 0;
		border-bottom: none;
		color: rgba(255, 255, 255, 0.75);
		transition: color 0.2s ease;
	}

	.primary-nav a:hover,
	.primary-nav .current-menu-item a {
		color: #fff;
	}

	.primary-nav__footer {
		display: none;
	}

	.header-cta {
		display: inline-flex;
	}

	.header-topbar {
		display: block;
		background: #05070c;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
		max-height: 44px;
		overflow: hidden;
		transition: max-height 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
	}

	.site-header.is-scrolled .header-topbar {
		max-height: 0;
		opacity: 0;
	}

	.header-topbar__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
		padding: 10px var(--gutter);
		font-size: 12.5px;
		color: var(--muted);
	}

	.topbar-left,
	.topbar-right {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.header-topbar a,
	.topbar-left > span {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		color: var(--muted);
		transition: color 0.2s ease;
	}

	.header-topbar a:hover {
		color: #fff;
	}

	.header-topbar svg {
		width: 13px;
		height: 13px;
		stroke: currentColor;
		flex-shrink: 0;
	}

	.topbar-sep {
		width: 1px;
		height: 12px;
		background: rgba(255, 255, 255, 0.15);
	}

	.topbar-right a {
		color: var(--lime);
		font-weight: 600;
	}

	.topbar-social {
		display: flex;
		align-items: center;
		gap: 10px;
		padding-left: 16px;
		border-left: 1px solid rgba(255, 255, 255, 0.15);
	}

	.topbar-social svg {
		width: 12px;
		height: 12px;
		margin-right: 0;
		stroke: var(--muted);
	}

	.topbar-social a:hover svg {
		stroke: #fff;
	}

	.header-phone {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #fff;
		padding-right: 16px;
		border-right: 1px solid rgba(255, 255, 255, 0.15);
	}

	.header-phone svg {
		width: 20px;
		height: 20px;
		stroke: var(--cyan);
		flex-shrink: 0;
	}

	.header-phone span {
		display: flex;
		flex-direction: column;
		font-size: 14px;
		font-weight: 700;
		line-height: 1.3;
	}

	.header-phone small {
		font-size: 11px;
		font-weight: 500;
		color: var(--muted);
	}

	.hero__grid {
		display: grid;
		grid-template-columns: 1.1fr 0.9fr;
		gap: 48px;
		align-items: center;
	}

	.bento-card:hover .bento-card__icon {
		transform: scale(1.08);
	}
}
