@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/inter-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/inter-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--font-body: "Inter", Arial, Helvetica, sans-serif;
	--font-display: "Manrope", "Inter", Arial, Helvetica, sans-serif;
	--ink: #171a1f;
	--ink-soft: #30343b;
	--paper: #ffffff;
	--muted: #f3f5f6;
	--line: #dce1e4;
	--text: #3e434a;
	--subtle: #687079;
	--accent: #e5462f;
	--accent-dark: #bd2f1d;
	--yellow: #f5b82e;
	--max: #7357ff;
	--success: #18794e;
	--container: 1180px;
	--shadow: 0 16px 40px rgba(20, 25, 30, 0.12);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 94px;
	overflow-x: hidden;
}

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

body.nav-open {
	overflow: hidden;
}

body.ai-modal-open {
	overflow: hidden;
}

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

a {
	color: inherit;
}

@keyframes fadeRise {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes shadeSettle {
	from {
		background: rgba(10, 12, 15, 0.74);
	}

	to {
		background: rgba(10, 12, 15, 0.58);
	}
}

@keyframes softFloat {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}
}

button,
input,
textarea {
	font: inherit;
}

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

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0;
}

h1 {
	margin-bottom: 18px;
	font-size: clamp(42px, 5vw, 60px);
	font-weight: 800;
	line-height: 1.04;
}

h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 46px);
}

h3 {
	margin-bottom: 12px;
	font-size: 21px;
}

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

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	color: var(--paper);
	background: var(--ink);
	transform: translateY(-150%);
}

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

.topbar {
	color: #dfe3e6;
	background: #101216;
	font-size: 13px;
}

.topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 36px;
}

.topbar i {
	margin-right: 7px;
	color: var(--yellow);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid rgba(220, 225, 228, 0.9);
}

.site-header__inner {
	display: flex;
	align-items: center;
	min-height: 72px;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 11px;
	color: var(--ink);
	text-decoration: none;
}

.brand__mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	background: transparent;
}

.brand__mark img {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

.brand__text {
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 700;
	white-space: nowrap;
}

.brand__text b {
	color: var(--accent);
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	gap: 24px;
}

.site-nav a {
	position: relative;
	color: var(--ink-soft);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--accent);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: var(--accent);
}

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

.header-phone {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	color: var(--ink);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.header-phone i {
	color: var(--accent);
	font-size: 20px;
}

.header-phone span {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

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

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

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px 0;
	background: var(--ink);
	transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: min(680px, calc(100vh - 160px));
	overflow: hidden;
	color: var(--paper);
	background: url("../../images/hero-gate-repair.jpg") center center / cover no-repeat;
}

.hero__shade {
	position: absolute;
	inset: 0;
	background: rgba(10, 12, 15, 0.58);
	animation: shadeSettle 900ms ease-out both;
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-block: 42px 20px;
}

.hero__content > * {
	max-width: 720px;
}

.hero h1 {
	color: var(--paper);
}

.hero .eyebrow,
.hero h1,
.hero__lead,
.hero__actions,
.hero__proof {
	opacity: 0;
	animation: fadeRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 {
	animation-delay: 80ms;
}

.hero__lead {
	animation-delay: 170ms;
}

.hero__actions {
	animation-delay: 260ms;
}

.hero__proof {
	animation-delay: 350ms;
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--yellow);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

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

.hero__lead {
	margin-bottom: 20px;
	color: #f0f2f3;
	font-size: clamp(19px, 2vw, 22px);
	line-height: 1.4;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 22px;
}

.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	gap: 10px;
	border: 0;
	border-radius: 6px;
	font-family: var(--font-display);
	font-weight: 800;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(20, 25, 30, 0.12);
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
	box-shadow: 0 14px 28px rgba(20, 25, 30, 0.16);
	transform: translateY(-3px);
}

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

.button--accent {
	color: var(--paper);
	background: var(--accent);
}

.button--accent:hover,
.button--accent:focus-visible {
	background: var(--accent-dark);
}

.button--light {
	color: var(--ink);
	background: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
	background: #e9edef;
}

.button--dark {
	color: var(--paper);
	background: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
	background: #000000;
}

.button--full {
	width: 100%;
}

.hero__proof {
	display: flex;
	width: fit-content;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__proof li {
	min-width: 150px;
	padding: 13px 26px 0 0;
}

.hero__proof li + li {
	padding-left: 26px;
	border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__proof b,
.hero__proof span {
	display: block;
}

.hero__proof b {
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 20px;
}

.hero__proof span {
	color: #d9dddf;
	font-size: 13px;
}

.service-strip {
	color: var(--paper);
	background: var(--ink);
}

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

.service-strip__grid > div {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	align-items: center;
	min-height: 98px;
	padding: 20px 28px;
	gap: 16px;
}

.service-strip__grid > div + div {
	border-left: 1px solid #383c43;
}

.service-strip i {
	display: block;
	width: 32px;
	color: var(--yellow);
	font-size: 25px;
	text-align: center;
}

.service-strip span {
	color: #c8cdd1;
	font-size: 14px;
	line-height: 1.4;
}

.service-strip b {
	display: block;
	color: var(--paper);
	font-family: var(--font-display);
	font-size: 16px;
}

.section {
	padding-block: 96px;
}

.section--muted {
	background: var(--muted);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 42px;
}

.section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--subtle);
	font-size: 18px;
}

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

.service-card {
	min-height: 250px;
	padding: 30px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
	border-color: #bac2c7;
	box-shadow: 0 12px 28px rgba(20, 25, 30, 0.08);
	transform: translateY(-3px);
}

.service-card > i {
	display: grid;
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
	place-items: center;
	color: var(--paper);
	background: var(--ink);
	border-radius: 6px;
	font-size: 21px;
	transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover > i {
	background: #23272f;
	transform: translateY(-3px) rotate(-2deg);
}

.service-card p {
	margin-bottom: 0;
	color: var(--subtle);
}

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

.price-card {
	padding: 34px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-top: 4px solid var(--accent);
	border-radius: 6px;
	transition: box-shadow 180ms ease, transform 180ms ease;
}

.price-card:hover {
	box-shadow: 0 14px 34px rgba(20, 25, 30, 0.1);
	transform: translateY(-3px);
}

.price-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 62px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	gap: 20px;
	border-bottom: 1px solid var(--line);
}

.price-card__top span {
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 21px;
	font-weight: 800;
	line-height: 1.25;
}

.price-card__top i {
	color: var(--accent);
	font-size: 28px;
}

.price-row {
	display: flex;
	justify-content: space-between;
	padding-block: 14px;
	gap: 16px;
	border-bottom: 1px solid var(--line);
}

.price-row b {
	color: var(--ink);
	font-family: var(--font-display);
	white-space: nowrap;
}

.price-card > p {
	margin: 20px 0 0;
	color: var(--subtle);
	font-size: 14px;
}

.price-note {
	margin: 22px 0 0;
	color: var(--subtle);
	font-size: 14px;
}

.price-note i {
	margin-right: 8px;
	color: var(--accent);
}

.ai-section {
	padding-block: 68px;
	color: var(--paper);
	background: #087fae;
	border-top: 5px solid #26bee8;
	border-bottom: 1px solid #076a93;
	box-shadow: inset 0 -18px 40px rgba(3, 48, 70, 0.2);
}

.ai-section__inner {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
}

.ai-section__icon {
	display: grid;
	width: 88px;
	height: 88px;
	place-items: center;
	color: #087fae;
	background: #e5f8ff;
	border: 4px solid rgba(255, 255, 255, 0.85);
	border-radius: 8px;
	font-size: 38px;
	box-shadow: 0 12px 30px rgba(3, 48, 70, 0.3);
	animation: softFloat 4200ms ease-in-out infinite;
}

.ai-section h2 {
	margin-bottom: 12px;
	color: var(--paper);
	font-size: clamp(28px, 3.5vw, 42px);
}

.ai-section__content > p:not(.eyebrow):not(.ai-section__warning) {
	max-width: 720px;
	margin-bottom: 14px;
	color: #f1efff;
}

.ai-section__warning {
	margin-bottom: 0;
	color: #fff5c4;
	font-size: 13px;
}

.ai-section__actions {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 12px;
}

.ai-section .ai-link {
	color: #063d57;
	background: #e5f8ff;
	border-color: #e5f8ff;
	box-shadow: 0 12px 28px rgba(3, 48, 70, 0.28);
}

.ai-section .ai-link:hover {
	color: #063d57;
	background: #ffffff;
	border-color: #ffffff;
}

.ai-section__secondary {
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.ai-section__secondary:hover,
.ai-section__secondary:focus-visible {
	color: var(--paper);
	text-decoration: underline;
}

.ai-link[aria-disabled="true"] {
	color: #075d82;
	background: #d8f4ff;
	border-color: #d8f4ff;
	cursor: not-allowed;
	opacity: 0.8;
}

.ai-link[aria-disabled="true"]:hover {
	transform: none;
}

.ai-fab {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 130;
	display: inline-flex;
	width: 68px;
	height: 68px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 2px;
	color: var(--paper);
	background: linear-gradient(135deg, #087fae, #19a66a);
	border: 0;
	border-radius: 8px;
	box-shadow: 0 16px 32px rgba(5, 93, 129, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.ai-fab i {
	font-size: 22px;
}

.ai-fab span {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.ai-fab:hover,
.ai-fab:focus-visible {
	box-shadow: 0 20px 38px rgba(5, 93, 129, 0.34);
	transform: translateY(-4px);
}

.ai-fab[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.55;
}

.ai-modal {
	position: fixed;
	inset: 0;
	z-index: 400;
	display: grid;
	place-items: center;
	padding: 28px;
}

.ai-modal[hidden] {
	display: none;
}

.ai-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 18, 22, 0.62);
	backdrop-filter: blur(7px);
}

.ai-modal__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1120px, 100%);
	height: min(840px, calc(100vh - 56px));
	height: min(840px, calc(100dvh - 56px));
	grid-template-rows: auto minmax(0, 1fr) auto;
	background: var(--paper);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
	overflow: hidden;
	animation: fadeRise 240ms ease both;
}

.ai-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 20px;
	background: #f7fbfc;
	border-bottom: 1px solid var(--line);
}

.ai-modal__header .eyebrow {
	margin-bottom: 4px;
	font-size: 11px;
}

.ai-modal__header h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(20px, 3vw, 28px);
}

.ai-modal__controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ai-modal__controls a,
.ai-modal__controls button {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 160ms ease, transform 160ms ease;
}

.ai-modal__controls a:hover,
.ai-modal__controls a:focus-visible,
.ai-modal__controls button:hover,
.ai-modal__controls button:focus-visible {
	background: #eaf6fa;
	transform: translateY(-1px);
}

.ai-modal__frame {
	width: 100%;
	height: 100%;
	background: #eef7f9;
	border: 0;
}

.ai-modal__note {
	margin: 0;
	padding: 10px 18px;
	color: var(--subtle);
	background: #fbfcfd;
	border-top: 1px solid var(--line);
	font-size: 12px;
	line-height: 1.45;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
	align-items: center;
	gap: 80px;
}

.about-copy > p:not(.eyebrow) {
	max-width: 720px;
	color: var(--subtle);
	font-size: 18px;
}

.check-list {
	margin-top: 30px;
}

.check-list p {
	display: flex;
	gap: 14px;
}

.check-list i {
	display: grid;
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	margin-top: 2px;
	place-items: center;
	color: var(--paper);
	background: var(--success);
	border-radius: 50%;
	font-size: 12px;
}

.check-list b {
	color: var(--ink);
}

.brand-panel {
	padding-left: 38px;
	border-left: 1px solid var(--line);
}

.brand-panel img {
	width: 180px;
	height: 180px;
	margin-bottom: 24px;
	object-fit: cover;
	border-radius: 6px;
}

.brand-panel p {
	margin-bottom: 0;
	color: var(--subtle);
}

.section--contact {
	color: #d9dde0;
	background: var(--ink);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.7fr);
	gap: 80px;
}

.contact-details h2 {
	color: var(--paper);
}

.contact-details > p:not(.eyebrow) {
	max-width: 590px;
	color: #b9c0c5;
	font-size: 18px;
}

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

.contact-list a {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 82px;
	padding: 12px 14px;
	gap: 16px;
	color: var(--paper);
	background: #262a30;
	border: 1px solid #3a3f47;
	border-radius: 6px;
	text-decoration: none;
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.contact-list a:hover {
	background: #2c3037;
	border-color: var(--yellow);
	transform: translateY(-2px);
}

.contact-list a:hover > span:last-child {
	color: var(--yellow);
}

.contact-list a > i,
.contact-logo {
	display: grid;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	place-items: center;
	color: var(--paper);
	background: #343941;
	border-radius: 6px;
	font-size: 17px;
	font-weight: 900;
	transition: transform 160ms ease;
}

.contact-logo {
	padding: 3px;
	object-fit: contain;
	background: var(--paper);
}

.contact-list a:hover .contact-logo,
.contact-list a:hover > i {
	transform: scale(1.05);
}

.contact-list a > span:last-child {
	display: flex;
	flex-direction: column;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.contact-list a[href^="mailto:"] > span:last-child {
	font-size: 15px;
}

.contact-list small {
	color: #8f979e;
	font-size: 12px;
	font-weight: 400;
}

.more-phones {
	margin-top: 16px;
	padding: 15px 16px;
	background: #202329;
	border: 1px solid #383c43;
	border-radius: 6px;
}

.more-phones summary {
	color: #b9c0c5;
	font-size: 14px;
	cursor: pointer;
}

.more-phones .provider-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 12px;
	gap: 10px;
}

.provider-list a {
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 9px;
	gap: 8px;
	color: var(--paper);
	background: #2b2f36;
	border: 1px solid #3b4048;
	border-radius: 6px;
	font-size: 12px;
	text-decoration: none;
}

.provider-list img {
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	padding: 2px;
	object-fit: contain;
	background: var(--paper);
	border-radius: 5px;
}

.provider-list span {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.3;
}

.provider-list small {
	color: #929aa1;
}

.request-panel {
	padding: 38px;
	color: var(--text);
	background: var(--paper);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.request-panel h2 {
	margin-bottom: 8px;
	font-size: 32px;
}

.request-panel > p {
	margin-bottom: 28px;
	color: var(--subtle);
}

.form-row {
	margin-bottom: 18px;
}

.form-row label {
	display: block;
	margin-bottom: 6px;
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
}

.form-row label span {
	color: var(--subtle);
	font-size: 12px;
	font-weight: 400;
}

.form-hint {
	display: block;
	margin-top: 7px;
	color: var(--subtle);
	font-size: 12px;
	line-height: 1.45;
}

.form-row input,
.form-row textarea {
	display: block;
	width: 100%;
	padding: 13px 14px;
	color: var(--ink);
	background: #fafbfb;
	border: 1px solid #cfd5d9;
	border-radius: 5px;
	outline: 0;
}

.form-row input {
	height: 48px;
}

.form-row textarea {
	min-height: 126px;
	resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
	background: var(--paper);
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(229, 70, 47, 0.13);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
	color: #92999f;
	opacity: 1;
}

.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
}

.consent {
	display: flex;
	align-items: flex-start;
	margin: 4px 0 20px;
	gap: 10px;
	color: var(--subtle);
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
}

.consent input {
	flex: 0 0 auto;
	margin-top: 3px;
	accent-color: var(--accent);
}

.consent a,
.privacy-note a {
	color: #075d82;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.privacy-note {
	margin: -8px 0 20px;
	color: var(--subtle);
	font-size: 12px;
	line-height: 1.5;
}

.request-form button[disabled] {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.form-status {
	min-height: 24px;
	margin: 12px 0 0;
	font-size: 14px;
	text-align: center;
}

.form-status.is-success {
	color: var(--success);
}

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

.legal-section {
	padding-block: 24px;
	background: #101216;
	border-top: 1px solid #2a2e34;
}

.legal-section details {
	color: #aab1b7;
	font-size: 13px;
}

.legal-section summary {
	width: fit-content;
	color: #d8dcdf;
	cursor: pointer;
}

.legal-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 24px;
	gap: 34px;
}

.legal-grid b {
	color: var(--paper);
}

.site-footer {
	padding-block: 24px;
	color: #858d94;
	background: #0a0b0d;
	font-size: 13px;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer a {
	color: #c8cdd1;
	text-decoration: none;
}

.site-footer i {
	margin-left: 6px;
}

.site-footer__links {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 5px;
	text-align: right;
}

.site-footer__links a:hover {
	color: var(--paper);
}

.legal-page {
	padding-bottom: 0;
	background: var(--muted);
}

.document-header {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

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

.document-header__back {
	color: #075d82;
	font-weight: 700;
	text-decoration: none;
}

.legal-document {
	padding-block: 70px 90px;
}

.legal-document__content {
	max-width: 880px;
	margin-inline: auto;
	padding: 48px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 6px;
}

.legal-document h1 {
	font-size: clamp(32px, 5vw, 48px);
}

.legal-document h2 {
	margin-top: 38px;
	font-size: 25px;
}

.legal-document p,
.legal-document li {
	line-height: 1.7;
}

.legal-document li + li {
	margin-top: 8px;
}

.document-meta {
	margin-bottom: 34px;
	color: var(--subtle);
}

.document-contacts {
	padding: 18px 20px;
	background: #e9f7fc;
	border-left: 4px solid #087fae;
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: opacity, transform;
}

.reveal[data-reveal="left"] {
	transform: translateX(-26px);
}

.reveal[data-reveal="right"] {
	transform: translateX(26px);
}

.reveal.is-visible {
	opacity: 1;
	transform: translate(0, 0);
	will-change: auto;
}

.reveal[data-reveal-delay="1"] {
	transition-delay: 80ms;
}

.reveal[data-reveal-delay="2"] {
	transition-delay: 160ms;
}

.reveal[data-reveal-delay="3"] {
	transition-delay: 240ms;
}

.mobile-bar {
	display: none;
}

@media (max-width: 1080px) {
	.site-nav {
		gap: 15px;
	}

	.site-nav a {
		font-size: 13px;
	}

	.header-phone {
		display: none;
	}

	.hero {
		background-position: 58% center;
	}

	.ai-section__inner {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.ai-section__icon {
		width: 72px;
		height: 72px;
	}

	.ai-section__actions {
		grid-column: 2;
		justify-self: start;
		align-items: flex-start;
	}
}

@media (max-width: 840px) {
	html {
		scroll-padding-top: 72px;
	}

	.topbar {
		display: none;
	}

	.site-header__inner {
		min-height: 64px;
		justify-content: space-between;
	}

	.nav-toggle {
		display: block;
	}

	.nav-open .nav-toggle span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.nav-open .nav-toggle span:nth-child(2) {
		opacity: 0;
	}

	.nav-open .nav-toggle span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.site-nav {
		position: fixed;
		inset: 64px 0 0;
		display: none;
		align-items: stretch;
		justify-content: flex-start;
		padding: 22px 24px 96px;
		gap: 0;
		background: var(--paper);
		overflow-y: auto;
	}

	.nav-open .site-nav {
		display: flex;
		flex-direction: column;
	}

	.site-nav a {
		padding: 16px 0;
		font-size: 18px;
		border-bottom: 1px solid var(--line);
	}

	.hero {
		min-height: 680px;
		background-position: 64% center;
	}

	.hero__shade {
		background: rgba(10, 12, 15, 0.65);
	}

	.service-strip__grid {
		grid-template-columns: 1fr;
		padding-block: 12px;
	}

	.service-strip__grid > div {
		min-height: 72px;
		padding: 14px 4px;
	}

	.service-strip__grid > div + div {
		border-top: 1px solid #383c43;
		border-left: 0;
	}

	.section {
		padding-block: 72px;
	}

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

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

	.about-grid,
	.contact-layout {
		gap: 48px;
	}

	.brand-panel {
		padding-top: 36px;
		padding-left: 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.contact-layout {
		gap: 42px;
	}

	.legal-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

@media (max-width: 600px) {
	body {
		padding-bottom: 64px;
	}

	.container {
		width: min(100% - 32px, var(--container));
	}

	h1 {
		font-size: 40px;
	}

	h2 {
		font-size: 32px;
	}

	.brand__text {
		font-size: 14px;
	}

	.hero {
		min-height: 650px;
		background-position: 70% center;
	}

	.hero__shade {
		background: rgba(10, 12, 15, 0.72);
	}

	.hero__content {
		padding-block: 62px 48px;
	}

	.hero__lead {
		font-size: 18px;
	}

	.hero__actions,
	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		display: grid;
		width: 100%;
		grid-template-columns: 0.85fr 1.05fr 1.2fr;
	}

	.hero__proof li {
		min-width: 0;
		padding: 15px 10px 0 0;
	}

	.hero__proof li + li {
		padding-left: 10px;
	}

	.hero__proof li:last-child {
		padding-right: 0;
	}

	.hero__proof b {
		font-size: 15px;
	}

	.hero__proof span {
		font-size: 11px;
	}

	.section {
		padding-block: 58px;
	}

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

	.section-heading > p:last-child,
	.about-copy > p:not(.eyebrow),
	.contact-details > p:not(.eyebrow) {
		font-size: 16px;
	}

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

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

	.price-card {
		padding: 24px;
	}

	.price-row {
		flex-direction: column;
		gap: 3px;
	}

	.ai-section__inner {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.ai-section__icon {
		width: 58px;
		height: 58px;
		font-size: 27px;
	}

	.ai-section__actions {
		grid-column: 1;
		width: 100%;
		align-items: stretch;
	}

	.ai-section__actions .button {
		width: 100%;
	}

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

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

	.contact-list a > span:last-child {
		min-width: 0;
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.more-phones .provider-list {
		grid-template-columns: 1fr;
	}

	.request-panel {
		padding: 26px 20px;
	}

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

	.site-footer__links {
		align-items: flex-start;
		text-align: left;
	}

	.document-header__inner {
		min-height: 72px;
	}

	.document-header__back {
		font-size: 13px;
	}

	.legal-document {
		padding-block: 34px 74px;
	}

	.legal-document__content {
		padding: 28px 20px;
	}

	.legal-document h1 {
		font-size: 32px;
	}

	.mobile-bar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 120;
		display: grid;
		height: 64px;
		grid-template-columns: repeat(2, 1fr);
		background: var(--paper);
		border-top: 1px solid var(--line);
		box-shadow: 0 -8px 22px rgba(20, 25, 30, 0.12);
	}

	.mobile-bar a {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 9px;
		color: var(--ink);
		font-size: 14px;
		font-weight: 800;
		text-decoration: none;
	}

	.mobile-bar a:first-child {
		color: var(--paper);
		background: var(--accent);
	}

	.ai-fab {
		right: 16px;
		bottom: 82px;
		width: 60px;
		height: 60px;
	}

	.ai-modal {
		padding: 0;
	}

	.ai-modal__dialog {
		width: 100%;
		height: 100vh;
		height: 100dvh;
		border-radius: 0;
	}

	.ai-modal__header {
		padding: 14px;
	}

	.ai-modal__controls a,
	.ai-modal__controls button {
		width: 38px;
		height: 38px;
	}

	.ai-modal__note {
		padding: 8px 12px;
		font-size: 11px;
	}
}

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

	* {
		animation: none !important;
		transition: none !important;
	}

	.reveal,
	.hero .eyebrow,
	.hero h1,
	.hero__lead,
	.hero__actions,
	.hero__proof {
		opacity: 1 !important;
		transform: none !important;
	}
}
