@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&display=swap&subset=latin-ext");

:root {
	--bg: #0b0b0d;
	--panel: #141416;
	--panel-2: #1c1c1f;
	--paper: #f7f4ee;
	--paper-2: #ece7dc;
	--ink: #151516;
	--muted: #6d6a63;
	--line: rgba(255, 255, 255, 0.12);
	--line-dark: rgba(21, 21, 22, 0.12);
	--orange: #ff7a00;
	--orange-2: #ff9a2b;
	--teal: #4dd8c5;
	--blue: #70a8ff;
	--max: 1180px;
	--radius: 2px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
	color: var(--ink);
	background: var(--paper);
	font-size: 16px;
	line-height: 1.6;
}

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

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

p {
	margin: 0;
}

.site-shell {
	min-height: 100vh;
	background: var(--paper);
}

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

.topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(11, 11, 13, 0.86);
	backdrop-filter: blur(16px);
}

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

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

.brand img {
	width: 258px;
	height: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 7px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.045);
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.9rem;
	font-weight: 700;
}

.nav-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 15px;
	border-radius: var(--radius);
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.language {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #fff;
}

.language span {
	color: var(--orange);
}

.nav-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 122, 0, 0.46);
	border-radius: var(--radius);
	background: rgba(255, 122, 0, 0.12);
	color: #fff;
	font-weight: 800;
}

.menu-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0;
	position: relative;
	cursor: pointer;
}

.menu-toggle:before,
.menu-toggle:after,
.menu-toggle span {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.menu-toggle:before {
	top: 16px;
}

.menu-toggle span {
	top: 23px;
}

.menu-toggle:after {
	top: 30px;
}

.menu-toggle[aria-expanded="true"]:before {
	top: 23px;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"]:after {
	top: 23px;
	transform: rotate(-45deg);
}

.hero {
	position: relative;
	padding: 72px 0 112px;
	color: #fff;
	background: var(--bg);
	overflow: hidden;
}

.hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 54px 54px;
	mask-image: linear-gradient(180deg, #000, transparent 86%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
	gap: 58px;
	align-items: center;
}

.subpage-hero {
	padding: 72px 0;
}

.subpage-hero h1 {
	font-size: clamp(2.45rem, 5.2vw, 4.9rem);
}

.subpage-hero .hero-panel {
	margin-top: 8px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.eyebrow:before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--orange);
}

h1,
h2,
h3 {
	margin: 0;
	line-height: 1.03;
	letter-spacing: 0;
}

h1 {
	max-width: 780px;
	font-size: clamp(2.6rem, 5.7vw, 5.15rem);
	font-weight: 900;
}

.hero-text {
	max-width: 650px;
	margin-top: 26px;
	color: rgba(255, 255, 255, 0.74);
	font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
	padding-bottom: 6px;
	position: relative;
	z-index: 2;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: var(--radius);
	border: 1px solid transparent;
	font-weight: 900;
	white-space: nowrap;
}

.button.primary {
	background: linear-gradient(135deg, var(--orange), var(--orange-2));
	color: #111;
}

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

.hero-panel {
	position: relative;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		var(--panel);
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.hero-diagnostic {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 30px;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	background: rgba(5, 5, 6, 0.54);
}

.hero-diagnostic span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.8rem;
	font-weight: 800;
	text-align: center;
}

.hero-diagnostic b {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 10px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, var(--orange), var(--orange-2));
	color: #111;
	font-size: 0.84rem;
	text-align: center;
}

.signal-list {
	display: grid;
	gap: 12px;
}

.signal {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.74);
}

.signal strong {
	color: #fff;
	font-size: 1.05rem;
}

.metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 22px;
}

.metric {
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
}

.metric b {
	display: block;
	color: #fff;
	font-size: 1.65rem;
	line-height: 1;
}

.metric span {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.86rem;
}

.section {
	padding: 88px 0;
	background: var(--paper);
}

.section.dark {
	background: var(--bg);
	color: #fff;
}

.section-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 34px;
}

.section-header h2 {
	max-width: 700px;
	font-size: clamp(2rem, 3.8vw, 3.8rem);
	font-weight: 900;
}

.section-header p {
	max-width: 410px;
	color: var(--muted);
}

.dark .section-header p {
	color: rgba(255, 255, 255, 0.66);
}

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

.service-card {
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	background: #fffdfa;
	box-shadow: 0 18px 60px rgba(24, 21, 16, 0.08);
}

.service-card {
	padding: 24px;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	border-radius: var(--radius);
	background: #111;
	color: var(--orange);
	font-weight: 900;
}

.service-card h3 {
	font-size: 1.25rem;
	letter-spacing: -0.01em;
}

.service-card p {
	margin-top: 12px;
	color: var(--muted);
}

.process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	counter-reset: step;
}

.process-item {
	position: relative;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	counter-increment: step;
}

.process-item:before {
	content: "0" counter(step);
	display: block;
	margin-bottom: 38px;
	color: var(--orange);
	font-weight: 900;
}

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

.process-item p {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.94rem;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 54px;
	align-items: start;
}

.text-block h1,
.text-block h2 {
	font-size: clamp(2.2rem, 4.4vw, 4.2rem);
	font-weight: 900;
}

.subpage-hero .text-block h1 {
	font-size: clamp(2.1rem, 3.7vw, 3.65rem);
	max-width: 680px;
}

.text-block h3 {
	margin-top: 34px;
	font-size: 1.35rem;
}

.text-block p {
	margin-top: 14px;
	color: var(--muted);
}

.feature-list {
	display: grid;
	gap: 14px;
}

.feature {
	padding: 22px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	background: #fffdfa;
}

.feature h3 {
	font-size: 1.08rem;
}

.feature p {
	margin-top: 8px;
	color: var(--muted);
}

.contact-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
	gap: 28px;
	align-items: start;
}

.form-card,
.details-card {
	padding: 28px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	background: #fffdfa;
	box-shadow: 0 18px 60px rgba(24, 21, 16, 0.08);
}

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

.field {
	display: grid;
	gap: 8px;
}

.field label {
	font-size: 0.86rem;
	font-weight: 900;
	color: var(--ink);
}

.field input,
.field textarea {
	width: 100%;
	border: 1px solid rgba(21, 21, 22, 0.16);
	border-radius: var(--radius);
	background: #f7f4ee;
	padding: 14px 15px;
	font: inherit;
	color: var(--ink);
	outline: none;
}

.field textarea {
	min-height: 170px;
	resize: vertical;
}

.field input:focus,
.field textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.honeypot {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

.form-note {
	margin-top: 14px;
	color: var(--muted);
	font-size: 0.92rem;
}

.contact-card {
	padding: 24px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	background: #fffdfa;
}

.contact-card strong {
	display: block;
	margin-bottom: 10px;
	font-size: 0.86rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.cta-band {
	padding: 42px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #171718, #25211c);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.cta-band h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
	font-weight: 900;
}

.cta-band .button {
	flex: 0 0 auto;
	min-width: 156px;
}

.legal-content {
	max-width: 900px;
}

.legal-content h1 {
	font-size: clamp(2.4rem, 5vw, 4.8rem);
	color: #fff;
}

.legal-content h2,
.legal-content h3 {
	margin-top: 36px;
	font-size: 1.35rem;
	letter-spacing: 0;
}

.legal-content p {
	margin-top: 12px;
	color: var(--muted);
}

.footer {
	padding: 54px 0;
	background: #050506;
	color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 34px;
}

.footer img {
	width: 220px;
	margin-bottom: 20px;
}

.footer h3 {
	margin-bottom: 14px;
	color: #fff;
	font-size: 0.96rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.footer a {
	display: block;
	margin-top: 0;
	line-height: 1.6;
}

.footer p {
	line-height: 1.6;
}

.footer-bottom {
	margin-top: 42px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	font-size: 0.92rem;
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	background: rgba(11, 11, 13, 0.92);
	color: #fff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
	font-weight: 900;
	font-size: 0;
}

.whatsapp-float:before {
	content: "";
	width: 31px;
	height: 31px;
	background: #fff;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.02 3.2c-7.06 0-12.8 5.72-12.8 12.76 0 2.25.59 4.45 1.72 6.38L3.1 29l6.82-1.79a12.77 12.77 0 0 0 6.1 1.55h.01c7.06 0 12.8-5.72 12.8-12.76S23.08 3.2 16.02 3.2Zm0 23.38h-.01c-1.93 0-3.82-.52-5.48-1.5l-.39-.23-4.05 1.06 1.08-3.95-.25-.4a10.56 10.56 0 0 1-1.62-5.6c0-5.84 4.8-10.59 10.71-10.59 2.86 0 5.55 1.11 7.57 3.11a10.49 10.49 0 0 1 3.14 7.52c0 5.84-4.8 10.58-10.7 10.58Zm5.87-7.92c-.32-.16-1.9-.93-2.19-1.04-.29-.11-.5-.16-.72.16-.21.32-.82 1.04-1.01 1.25-.19.21-.37.24-.69.08-.32-.16-1.36-.5-2.6-1.6-.96-.86-1.61-1.91-1.8-2.23-.19-.32-.02-.49.14-.65.15-.15.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.73-.98-2.37-.26-.62-.52-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.09-1.12 2.66s1.15 3.09 1.31 3.3c.16.21 2.27 3.45 5.51 4.84.77.33 1.37.53 1.84.68.77.24 1.48.21 2.04.13.62-.09 1.9-.77 2.17-1.52.27-.75.27-1.39.19-1.52-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

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

	.nav {
		min-height: 76px;
	}

	.brand img {
		width: 216px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.nav-links {
		position: fixed;
		top: 76px;
		left: 14px;
		right: 14px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: var(--radius);
		background:
			linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
			rgba(11, 11, 13, 0.98);
		box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
		backdrop-filter: blur(18px);
	}

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

	.nav-links a {
		justify-content: flex-start;
		min-height: 48px;
		padding: 0 14px;
	}

	.nav-cta {
		margin-top: 8px;
		justify-content: center !important;
	}

	.hero {
		padding: 46px 0 72px;
	}

	.subpage-hero {
		padding: 58px 0 46px;
	}

	.hero-grid,
	.split,
	.contact-panel,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		gap: 34px;
	}

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

	.hero-panel {
		padding: 22px;
	}

	.hero-diagnostic {
		grid-template-columns: 1fr;
	}

	.metrics,
	.service-grid,
	.process {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 62px 0;
	}

	.section-header {
		display: block;
	}

	.section-header p {
		margin-top: 16px;
	}

	.cta-band {
		display: block;
		padding: 28px;
	}

	.cta-band .button {
		margin-top: 20px;
	}
}

@media (max-width: 520px) {
	h1 {
		font-size: clamp(2.15rem, 10.8vw, 3.35rem);
	}

	.brand img {
		width: 188px;
	}

	.hero-actions {
		display: grid;
	}

	.button {
		width: 100%;
	}

	.hero-panel,
	.form-card,
	.details-card,
	.cta-band {
		padding: 20px;
	}

	.whatsapp-float {
		display: none;
	}
}
