:root {
	--az-bg: #0d1114;
	--az-panel: #151b20;
	--az-panel-2: #20282e;
	--az-text: #e9edf0;
	--az-muted: #98a2aa;
	--az-paper: #f3f0ea;
	--az-ink: #171b1f;
	--az-line: #303a41;
	--az-accent: #e29a2e;
	--az-accent-2: #ba5f2a;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.az-site {
	margin: 0;
	background:
		radial-gradient(circle at 10% 0%, rgba(226,154,46,.18), transparent 28%),
		linear-gradient(180deg, #0d1114 0%, #14191d 42%, #0d1114 100%);
	color: var(--az-text);
	font: 16px/1.55 Arial, Helvetica, sans-serif;
}

a {
	color: inherit;
}

.az-shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.az-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	padding: 16px 0;
	backdrop-filter: blur(16px);
}

.az-logo {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	text-decoration: none;
	color: var(--az-text);
}

.az-logo-mark {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--az-accent), var(--az-accent-2));
	color: #111;
	font-weight: 900;
	border-radius: 8px;
	box-shadow: 0 12px 34px rgba(226,154,46,.22);
}

.az-logo strong {
	display: block;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.az-logo em {
	display: block;
	margin-top: 5px;
	color: var(--az-muted);
	font-style: normal;
	font-size: 12px;
}

.az-nav ul,
.az-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.az-nav li {
	margin: 0;
	padding: 0;
}

.az-nav a,
.az-nav span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 13px;
	color: var(--az-muted);
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 999px;
}

.az-nav a:hover,
.az-nav .selected a,
.az-nav .item-selected a,
.az-nav li:hover > a {
	color: var(--az-text);
	border-color: rgba(226,154,46,.42);
	background: rgba(226,154,46,.08);
}

.az-header-cta,
.az-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 42px;
	padding: 0 18px;
	background: var(--az-accent);
	color: #16130f !important;
	font-weight: 800;
	text-decoration: none;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(226,154,46,.2);
}

.az-topline {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 8px;
	background: var(--az-line);
	border: 1px solid var(--az-line);
	border-radius: 10px;
	overflow: hidden;
}

.az-topline div {
	padding: 14px 18px;
	background: rgba(21,27,32,.86);
}

.az-topline span {
	display: block;
	color: var(--az-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.az-topline strong {
	display: block;
	margin-top: 3px;
	font-size: 14px;
}

.az-main {
	margin-top: 28px;
	margin-bottom: 54px;
}

.az-page-head {
	margin: 0 0 24px;
	padding: 28px;
	background: linear-gradient(135deg, rgba(226,154,46,.18), rgba(255,255,255,.04));
	border: 1px solid rgba(226,154,46,.24);
	border-radius: 12px;
}

.az-page-head h1 {
	margin: 0;
	color: var(--az-text);
	font-size: 42px;
	line-height: 1.05;
}

.az-kicker {
	margin: 0 0 10px;
	color: var(--az-accent);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.az-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) 360px;
	gap: 28px;
	align-items: stretch;
	margin: 0 0 28px;
	padding: 46px;
	background:
		linear-gradient(120deg, rgba(13,17,20,.96), rgba(32,40,46,.86)),
		repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
	color: var(--az-text);
	border: 1px solid rgba(226,154,46,.28);
	border-radius: 14px;
	overflow: hidden;
}

.az-hero:after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 420px;
	height: 420px;
	background: radial-gradient(circle, rgba(226,154,46,.32), transparent 62%);
	pointer-events: none;
}

.az-hero h2 {
	position: relative;
	margin: 0 0 18px;
	max-width: 760px;
	color: #fff;
	font-size: 56px;
	line-height: .98;
	letter-spacing: 0;
}

.az-hero p {
	position: relative;
	max-width: 720px;
	color: #c7d0d6;
	font-size: 18px;
}

.az-actions {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-top: 24px;
}

.az-link {
	color: var(--az-text) !important;
	font-weight: 800;
	text-decoration-color: var(--az-accent);
	text-underline-offset: 5px;
}

.az-hero-card {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	gap: 16px;
	min-height: 300px;
	padding: 12px;
	background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 12px;
}

.az-hero-card img {
	width: 100%;
	height: 100%;
	min-height: 210px;
	object-fit: cover;
	border-radius: 8px;
}

.az-hero-card div {
	padding: 0 12px 12px;
}

.az-hero-card strong {
	font-size: 28px;
	color: #fff;
}

.az-hero-card span {
	display: block;
	margin-top: 8px;
	color: #f2d7b3;
}

.az-hero-card ul {
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 9px;
}

.az-hero-card li {
	padding: 9px 10px;
	background: rgba(0,0,0,.25);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
}

.az-trust {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 28px;
}

.az-trust div,
.az-card,
.az-service-list article,
.az-note,
.az-band,
.az-steps,
.az-faq details,
.az-lead-form {
	background: rgba(243,240,234,.96);
	color: var(--az-ink);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 12px;
	box-shadow: 0 18px 48px rgba(0,0,0,.2);
}

.az-trust div {
	display: grid;
	gap: 8px;
	padding: 20px;
}

.az-trust strong {
	color: var(--az-accent-2);
	font-size: 26px;
}

.az-trust span {
	font-weight: 800;
}

.az-grid,
.az-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 28px 0;
}

.az-card,
.az-service-list article,
.az-note,
.az-band,
.az-steps {
	padding: 24px;
}

.az-card {
	position: relative;
	overflow: hidden;
}

.az-card:before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--az-accent), var(--az-accent-2));
}

.az-card-tag {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 5px 8px;
	background: rgba(226,154,46,.18);
	color: #8b4c19;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 12px;
	border-radius: 999px;
}

.az-card h2,
.az-card h3,
.az-service-list h2,
.az-band h3,
.az-steps h3,
.az-faq h2,
.az-lead-form h2 {
	margin-top: 0;
	color: var(--az-ink);
}

.az-list {
	padding-left: 20px;
	line-height: 1.7;
}

.az-service-list {
	display: grid;
	gap: 16px;
	margin: 24px 0;
}

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

.az-service-detailed ul {
	margin-bottom: 0;
	line-height: 1.65;
}

.az-note {
	margin: 24px 0;
	border-left: 6px solid var(--az-accent);
}

.az-calculator,
.az-proof {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 22px;
	align-items: start;
	margin: 30px 0;
	padding: 30px;
	background: linear-gradient(135deg, #1a2228, #101417);
	color: var(--az-text);
	border: 1px solid rgba(226,154,46,.22);
	border-radius: 14px;
}

.az-calculator h3,
.az-proof h3 {
	margin-top: 0;
	color: #fff;
	font-size: 28px;
}

.az-calc-panel,
.az-lead-form {
	display: grid;
	gap: 14px;
	padding: 20px;
}

.az-calc-panel label,
.az-lead-form label {
	display: grid;
	gap: 7px;
	font-weight: 800;
}

.az-calc-panel input,
.az-calc-panel select,
.az-lead-form input,
.az-lead-form textarea {
	width: 100%;
	padding: 12px 13px;
	border: 1px solid #c8beb0;
	border-radius: 7px;
	font: inherit;
	background: #fffdfa;
}

.az-calc-result {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: center;
	padding: 16px;
	background: #171b1f;
	color: #fff;
	border-radius: 8px;
}

.az-calc-result strong {
	color: var(--az-accent);
	font-size: 20px;
}

.az-before-after,
.az-mini-gallery {
	display: grid;
	gap: 10px;
}

.az-mini-gallery {
	grid-template-columns: 1fr;
}

.az-mini-gallery img {
	width: 100%;
	height: 118px;
	object-fit: cover;
	border-radius: 8px;
}

.az-work-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 26px 0;
}

.az-work-gallery figure {
	margin: 0;
	background: rgba(243,240,234,.96);
	color: var(--az-ink);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0,0,0,.2);
}

.az-work-gallery img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.az-work-gallery figcaption {
	padding: 12px;
	font-weight: 800;
	font-size: 14px;
}

.az-service-photo {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: center;
	margin: 0 0 26px;
	padding: 18px;
	background: linear-gradient(135deg, #1a2228, #101417);
	border: 1px solid rgba(226,154,46,.22);
	border-radius: 14px;
}

.az-service-photo img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 10px;
}

.az-service-photo h2 {
	margin: 0 0 10px;
	color: #fff;
}

.az-service-photo p {
	color: #c7d0d6;
}

.az-before-after span {
	display: flex;
	align-items: end;
	min-height: 82px;
	padding: 14px;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 8px;
}

.az-before-after span:nth-child(1) {
	background: linear-gradient(135deg, #57291f, #9d4e2b);
}

.az-before-after span:nth-child(2) {
	background: linear-gradient(135deg, #4a555d, #aab2b7);
}

.az-before-after span:nth-child(3) {
	background: linear-gradient(135deg, #111, var(--az-accent));
}

.az-faq {
	margin: 30px 0;
}

.az-faq details {
	margin: 10px 0;
	padding: 16px 18px;
}

.az-faq summary {
	cursor: pointer;
	font-weight: 900;
}

.az-lead-form {
	margin-top: 26px;
}

.az-muted {
	color: #69747b;
}

.az-footer {
	padding: 38px 0 22px;
	background: #090c0e;
	border-top: 1px solid rgba(255,255,255,.08);
}

.az-footer-grid {
	display: grid;
	grid-template-columns: 1.25fr .75fr 1fr;
	gap: 30px;
}

.az-footer h3 {
	margin: 0 0 12px;
	color: #fff;
}

.az-footer p,
.az-footer a,
.az-footer-bottom {
	color: var(--az-muted);
}

.az-footer ul {
	display: grid;
	gap: 8px;
}

.az-footer a {
	text-decoration: none;
}

.az-logo-footer {
	margin-bottom: 14px;
}

.az-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,.08);
	font-size: 13px;
}

@media (max-width: 900px) {
	.az-header,
	.az-hero,
	.az-grid,
	.az-contact-grid,
	.az-trust,
	.az-calculator,
	.az-proof,
	.az-service-detailed,
	.az-work-gallery,
	.az-service-photo,
	.az-footer-grid,
	.az-topline {
		grid-template-columns: 1fr;
	}

	.az-header {
		position: static;
	}

	.az-hero {
		padding: 30px;
	}

	.az-hero h2,
	.az-page-head h1 {
		font-size: 38px;
	}

	.az-footer-bottom {
		display: grid;
	}
}

@media (max-width: 560px) {
	.az-shell {
		width: min(100% - 24px, 1180px);
	}

	.az-hero {
		padding: 22px;
	}

	.az-hero h2 {
		font-size: 32px;
	}

	.az-nav ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}
