:root {
	--bg: #f5f7fb;
	--surface: #ffffff;
	--surface-alt: #eef3fb;
	--text: #152033;
	--muted: #5d6b82;
	--line: #d9e2f0;
	--primary: #2e5bff;
	--primary-dark: #203fb2;
	--accent: #19a974;
	--shadow: 0 18px 50px rgba(18, 31, 61, 0.12);
	--radius: 24px;
	--radius-sm: 16px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(circle at top left, rgba(46, 91, 255, 0.08), transparent 28%),
		radial-gradient(circle at bottom right, rgba(25, 169, 116, 0.08), transparent 24%);
	z-index: -1;
}

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

iframe {
	width: 100%;
	border: 0;
}

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

a:hover {
	color: var(--primary-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(25, 169, 116, 0.35);
	outline-offset: 3px;
}

main,
section,
article,
nav {
	scroll-margin-top: 6rem;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -4rem;
	padding: 0.9rem 1.1rem;
	border-radius: 14px;
	background: #101826;
	color: #fff;
	font-weight: 700;
	z-index: 120;
	box-shadow: var(--shadow);
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 1rem;
	color: #fff;
}

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

h1,
h2,
h3,
h4 {
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

p,
ul,
ol {
	margin: 0 0 1rem;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.topbar {
	background: #101826;
	color: rgba(255, 255, 255, 0.86);
}

.topbar-inner,
.topbar-links,
.social-links,
.contact-actions,
.social-proof-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.topbar-inner {
	justify-content: space-between;
	min-height: 44px;
	font-size: 0.92rem;
}

.topbar a,
.social-links a {
	color: #fff;
}

.social-links a {
	font-weight: 700;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(18px);
	background: rgba(245, 247, 251, 0.86);
	border-bottom: 1px solid rgba(217, 226, 240, 0.9);
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 30px rgba(18, 31, 61, 0.08);
	border-color: rgba(217, 226, 240, 1);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: var(--text);
	font-weight: 800;
	font-size: 1.1rem;
}

.brand img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 10px 20px rgba(25, 50, 90, 0.18);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.site-nav a {
	color: var(--text);
	font-weight: 600;
	padding: 0.5rem 0;
	position: relative;
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.15rem;
	width: 100%;
	height: 2px;
	background: var(--primary);
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	padding: 0;
}

.menu-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--text);
	margin: 5px 0;
}

.hero,
.page-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
}

.hero {
	min-height: 88vh;
	display: grid;
	align-items: center;
}

.hero-bg,
.page-hero {
	background-size: cover;
	background-position: center;
}

.hero-bg {
	position: absolute;
	inset: 0;
}

.hero-content,
.page-hero .container {
	position: relative;
	z-index: 1;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
	gap: 2rem;
	padding: 6rem 0;
}

.hero h1,
.page-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	max-width: 12ch;
}

.page-hero {
	padding: 6rem 0 4rem;
}

.page-hero p,
.hero-text {
	color: rgba(255, 255, 255, 0.92);
	max-width: 62ch;
}

.eyebrow {
	display: inline-flex;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
	font-size: 0.78rem;
	color: inherit;
	opacity: 0.92;
}

.hero-actions,
.cta-strip-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 1.5rem 0;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.9rem 1.35rem;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--primary);
	color: #fff;
	box-shadow: 0 12px 30px rgba(46, 91, 255, 0.28);
}

.button-primary:hover {
	color: #fff;
	background: var(--primary-dark);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff;
}

.button-secondary:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
}

.button-social {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.22);
	color: #fff;
}

.button-whatsapp {
	background: #25d366;
	border-color: #25d366;
	color: #fff;
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.button-whatsapp:hover {
	background: #1da851;
	color: #fff;
}

.section .button-social,
.contact-card .button-social {
	background: var(--surface-alt);
	border: 1px solid var(--line);
	color: var(--text);
}

.button-block {
	width: 100%;
}

.hero-points,
.check-list,
.contact-list,
.site-footer ul {
	padding: 0;
	list-style: none;
}

.hero-points li,
.check-list li,
.contact-list li,
.site-footer li {
	position: relative;
	padding-left: 1.4rem;
	margin-bottom: 0.75rem;
}

.hero-points li::before,
.check-list li::before,
.contact-list li::before,
.site-footer li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--accent);
	font-weight: 800;
}

.lead-card,
.contact-card,
.detail-card,
.service-card,
.project-card,
.feature-panel,
.cta-box {
	background: rgba(255, 255, 255, 0.96);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.lead-card,
.contact-card,
.cta-box {
	padding: 1.6rem;
}

.lead-card-label {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
	font-weight: 800;
	color: var(--primary);
	margin-bottom: 0.4rem;
}

form,
.inline-form {
	display: grid;
	gap: 0.9rem;
}

label {
	display: grid;
	gap: 0.4rem;
	font-weight: 600;
	color: var(--text);
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 0.9rem 1rem;
	font: inherit;
	color: var(--text);
	background: #fff;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid rgba(46, 91, 255, 0.22);
	border-color: var(--primary);
}

.checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-weight: 500;
}

.checkbox input {
	width: auto;
	margin-top: 0.2rem;
}

.form-feedback {
	min-height: 1.25rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.form-feedback.is-error {
	color: #b42318;
}

.section {
	padding: 5rem 0;
}

.breadcrumb-wrap {
	padding: 1rem 0 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	padding: 0;
	margin: 0;
	list-style: none;
	color: var(--muted);
	font-size: 0.94rem;
}

.breadcrumb-list li {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.breadcrumb-list li:not(:last-child)::after {
	content: "/";
	color: rgba(93, 107, 130, 0.7);
}

.breadcrumb-list a {
	color: var(--muted);
	font-weight: 600;
}

.breadcrumb-current {
	color: var(--text);
	font-weight: 700;
}

.section-alt {
	background: var(--surface-alt);
}

.section-head {
	margin-bottom: 2rem;
}

.split-head {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 420px);
	gap: 2rem;
	align-items: end;
}

.card-grid,
.project-grid,
.detail-grid,
.media-grid,
.social-grid {
	display: grid;
	gap: 1.25rem;
}

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

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

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

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

.conversion-strip {
	padding-top: 0;
}

.conversion-strip-grid,
.faq-list {
	display: grid;
	gap: 1.25rem;
}

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

.conversion-card,
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	padding: 1.4rem;
}

.conversion-card strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	margin-bottom: 0.85rem;
}

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

.faq-item h3 {
	font-size: 1.05rem;
}

.location-link-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.location-link-grid-compact {
	margin-top: 1.5rem;
}

.location-link-card {
	display: grid;
	gap: 0.4rem;
	padding: 1.35rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	color: var(--text);
}

.location-link-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 0.35rem;
}

.location-link-card strong {
	font-size: 1.1rem;
}

.location-link-card span {
	color: var(--muted);
}

.location-page-grid {
	display: grid;
	grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
	gap: 2rem;
	align-items: center;
}

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

.service-card,
.project-card {
	overflow: hidden;
}

.service-card-link {
	display: block;
	color: var(--text);
}

.service-card-link:hover {
	color: var(--text);
}

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

.service-card img,
.project-card img,
.image-card,
.about-image {
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.service-card div,
.project-card div,
.detail-card {
	padding: 1.35rem;
}

.feature-grid,
.about-layout,
.contact-layout,
.cta-strip-inner {
	display: grid;
	gap: 2rem;
}

.feature-grid,
.about-layout {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	align-items: center;
}

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

.stats-panel {
	padding: 1.75rem;
}

.stats-panel > div {
	padding: 1rem 0;
	border-bottom: 1px solid var(--line);
}

.stats-panel > div:last-child {
	border-bottom: 0;
}

.stats-panel strong {
	display: block;
	font-size: 1.35rem;
}

.video-card,
.image-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fff;
}

.image-card {
	border: 1px solid rgba(217, 226, 240, 0.9);
}

.video-card iframe {
	aspect-ratio: 16 / 9;
	height: auto;
}

.hs-consent-banner {
	position: fixed;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 60;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: rgba(16, 24, 38, 0.95);
	color: #fff;
	box-shadow: var(--shadow);
}

.hs-consent-banner p {
	margin: 0;
	font-size: 0.95rem;
}

.hs-consent-banner a {
	color: #fff;
	text-decoration: underline;
}

.hs-consent-actions {
	display: inline-flex;
	gap: 0.5rem;
}

.hs-consent-btn {
	border: 1px solid transparent;
	border-radius: 999px;
	padding: 0.45rem 0.9rem;
	font-weight: 700;
	cursor: pointer;
}

.hs-consent-accept {
	background: var(--accent);
	color: #fff;
}

.hs-consent-decline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.article-section {
	background: var(--surface);
}

.prose {
	max-width: 860px;
}

.prose h2 {
	margin-top: 2rem;
}

.prose h3 {
	margin-top: 1.25rem;
}

.legal-prose {
	max-width: 920px;
}

.cta-strip {
	padding: 3rem 0;
}

.social-card {
	padding: 1.75rem;
}

.social-cta-center {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.whatsapp-float {
	position: fixed;
	right: 1.2rem;
	bottom: calc(1.2rem + var(--hs-consent-offset, 0px));
	z-index: 60;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.9rem 1.1rem;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	font-weight: 800;
	box-shadow: 0 18px 40px rgba(17, 24, 39, 0.25);
}

.whatsapp-float:hover {
	background: #1da851;
	color: #fff;
}

.whatsapp-float-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	font-size: 1rem;
}

.cta-strip-inner,
.cta-box {
	background: linear-gradient(135deg, #15264b, #2c4aa3);
	color: #fff;
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
}

.cta-box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
	gap: 1.5rem;
}

.cta-box label,
.cta-box .checkbox,
.cta-box .form-feedback {
	color: #fff;
}

.cta-box input,
.cta-box textarea {
	background: rgba(255, 255, 255, 0.95);
}

.site-footer {
	background: #101826;
	color: rgba(255, 255, 255, 0.82);
	padding: 3rem 0 1.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 1.5rem;
}

.site-footer h3,
.site-footer h4,
.site-footer a {
	color: #fff;
}

.footer-bottom {
	padding-top: 1.25rem;
	margin-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.hs-cookie-settings {
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: #fff;
	border-radius: 999px;
	padding: 0.35rem 0.8rem;
	font-weight: 700;
	cursor: pointer;
}

.hs-cookie-settings:hover {
	background: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.legal-nav {
	gap: 1rem;
}

@media (max-width: 980px) {
	.hero-grid,
	.split-head,
	.feature-grid,
	.about-layout,
	.contact-layout,
	.cta-box,
	.footer-grid,
	.services-grid,
	.detail-grid,
	.project-grid,
	.media-grid,
	.media-grid-tight,
	.social-grid,
	.location-link-grid,
	.location-page-grid,
	.conversion-strip-grid,
	.faq-list {
		grid-template-columns: 1fr;
	}

	.menu-toggle {
		display: inline-block;
	}

	.site-nav {
		position: absolute;
		inset: calc(100% + 1px) 1rem auto 1rem;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid var(--line);
		border-radius: 18px;
		padding: 1rem;
		box-shadow: var(--shadow);
	}

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

	.hero {
		min-height: auto;
	}

	.hero-grid {
		padding: 5rem 0 3rem;
	}
}

@media (max-width: 640px) {
	.topbar-inner,
	.topbar-links,
	.social-links,
	.contact-actions,
	.social-proof-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.whatsapp-float {
		right: 0.8rem;
		bottom: calc(0.8rem + var(--hs-consent-offset, 0px));
		padding: 0.85rem 1rem;
	}

	.whatsapp-float-text {
		display: none;
	}

	.container {
		width: min(calc(100% - 1.25rem), var(--container));
	}

	.section {
		padding: 4rem 0;
	}

	.hero h1,
	.page-hero h1 {
		max-width: none;
	}

	.lead-card,
	.contact-card,
	.detail-card,
	.service-card div,
	.project-card div,
	.cta-strip-inner,
	.cta-box {
		padding: 1.25rem;
	}
}
