:root {
	--color-bg: #090c0e;
	--color-bg-soft: #101519;
	--color-panel: #151b20;
	--color-panel-light: #1a2228;
	--color-text: #f6f7f8;
	--color-muted: #a8b0b6;
	--color-line: rgba(255, 255, 255, 0.11);
	--color-orange: #ff6a00;
	--color-orange-light: #ff8a1f;
	--color-green: #25d366;
	--color-error: #ff6b6b;
	--color-success: #62d68b;
	--font-display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
	--font-body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--shell: 1200px;
	--radius-sm: 12px;
	--radius-md: 22px;
	--radius-lg: 34px;
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

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

body.menu-open {
	overflow: hidden;
}

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

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

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

::selection {
	background: var(--color-orange);
	color: #fff;
}

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

.screen-reader-text,
.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 10px;
	left: 10px;
	padding: 10px 16px;
	border-radius: 8px;
	background: #fff;
	color: #000;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--color-orange-light);
	outline-offset: 3px;
}

.site-header {
	position: fixed;
	z-index: 1000;
	inset: 0 0 auto;
	height: 82px;
	border-bottom: 1px solid transparent;
	transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
	border-color: var(--color-line);
	background: rgba(9, 12, 14, 0.9);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 34px;
}

.brand,
.custom-logo-link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 11px;
}

.brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 106, 0, 0.55);
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.04));
	color: var(--color-orange);
	transform: rotate(-4deg);
}

.brand__mark svg {
	width: 26px;
	fill: currentColor;
}

.brand__name {
	font-family: var(--font-display);
	font-size: 25px;
	font-weight: 900;
	letter-spacing: -1px;
	text-transform: uppercase;
}

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

.custom-logo {
	width: auto;
	max-width: 210px;
	max-height: 56px;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation ul,
.site-footer .menu {
	display: flex;
	align-items: center;
	gap: 27px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	position: relative;
	display: block;
	color: #d8dcdf;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--color-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
	transform: scaleX(1);
}

.header-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border: 1px solid rgba(37, 211, 102, 0.45);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	transition: background 180ms ease, transform 180ms ease;
}

.header-whatsapp:hover {
	background: rgba(37, 211, 102, 0.12);
	transform: translateY(-1px);
}

.header-whatsapp svg {
	width: 20px;
	fill: var(--color-green);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 148px 0 0;
	background:
		radial-gradient(circle at 72% 32%, rgba(255, 106, 0, 0.11), transparent 32%),
		linear-gradient(180deg, #090c0e, #0c1013);
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
	background-size: 52px 52px;
	content: "";
	-webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
	pointer-events: none;
}

.hero__glow {
	position: absolute;
	top: 90px;
	right: -180px;
	width: 530px;
	height: 530px;
	border: 1px solid rgba(255, 106, 0, 0.14);
	border-radius: 50%;
	box-shadow:
		0 0 0 90px rgba(255, 106, 0, 0.025),
		0 0 0 180px rgba(255, 106, 0, 0.015);
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.86fr);
	align-items: center;
	gap: 74px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 17px;
	color: var(--color-orange-light);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow > span {
	width: 31px;
	height: 2px;
	background: currentColor;
}

.hero h1,
.section h2,
.page-header h1,
.error-page h1 {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 700px;
	font-size: clamp(57px, 6.1vw, 91px);
}

.hero h1 span {
	display: block;
	color: var(--color-orange);
}

.hero__lead {
	max-width: 610px;
	margin: 29px 0 0;
	color: #c7cdd1;
	font-size: clamp(17px, 1.45vw, 20px);
	line-height: 1.65;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 36px;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 21px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.text-link svg {
	width: 21px;
	fill: currentColor;
}

.button--primary {
	background: linear-gradient(135deg, var(--color-orange), var(--color-orange-light));
	box-shadow: 0 13px 32px rgba(255, 106, 0, 0.22);
	color: #fff;
}

.button--primary:hover {
	box-shadow: 0 17px 38px rgba(255, 106, 0, 0.32);
}

.button--whatsapp {
	border-color: rgba(37, 211, 102, 0.45);
	background: rgba(37, 211, 102, 0.09);
	color: #fff;
}

.button--whatsapp svg {
	fill: var(--color-green);
}

.button--outline {
	border-color: rgba(255, 255, 255, 0.3);
	background: transparent;
	color: #fff;
}

.button--outline:hover {
	border-color: var(--color-orange);
	background: rgba(255, 106, 0, 0.08);
}

.hero__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	padding: 0;
	margin: 36px 0 0;
	color: #b7bec3;
	font-size: 12px;
	font-weight: 700;
	list-style: none;
}

.hero__trust li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero__trust svg {
	width: 17px;
	fill: var(--color-orange);
}

.hero__visual {
	position: relative;
	min-height: 610px;
}

.hero__image-frame {
	position: absolute;
	inset: 0 23px 0 28px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 230px 230px 34px 34px;
	background: #181c1f;
	box-shadow: var(--shadow);
}

.hero__image-frame::before {
	position: absolute;
	z-index: 2;
	inset: 0;
	border: 1px solid rgba(255, 106, 0, 0.36);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 28%;
}

.hero__image-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(5, 7, 8, 0.94) 0, rgba(5, 7, 8, 0.16) 37%, transparent 62%),
		linear-gradient(90deg, rgba(10, 13, 15, 0.1), transparent);
}

.hero__nameplate {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 27px 35px 30px;
}

.hero__nameplate strong,
.hero__nameplate span {
	display: block;
}

.hero__nameplate strong {
	font-family: var(--font-display);
	font-size: 34px;
	line-height: 1;
	text-transform: uppercase;
}

.hero__nameplate span {
	margin-top: 5px;
	color: #b8c0c5;
	font-size: 13px;
	font-weight: 700;
}

.hero__badge {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	border: 1px solid rgba(255, 106, 0, 0.52);
	background: rgba(13, 17, 19, 0.93);
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.hero__badge--experience {
	top: 72px;
	left: -25px;
	flex-direction: column;
	width: 112px;
	height: 112px;
	justify-content: center;
	border-radius: 50%;
	text-align: center;
}

.hero__badge--experience strong {
	color: var(--color-orange);
	font-family: var(--font-display);
	font-size: 32px;
	line-height: 1;
}

.hero__badge--experience span {
	width: 65px;
	margin-top: 4px;
	color: #ced3d6;
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero__badge--location {
	right: -20px;
	bottom: 78px;
	gap: 11px;
	max-width: 185px;
	padding: 14px 17px;
	border-radius: 13px;
}

.hero__badge--location svg {
	flex: 0 0 auto;
	width: 26px;
	fill: var(--color-orange);
}

.hero__badge--location span {
	color: #b7bec3;
	font-size: 11px;
	line-height: 1.3;
}

.hero__badge--location strong {
	display: block;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
}

.hero__stats {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 68px;
	border: 1px solid var(--color-line);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	background: rgba(19, 25, 29, 0.9);
}

.hero__stats > div {
	display: flex;
	min-height: 104px;
	flex-direction: column;
	justify-content: center;
	padding: 20px 30px;
	border-right: 1px solid var(--color-line);
}

.hero__stats > div:last-child {
	border-right: 0;
}

.hero__stats strong {
	color: var(--color-orange);
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1.05;
	text-transform: uppercase;
}

.hero__stats span {
	margin-top: 7px;
	color: #aeb6bb;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section {
	position: relative;
	padding: 112px 0;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 52px;
}

.section-heading--center {
	display: block;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading h2,
.about h2,
.coverage h2,
.faq h2,
.contact h2,
.technical-support h2 {
	font-size: clamp(41px, 4.7vw, 65px);
}

.section-heading > p,
.faq__grid > div:first-child > p:last-child,
.coverage__grid > div:first-child > p,
.contact__aside > p {
	margin: 0;
	color: var(--color-muted);
	font-size: 17px;
}

.services {
	background: #0e1215;
}

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

.service-card {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	padding: 36px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 48%),
		var(--color-panel);
	transition: border-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
	border-color: rgba(255, 106, 0, 0.35);
	transform: translateY(-3px);
}

.service-card--featured {
	background:
		radial-gradient(circle at 100% 0, rgba(255, 106, 0, 0.16), transparent 42%),
		var(--color-panel);
}

.service-card__icon {
	display: grid;
	width: 54px;
	height: 54px;
	place-items: center;
	border: 1px solid rgba(255, 106, 0, 0.38);
	border-radius: 13px;
	background: rgba(255, 106, 0, 0.08);
	color: var(--color-orange);
}

.service-card__icon svg {
	width: 29px;
	fill: currentColor;
}

.service-card__number {
	position: absolute;
	top: 24px;
	right: 30px;
	margin: 0;
	color: rgba(255, 255, 255, 0.08);
	font-family: var(--font-display);
	font-size: 62px;
	font-weight: 900;
	line-height: 1;
}

.service-card h3 {
	margin: 27px 0 10px;
	font-family: var(--font-display);
	font-size: 30px;
	line-height: 1.1;
	text-transform: uppercase;
}

.service-card > p:not(.service-card__number) {
	max-width: 555px;
	margin: 0;
	color: var(--color-muted);
}

.check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 24px;
	padding: 23px 0 0;
	margin: 24px 0 0;
	border-top: 1px solid var(--color-line);
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: #d1d6d9;
	font-size: 13px;
}

.check-list svg {
	flex: 0 0 auto;
	width: 17px;
	margin-top: 3px;
	fill: var(--color-orange);
}

.about {
	overflow: hidden;
	background:
		linear-gradient(90deg, #090c0e 0%, #090c0e 50%, #0d1114 50%, #0d1114 100%);
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1fr);
	align-items: center;
	gap: 96px;
}

.about__poster {
	position: relative;
}

.about__poster-frame {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 106, 0, 0.35);
	border-radius: 28px;
	box-shadow: var(--shadow);
	transform: rotate(-1.5deg);
}

.about__poster-frame::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.about__seal {
	position: absolute;
	right: -42px;
	bottom: 35px;
	display: flex;
	width: 140px;
	height: 140px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 7px solid #0b0f11;
	border-radius: 50%;
	background: var(--color-orange);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
	color: #fff;
	text-align: center;
	transform: rotate(7deg);
}

.about__seal svg {
	width: 31px;
	margin-bottom: 5px;
	fill: currentColor;
}

.about__seal span {
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.about__lead {
	margin: 28px 0 0;
	color: #c1c8cc;
	font-size: 18px;
}

.about__principles {
	display: grid;
	gap: 0;
	margin: 37px 0;
	border-top: 1px solid var(--color-line);
}

.about__principles > div {
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 17px;
	padding: 20px 0;
	border-bottom: 1px solid var(--color-line);
}

.about__principles > div > strong {
	color: var(--color-orange);
	font-family: var(--font-display);
	font-size: 20px;
}

.about__principles span {
	color: var(--color-muted);
	font-size: 14px;
}

.about__principles b {
	display: block;
	margin-bottom: 2px;
	color: #fff;
	font-size: 15px;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border-bottom: 1px solid rgba(255, 106, 0, 0.55);
	color: var(--color-orange-light);
	font-weight: 900;
}

.process {
	background: var(--color-orange);
	color: #111;
}

.process .eyebrow {
	color: #fff;
}

.process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 60px 0 0;
	list-style: none;
}

.process-list li {
	position: relative;
	min-height: 270px;
	padding: 31px 30px;
	border-top: 2px solid rgba(0, 0, 0, 0.8);
	border-right: 1px solid rgba(0, 0, 0, 0.18);
	background: rgba(255, 255, 255, 0.08);
}

.process-list li:last-child {
	border-right: 0;
}

.process-list__number {
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 900;
}

.process-list h3 {
	margin: 67px 0 10px;
	font-family: var(--font-display);
	font-size: 26px;
	line-height: 1.05;
	text-transform: uppercase;
}

.process-list p {
	margin: 0;
	color: rgba(0, 0, 0, 0.73);
	font-size: 14px;
}

.coverage {
	background:
		radial-gradient(circle at 78% 45%, rgba(255, 106, 0, 0.13), transparent 25%),
		#0e1316;
}

.coverage__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
	align-items: center;
	gap: 100px;
}

.coverage__grid > div:first-child > p {
	max-width: 730px;
	margin-top: 26px;
}

.coverage__cities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 31px;
}

.coverage__cities span {
	padding: 8px 13px;
	border: 1px solid rgba(255, 106, 0, 0.27);
	border-radius: 999px;
	background: rgba(255, 106, 0, 0.06);
	color: #e4e8ea;
	font-size: 12px;
	font-weight: 800;
}

.coverage__note {
	font-size: 13px !important;
	font-style: italic;
}

.coverage__card {
	position: relative;
	padding: 44px;
	border: 1px solid rgba(255, 106, 0, 0.35);
	border-radius: 180px 180px 25px 25px;
	background: linear-gradient(180deg, #1a2024, #11161a);
	text-align: center;
	box-shadow: var(--shadow);
}

.coverage__pin {
	display: grid;
	width: 84px;
	height: 84px;
	place-items: center;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: var(--color-orange);
}

.coverage__pin svg {
	width: 43px;
	fill: #fff;
}

.coverage__card p {
	margin: 8px 0;
	color: var(--color-muted);
	font-size: 13px;
}

.coverage__card strong {
	font-family: var(--font-display);
	font-size: 44px;
	text-transform: uppercase;
}

.coverage__card hr {
	height: 1px;
	margin: 28px 0 20px;
	border: 0;
	background: var(--color-line);
}

.coverage__card .button {
	width: 100%;
	margin-top: 22px;
}

.pricing {
	padding: 0;
	background: #0e1316;
}

.pricing__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 60px;
	padding: 55px 62px;
	border: 1px solid rgba(255, 106, 0, 0.4);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(110deg, rgba(255, 106, 0, 0.13), transparent 55%),
		#161c20;
}

.pricing h2 {
	max-width: 860px;
	font-size: clamp(34px, 4.2vw, 57px);
}

.pricing h2 strong {
	color: var(--color-orange);
}

.pricing__box p:last-child {
	max-width: 810px;
	margin: 20px 0 0;
	color: var(--color-muted);
}

.faq {
	background: #0e1316;
}

.faq__grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
	align-items: start;
	gap: 100px;
}

.faq__grid > div:first-child {
	position: sticky;
	top: 120px;
}

.faq__grid > div:first-child > p:last-child {
	margin-top: 23px;
}

.faq__items {
	border-top: 1px solid var(--color-line);
}

.faq details {
	border-bottom: 1px solid var(--color-line);
}

.faq summary {
	position: relative;
	padding: 25px 50px 25px 0;
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
	list-style: none;
	cursor: pointer;
}

.faq summary::-webkit-details-marker {
	display: none;
}

.faq summary::before,
.faq summary::after {
	position: absolute;
	top: 35px;
	right: 6px;
	width: 18px;
	height: 2px;
	background: var(--color-orange);
	content: "";
	transition: transform 180ms ease;
}

.faq summary::after {
	transform: rotate(90deg);
}

.faq details[open] summary::after {
	transform: rotate(0deg);
}

.faq details p {
	max-width: 700px;
	padding: 0 55px 25px 0;
	margin: 0;
	color: var(--color-muted);
}

.contact {
	background:
		linear-gradient(90deg, #ff6a00 0, #ff6a00 calc(50% - 95px), #11161a calc(50% - 95px), #11161a 100%);
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(310px, 0.68fr) minmax(0, 1.08fr);
	align-items: start;
	gap: 90px;
}

.contact .eyebrow {
	color: #fff;
}

.contact__aside {
	position: sticky;
	top: 120px;
	color: #111;
}

.contact__aside > p {
	margin-top: 25px;
	color: rgba(0, 0, 0, 0.7);
}

.contact__methods {
	display: grid;
	gap: 10px;
	margin-top: 33px;
}

.contact__methods a {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.contact__methods a > span {
	display: grid;
	grid-row: 1 / span 2;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: #111;
	color: #fff;
}

.contact__methods a > span.is-whatsapp {
	background: #087e37;
}

.contact__methods svg {
	width: 21px;
	fill: currentColor;
}

.contact__methods small,
.contact__methods strong {
	grid-column: 2;
}

.contact__methods small {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact__methods strong {
	font-size: 14px;
	word-break: break-word;
}

.contact__security {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	padding: 16px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 12px;
}

.contact__security svg {
	flex: 0 0 auto;
	width: 25px;
	fill: #111;
}

.contact__security p {
	margin: 0;
	font-size: 12px;
	line-height: 1.45;
}

.contact__security strong {
	display: block;
}

.contact__form-card {
	padding: 42px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: #161c20;
	box-shadow: var(--shadow);
}

.contact__form-card > h3 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 31px;
	text-transform: uppercase;
}

.contact__form-card > p {
	margin: 4px 0 28px;
	color: var(--color-muted);
	font-size: 13px;
}

.contact__form-card > p span {
	color: var(--color-orange);
}

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

.form-field {
	min-width: 0;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field label:not(.form-consent label) {
	display: block;
	margin-bottom: 7px;
	color: #dce0e2;
	font-size: 12px;
	font-weight: 800;
}

.form-field label span {
	color: var(--color-orange);
}

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 9px;
	outline: none;
	background: #0d1215;
	color: #fff;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:not([type="checkbox"]),
.form-field select {
	height: 49px;
	padding: 0 13px;
}

.form-field textarea {
	min-height: 130px;
	padding: 12px 13px;
	resize: vertical;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #69747b;
}

.form-field select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #9fa8ad 50%),
		linear-gradient(135deg, #9fa8ad 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 21px,
		calc(100% - 13px) 21px;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
}

.field-help,
.form-privacy {
	margin: 6px 0 0;
	color: #79838a;
	font-size: 10px;
}

.form-field--challenge {
	grid-column: 1 / -1;
	max-width: 235px;
}

.form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: #aeb6bb;
	font-size: 11px;
	line-height: 1.5;
	cursor: pointer;
}

.form-consent input {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: var(--color-orange);
}

.form-consent a {
	color: var(--color-orange-light);
	text-decoration: underline;
}

.button--submit {
	width: 100%;
	border: 0;
}

.turnstile-wrap {
	min-height: 65px;
}

.form-notice {
	padding: 13px 15px;
	margin: 0 0 20px;
	border: 1px solid;
	border-radius: 9px;
	font-size: 13px;
}

.form-notice--success {
	border-color: rgba(98, 214, 139, 0.45);
	background: rgba(98, 214, 139, 0.1);
	color: var(--color-success);
}

.form-notice--error {
	border-color: rgba(255, 107, 107, 0.45);
	background: rgba(255, 107, 107, 0.1);
	color: #ff9494;
}

.technical-support {
	padding: 30px 0 80px;
	background: #11161a;
}

.technical-support > .shell > details {
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: #0d1215;
}

.technical-support > .shell > details > summary {
	position: relative;
	padding: 22px 60px 22px 27px;
	color: #c6ccd0;
	font-size: 13px;
	font-weight: 800;
	list-style: none;
	cursor: pointer;
}

.technical-support > .shell > details > summary::-webkit-details-marker {
	display: none;
}

.technical-support > .shell > details > summary::after {
	position: absolute;
	top: 18px;
	right: 24px;
	color: var(--color-orange);
	font-size: 22px;
	content: "+";
}

.technical-support > .shell > details[open] > summary::after {
	content: "−";
}

.technical-support__content {
	display: grid;
	grid-template-columns: minmax(270px, 0.55fr) minmax(0, 1fr);
	gap: 60px;
	padding: 45px;
	border-top: 1px solid var(--color-line);
}

.technical-support h2 {
	font-size: clamp(34px, 4vw, 50px);
}

.technical-support__content > div:first-child > p:last-child {
	color: var(--color-muted);
}

.contact__form-card--technical {
	padding: 30px;
	box-shadow: none;
}

.site-footer {
	padding: 74px 0 22px;
	border-top: 1px solid var(--color-line);
	background: #080a0c;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.7fr 1fr;
	gap: 90px;
	padding-bottom: 58px;
}

.footer-brand > p {
	max-width: 320px;
	margin: 20px 0 0;
	color: var(--color-muted);
	font-size: 14px;
}

.footer-title {
	margin: 5px 0 20px;
	font-family: var(--font-display);
	font-size: 18px;
	text-transform: uppercase;
}

.site-footer .menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 9px;
}

.site-footer .menu a,
.footer-contact a,
.footer-contact span {
	color: var(--color-muted);
	font-size: 13px;
	transition: color 180ms ease;
}

.site-footer .menu a:hover,
.footer-contact a:hover {
	color: var(--color-orange);
}

.footer-contact {
	display: grid;
	gap: 11px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 9px;
}

.footer-contact svg {
	flex: 0 0 auto;
	width: 18px;
	fill: var(--color-orange);
}

.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding-top: 21px;
	border-top: 1px solid var(--color-line);
	color: #737d83;
	font-size: 11px;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom p:last-child {
	display: flex;
	gap: 10px;
}

.site-footer__bottom a:hover {
	color: #fff;
}

.floating-whatsapp {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: #138b43;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
	background: #0fa84b;
	transform: translateY(-2px);
}

.floating-whatsapp svg {
	width: 25px;
	fill: currentColor;
}

.content-area,
.error-page {
	min-height: 70vh;
	padding: 150px 0 100px;
	background:
		radial-gradient(circle at 80% 10%, rgba(255, 106, 0, 0.1), transparent 30%),
		var(--color-bg);
}

.content-shell--narrow {
	max-width: 880px;
}

.page-header {
	margin-bottom: 45px;
}

.page-header h1,
.error-page h1 {
	font-size: clamp(44px, 6vw, 76px);
}

.post-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	background: var(--color-panel);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.post-card:hover .post-card__image img {
	transform: scale(1.03);
}

.post-card__content {
	padding: 27px;
}

.post-card h2 {
	margin: 5px 0 12px;
	font-family: var(--font-display);
	font-size: 28px;
	line-height: 1.1;
	text-transform: uppercase;
}

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

.post-meta {
	margin: 0;
	color: var(--color-orange) !important;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.entry-featured {
	overflow: hidden;
	margin-bottom: 35px;
	border-radius: var(--radius-md);
}

.entry-content {
	color: #cbd0d3;
	font-size: 17px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 1.8em;
	color: #fff;
	font-family: var(--font-display);
	line-height: 1.15;
	text-transform: uppercase;
}

.entry-content a {
	color: var(--color-orange-light);
	text-decoration: underline;
}

.entry-content img {
	border-radius: 14px;
}

.entry-content blockquote {
	padding: 5px 0 5px 25px;
	margin-left: 0;
	border-left: 3px solid var(--color-orange);
	color: #fff;
	font-size: 20px;
}

.alignwide {
	width: min(1100px, calc(100vw - 40px));
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.error-page__inner {
	text-align: center;
}

.error-page__inner .eyebrow {
	justify-content: center;
}

.error-page__code {
	margin: 0;
	color: rgba(255, 106, 0, 0.16);
	font-family: var(--font-display);
	font-size: clamp(120px, 25vw, 300px);
	font-weight: 900;
	line-height: 0.72;
}

.error-page__inner > p:not(.error-page__code, .eyebrow) {
	max-width: 580px;
	margin: 25px auto;
	color: var(--color-muted);
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--color-line);
	border-radius: 8px;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--color-orange);
	background: var(--color-orange);
}

.search-form {
	display: flex;
	max-width: 650px;
	gap: 10px;
	margin-top: 25px;
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	height: 52px;
	padding: 0 15px;
	border: 1px solid var(--color-line);
	border-radius: 10px;
	background: var(--color-panel);
	color: #fff;
}

.comments-area {
	padding-top: 55px;
	margin-top: 55px;
	border-top: 1px solid var(--color-line);
}

.comments-title,
.comment-reply-title {
	font-family: var(--font-display);
	text-transform: uppercase;
}

.comment-list {
	padding-left: 25px;
}

.comment-list li {
	margin-bottom: 25px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--color-line);
	border-radius: 9px;
	background: var(--color-panel);
	color: #fff;
}

.comment-form .submit {
	padding: 13px 21px;
	border: 0;
	border-radius: 9px;
	background: var(--color-orange);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

@media (max-width: 1080px) {
	.primary-navigation ul {
		gap: 18px;
	}

	.primary-navigation a {
		font-size: 12px;
	}

	.header-whatsapp span {
		display: none;
	}

	.hero__grid {
		gap: 35px;
	}

	.hero__visual {
		min-height: 570px;
	}

	.hero__badge--experience {
		left: -10px;
	}

	.hero__badge--location {
		right: -5px;
	}

	.about__grid,
	.coverage__grid {
		gap: 65px;
	}

	.contact__grid {
		gap: 55px;
	}

	.site-footer__grid {
		gap: 55px;
	}
}

@media (max-width: 900px) {
	.site-header {
		height: 72px;
	}

	.menu-toggle {
		z-index: 2;
		display: block;
		order: 3;
		margin-left: 5px;
	}

	.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
		transform: translateY(7px) rotate(45deg);
	}

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

	.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		z-index: 1;
		inset: 0;
		display: grid;
		visibility: hidden;
		place-items: center;
		margin: 0;
		background: rgba(8, 11, 13, 0.98);
		opacity: 0;
		transition: opacity 180ms ease, visibility 180ms ease;
	}

	.primary-navigation.is-open {
		visibility: visible;
		opacity: 1;
	}

	.primary-navigation ul {
		flex-direction: column;
		gap: 21px;
		text-align: center;
	}

	.primary-navigation a {
		font-family: var(--font-display);
		font-size: 27px;
		text-transform: uppercase;
	}

	.header-whatsapp {
		margin-left: auto;
	}

	.hero {
		padding-top: 120px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.hero__content {
		max-width: 720px;
	}

	.hero__visual {
		width: min(590px, 100%);
		min-height: 650px;
		margin: 0 auto;
	}

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

	.hero__stats > div:nth-child(2) {
		border-right: 0;
	}

	.hero__stats > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--color-line);
	}

	.section-heading {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.about {
		background: #0b0f11;
	}

	.about__grid {
		grid-template-columns: minmax(300px, 0.8fr) 1fr;
		gap: 55px;
	}

	.about__seal {
		right: -25px;
		width: 115px;
		height: 115px;
	}

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

	.process-list li:nth-child(2) {
		border-right: 0;
	}

	.process-list li:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(0, 0, 0, 0.18);
	}

	.coverage__grid {
		grid-template-columns: 1fr 330px;
		gap: 50px;
	}

	.pricing__box {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.pricing__box .button {
		justify-self: start;
	}

	.faq__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.faq__grid > div:first-child,
	.contact__aside {
		position: static;
	}

	.contact {
		background: linear-gradient(180deg, var(--color-orange) 0, var(--color-orange) 590px, #11161a 590px, #11161a 100%);
	}

	.contact__grid {
		grid-template-columns: 1fr;
		gap: 90px;
	}

	.contact__aside {
		max-width: 620px;
	}

	.technical-support__content {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.shell {
		width: min(calc(100% - 28px), var(--shell));
	}

	.brand__name {
		font-size: 21px;
	}

	.brand__mark {
		width: 37px;
		height: 37px;
	}

	.header-whatsapp {
		padding: 8px 10px;
	}

	.hero {
		padding-top: 108px;
	}

	.hero h1 {
		font-size: clamp(47px, 14vw, 67px);
	}

	.hero__lead {
		margin-top: 22px;
		font-size: 16px;
	}

	.hero__actions {
		flex-direction: column;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__trust {
		display: grid;
	}

	.hero__visual {
		min-height: 510px;
	}

	.hero__image-frame {
		inset: 0 10px;
		border-radius: 180px 180px 25px 25px;
	}

	.hero__badge--experience {
		top: 35px;
		left: -1px;
		width: 95px;
		height: 95px;
	}

	.hero__badge--location {
		right: 0;
		bottom: 55px;
	}

	.hero__stats {
		margin-top: 45px;
	}

	.hero__stats > div {
		min-height: 90px;
		padding: 16px;
	}

	.hero__stats strong {
		font-size: 21px;
	}

	.hero__stats span {
		font-size: 9px;
	}

	.section {
		padding: 82px 0;
	}

	.section-heading h2,
	.about h2,
	.coverage h2,
	.faq h2,
	.contact h2,
	.technical-support h2 {
		font-size: clamp(38px, 11vw, 51px);
	}

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

	.service-card {
		min-height: 0;
		padding: 27px;
	}

	.check-list {
		grid-template-columns: 1fr;
	}

	.about__grid {
		grid-template-columns: 1fr;
		gap: 65px;
	}

	.about__poster {
		width: calc(100% - 16px);
	}

	.about__seal {
		right: -18px;
	}

	.process-list {
		grid-template-columns: 1fr;
	}

	.process-list li {
		min-height: 230px;
		border-right: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.18);
	}

	.process-list h3 {
		margin-top: 45px;
	}

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

	.coverage__card {
		max-width: 390px;
		margin-inline: auto;
	}

	.pricing__box {
		padding: 35px 25px;
		border-radius: 23px;
	}

	.pricing__box .button {
		width: 100%;
	}

	.faq summary {
		font-size: 19px;
	}

	.contact {
		background: linear-gradient(180deg, var(--color-orange) 0, var(--color-orange) 650px, #11161a 650px, #11161a 100%);
	}

	.contact__grid {
		gap: 90px;
	}

	.contact__form-card {
		padding: 27px 20px;
	}

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

	.form-field--full,
	.form-field--challenge {
		grid-column: auto;
	}

	.form-field--challenge {
		max-width: none;
	}

	.technical-support__content {
		padding: 27px 17px;
	}

	.contact__form-card--technical {
		padding: 23px 17px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-brand {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-footer__bottom p:last-child {
		flex-wrap: wrap;
	}

	.floating-whatsapp {
		right: 14px;
		bottom: 14px;
		padding: 11px;
	}

	.floating-whatsapp span {
		display: none;
	}

	.post-list {
		grid-template-columns: 1fr;
	}
}

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

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