:root {
	--kt-orange: #f36b21;
	--kt-black: #111111;
	--kt-dark: #222222;
	--kt-gray: #f7f7f7;
	--kt-white: #ffffff;
	--kt-text: #4d4d4d;
	--kt-border: #e7e7e7;
	--kt-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
	--kt-radius: 8px;
	--kt-container: 1240px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--kt-text);
	background: var(--kt-white);
}

body.menu-open {
	overflow: hidden;
}

body.modal-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 14px;
	line-height: 1.12;
	color: var(--kt-black);
	font-weight: 800;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(38px, 6vw, 64px);
}

h2 {
	font-size: clamp(28px, 3vw, 40px);
}

h3 {
	font-size: 18px;
}

ul,
ol {
	margin-top: 0;
}

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

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

.skip-link:focus {
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--kt-black);
	color: var(--kt-white);
	z-index: 9999;
	clip: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(17, 17, 17, 0.08);
	transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
	background: var(--kt-white);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	min-height: 104px;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	max-width: 250px;
}

.site-logo img,
.custom-logo {
	width: 235px;
	max-height: 74px;
	object-fit: contain;
}

.primary-navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
}

.primary-navigation ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation li {
	position: relative;
}

.primary-navigation a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 14px;
	font-weight: 700;
	color: var(--kt-black);
}

.primary-navigation a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 3px;
	background: var(--kt-orange);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--kt-orange);
}

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
	transform: scaleX(1);
}

.primary-navigation .sub-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	display: grid;
	gap: 0;
	min-width: 230px;
	padding: 8px;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	box-shadow: var(--kt-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-navigation .sub-menu a {
	justify-content: flex-start;
	width: 100%;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 5px;
	white-space: nowrap;
}

.primary-navigation .sub-menu a::after {
	display: none;
}

.primary-navigation .sub-menu a:hover {
	background: rgba(243, 107, 33, 0.08);
}

.header-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 6px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.header-cta,
.btn-primary {
	background: var(--kt-orange);
	color: var(--kt-white);
	box-shadow: 0 10px 20px rgba(243, 107, 33, 0.24);
}

.header-cta:hover,
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 26px rgba(243, 107, 33, 0.32);
}

.btn-outline {
	border-color: var(--kt-black);
	color: var(--kt-black);
	background: var(--kt-white);
}

.btn-outline:hover {
	border-color: var(--kt-orange);
	color: var(--kt-orange);
	transform: translateY(-2px);
}

.btn-small {
	min-height: 38px;
	padding: 0 18px;
	font-size: 12px;
}

.btn-outline-orange {
	border-color: var(--kt-orange);
	color: var(--kt-orange);
	background: var(--kt-white);
}

.btn-outline-orange:hover {
	background: var(--kt-orange);
	color: var(--kt-white);
}

.btn-light {
	background: var(--kt-white);
	color: var(--kt-orange);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
	background: var(--kt-white);
	padding: 10px;
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--kt-black);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-section {
	position: relative;
	overflow: hidden;
	min-height: 560px;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.88) 46%, rgba(247, 247, 247, 0.96) 46%, rgba(247, 247, 247, 0.96) 100%),
		var(--kt-white);
}

.hero-bg-mark {
	position: absolute;
	left: -70px;
	bottom: -45px;
	width: 230px;
	height: 180px;
	background:
		linear-gradient(45deg, #00a7e1 0 24%, transparent 24%),
		linear-gradient(135deg, #f36b21 0 34%, transparent 34%),
		linear-gradient(225deg, #2fb344 0 28%, transparent 28%),
		linear-gradient(315deg, #ffcd00 0 35%, transparent 35%);
	opacity: 0.96;
	clip-path: polygon(0 0, 100% 72%, 0 100%);
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.92fr 1.28fr;
	gap: 46px;
	align-items: center;
	min-height: 560px;
	padding-block: 52px;
}

.hero-copy {
	max-width: 580px;
}

.hero-copy h1 {
	margin-bottom: 18px;
}

.hero-copy h1 span {
	color: var(--kt-orange);
}

.orange-line {
	width: 58px;
	height: 4px;
	margin: 0 0 26px;
	background: var(--kt-orange);
}

.orange-line.small {
	width: 38px;
	height: 3px;
	margin: 8px auto 0;
}

.hero-copy p {
	max-width: 520px;
	font-size: 18px;
	color: #5f5f5f;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.hero-collage {
	position: relative;
	height: 462px;
	min-width: 0;
}

.collage-piece {
	position: absolute;
	overflow: hidden;
	background: var(--kt-dark);
	box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.collage-piece img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collage-piece-large {
	left: 0;
	bottom: 0;
	width: 58%;
	height: 68%;
	clip-path: polygon(22% 0, 100% 0, 80% 100%, 0 100%);
}

.collage-piece-top {
	top: 0;
	right: 0;
	width: 64%;
	height: 58%;
	clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
	border-left: 8px solid var(--kt-white);
}

.collage-piece-bottom {
	right: 0;
	bottom: 0;
	width: 62%;
	height: 45%;
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
	border-left: 8px solid var(--kt-white);
	border-top: 8px solid var(--kt-white);
}

.section-tight {
	padding-top: 24px;
}

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

.section-heading.centered {
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(24px, 2.2vw, 30px);
	text-transform: uppercase;
}

.services-section {
	padding-bottom: 36px;
	background: var(--kt-white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.service-card {
	min-height: 196px;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	box-shadow: var(--kt-shadow);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	border-color: rgba(243, 107, 33, 0.4);
}

.service-card a {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 24px 16px 18px;
	text-align: center;
}

.service-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 14px;
}

.service-icon img {
	width: 56px;
	height: 56px;
	object-fit: contain;
}

.service-card h3 {
	min-height: 40px;
	margin-bottom: 8px;
	font-size: 16px;
}

.service-card p {
	margin-bottom: 14px;
	font-size: 13px;
	line-height: 1.45;
	color: #666666;
}

.circle-arrow {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-top: auto;
	border: 2px solid var(--kt-orange);
	border-radius: 50%;
	color: var(--kt-orange);
	font-weight: 800;
	line-height: 1;
}

.about-section {
	padding: 28px 0 36px;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 0.95fr 0.82fr;
	gap: 38px;
	align-items: center;
}

.rounded-image {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
	border-radius: var(--kt-radius);
	box-shadow: var(--kt-shadow);
}

.section-kicker {
	margin: 0 0 8px;
	color: var(--kt-orange);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.about-copy h2 {
	margin-bottom: 12px;
	font-size: clamp(28px, 3vw, 38px);
}

.entry-summary {
	font-size: 15px;
	color: #585858;
}

.about-advantages {
	display: grid;
	gap: 22px;
	padding-left: 34px;
	border-left: 1px solid var(--kt-border);
}

.advantage-item {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 16px;
}

.advantage-icon,
.why-icon,
.process-icon {
	display: grid;
	place-items: center;
	border: 2px solid var(--kt-orange);
	color: var(--kt-orange);
	font-weight: 900;
}

.advantage-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-size: 22px;
}

.advantage-item h3,
.why-item h3 {
	margin-bottom: 4px;
	font-size: 16px;
}

.advantage-item p,
.why-item p {
	margin: 0;
	font-size: 13px;
	line-height: 1.45;
}

.why-section {
	padding: 14px 0 32px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	margin-top: 28px;
}

.why-item {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	align-items: center;
	padding-right: 22px;
	border-right: 1px solid var(--kt-border);
}

.why-item:last-child {
	border-right: 0;
}

.why-icon {
	width: 54px;
	height: 54px;
	border-radius: 8px;
	font-size: 28px;
}

.references-section {
	padding: 16px 0 42px;
}

.references-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.reference-card {
	position: relative;
	overflow: hidden;
	min-height: 132px;
	border-radius: var(--kt-radius);
	background: var(--kt-dark);
	box-shadow: var(--kt-shadow);
}

.reference-card img {
	width: 100%;
	height: 132px;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.reference-card span {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 10px;
	color: var(--kt-white);
	font-size: 13px;
	font-weight: 800;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.46);
}

.reference-card a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0) 35%, rgba(17, 17, 17, 0.62) 100%);
}

.reference-card:hover img {
	transform: scale(1.05);
}

.section-action {
	display: flex;
	justify-content: center;
	margin-top: 18px;
}

.process-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.94), rgba(34, 34, 34, 0.9)),
		var(--kt-black);
	color: var(--kt-white);
}

.process-section::before {
	content: "";
	position: absolute;
	left: -40px;
	bottom: -20px;
	width: 190px;
	height: 150px;
	background:
		linear-gradient(45deg, #00a7e1 0 25%, transparent 25%),
		linear-gradient(135deg, #f36b21 0 38%, transparent 38%),
		linear-gradient(225deg, #2fb344 0 30%, transparent 30%),
		linear-gradient(315deg, #ffcd00 0 36%, transparent 36%);
	clip-path: polygon(0 0, 100% 76%, 0 100%);
}

.process-grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.82fr 1.35fr 0.58fr;
	align-items: stretch;
	min-height: 156px;
}

.process-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 28px 20px 28px 28px;
}

.process-title h2,
.process-cta h2,
.process-step h3 {
	color: var(--kt-white);
}

.process-title h2 {
	font-size: clamp(22px, 2vw, 30px);
}

.process-title p {
	margin: 0;
	color: var(--kt-orange);
	font-size: 18px;
	font-weight: 800;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	align-items: center;
	padding: 24px 12px;
}

.process-step {
	position: relative;
	text-align: center;
}

.process-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 24px;
	right: -16%;
	width: 32%;
	border-top: 1px dashed rgba(255, 255, 255, 0.55);
}

.process-icon {
	width: 54px;
	height: 54px;
	margin: 0 auto 10px;
	border-radius: 50%;
	background: var(--kt-orange);
	color: var(--kt-white);
	border-color: var(--kt-orange);
	font-size: 22px;
}

.process-step h3 {
	margin-bottom: 6px;
	font-size: 15px;
}

.process-step p {
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	line-height: 1.35;
}

.process-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 24px;
	background: var(--kt-orange);
	text-align: center;
}

.process-cta h2 {
	margin-bottom: 8px;
	font-size: 22px;
}

.process-cta p {
	margin-bottom: 18px;
	font-size: 13px;
	color: var(--kt-white);
}

.site-footer {
	background: var(--kt-white);
}

.footer-main {
	display: grid;
	grid-template-columns: 1.35fr 0.7fr 1.05fr 1.3fr;
	gap: 36px;
	padding: 34px 0 28px;
}

.footer-logo img {
	width: 224px;
}

.footer-brand p {
	max-width: 320px;
	margin-top: 14px;
	font-size: 14px;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid var(--kt-border);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 800;
	color: var(--kt-black);
}

.social-links a:hover {
	border-color: var(--kt-orange);
	color: var(--kt-orange);
}

.footer-column h2,
.footer-contact h2 {
	margin-bottom: 14px;
	font-size: 14px;
	text-transform: uppercase;
}

.footer-column ul,
.footer-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column ul {
	columns: 1;
}

.footer-column li,
.footer-contact li {
	margin-bottom: 8px;
	font-size: 14px;
}

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

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

.footer-contact h2 {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.map-box {
	overflow: hidden;
	min-height: 150px;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-gray);
}

.map-box iframe {
	display: block;
	width: 100%;
	height: 150px;
	border: 0;
}

.footer-bottom {
	background: var(--kt-black);
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
}

.footer-bottom .container {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-block: 13px;
}

.footer-bottom p {
	margin: 0;
}

.quote-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.quote-modal.is-open {
	display: flex;
}

.quote-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.68);
	backdrop-filter: blur(4px);
}

.quote-modal-dialog {
	position: relative;
	width: min(100%, 760px);
	max-height: min(88vh, 820px);
	overflow-y: auto;
	padding: 34px;
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
	outline: none;
}

.quote-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--kt-border);
	border-radius: 50%;
	background: var(--kt-white);
	color: var(--kt-black);
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.quote-modal-close:hover {
	border-color: var(--kt-orange);
	color: var(--kt-orange);
}

.quote-modal-header {
	max-width: 610px;
	margin-bottom: 24px;
}

.quote-modal-header h2 {
	font-size: clamp(28px, 4vw, 40px);
}

.quote-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.quote-option {
	display: grid;
	gap: 8px;
	min-height: 154px;
	padding: 20px;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.quote-option:hover {
	transform: translateY(-3px);
	border-color: var(--kt-orange);
}

.quote-option span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(243, 107, 33, 0.12);
	color: var(--kt-orange);
	font-weight: 900;
}

.quote-option strong {
	color: var(--kt-black);
	font-size: 16px;
	line-height: 1.25;
}

.quote-option small {
	color: #666666;
	font-size: 13px;
	line-height: 1.4;
}

.quote-form-panel {
	margin-top: 18px;
	padding: 22px;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-gray);
}

.quote-form-empty h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.quote-form-empty p {
	margin: 0;
}

.quote-form-panel input,
.quote-form-panel textarea,
.quote-form-panel select {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
	background: var(--kt-white);
	font: inherit;
}

.quote-form-panel textarea {
	min-height: 110px;
	resize: vertical;
}

.quote-form-panel input[type="submit"] {
	width: auto;
	min-width: 150px;
	border-color: var(--kt-orange);
	background: var(--kt-orange);
	color: var(--kt-white);
	font-weight: 800;
	cursor: pointer;
}

.page-hero {
	padding: 86px 0;
	background: linear-gradient(120deg, var(--kt-white) 0%, var(--kt-gray) 100%);
	border-bottom: 1px solid var(--kt-border);
}

.page-hero.compact {
	padding: 70px 0;
}

.page-hero h1 {
	max-width: 860px;
}

.page-hero p:last-child {
	max-width: 680px;
}

.content-section {
	padding: 60px 0;
}

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

.page-featured-image {
	margin-bottom: 30px;
}

.page-featured-image img {
	width: 100%;
	border-radius: var(--kt-radius);
	box-shadow: var(--kt-shadow);
}

.entry-content {
	color: #333333;
}

.entry-content a {
	color: var(--kt-orange);
	font-weight: 700;
}

.entry-content img {
	border-radius: var(--kt-radius);
}

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

.post-card {
	overflow: hidden;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	box-shadow: var(--kt-shadow);
}

.post-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.post-card-content {
	padding: 22px;
}

.post-card time {
	display: block;
	margin-bottom: 8px;
	color: var(--kt-orange);
	font-size: 13px;
	font-weight: 800;
}

.post-card h2 {
	font-size: 22px;
}

.post-card p {
	font-size: 14px;
}

.text-link {
	color: var(--kt-orange);
	font-size: 14px;
	font-weight: 800;
}

.pagination-wrap {
	margin-top: 30px;
}

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

.page-numbers {
	display: grid;
	place-items: center;
	min-width: 36px;
	height: 36px;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
	font-weight: 700;
}

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

.cta-section {
	padding: 48px 0;
	background: var(--kt-gray);
}

.cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border-radius: var(--kt-radius);
	background: var(--kt-white);
	box-shadow: var(--kt-shadow);
}

@media (max-width: 1200px) {
	.header-inner {
		gap: 22px;
	}

	.primary-navigation ul {
		gap: 20px;
	}

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

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

	.about-advantages {
		grid-column: 1 / -1;
		grid-template-columns: repeat(4, 1fr);
		padding: 26px 0 0;
		border-left: 0;
		border-top: 1px solid var(--kt-border);
	}

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

	.process-title {
		text-align: center;
	}

	.process-cta {
		max-width: none;
	}
}

@media (max-width: 992px) {
	.container {
		width: min(100% - 32px, var(--kt-container));
	}

	.header-inner {
		min-height: 82px;
	}

	.site-logo img,
	.custom-logo {
		width: 206px;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

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

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

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

	.primary-navigation {
		position: fixed;
		top: 82px;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		padding: 24px 16px;
		background: var(--kt-white);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
	}

	.primary-navigation.is-open {
		transform: translateX(0);
	}

	.primary-navigation ul {
		display: grid;
		gap: 0;
		width: min(100%, 520px);
		margin-inline: auto;
		border: 1px solid var(--kt-border);
		border-radius: var(--kt-radius);
		overflow: hidden;
	}

	.primary-navigation .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 8px 16px;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-navigation .sub-menu a {
		min-height: 42px;
		padding-left: 18px;
		color: #555555;
		white-space: normal;
	}

	.primary-navigation li + li {
		border-top: 1px solid var(--kt-border);
	}

	.primary-navigation a {
		display: flex;
		min-height: 54px;
		padding: 0 18px;
	}

	.primary-navigation a::after {
		display: none;
	}

	.header-cta {
		display: none;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-block: 42px;
	}

	.hero-section,
	.hero-grid {
		min-height: 0;
	}

	.hero-copy {
		max-width: none;
	}

	.hero-collage {
		height: 430px;
	}

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

	.why-item:nth-child(2) {
		border-right: 0;
	}

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

	.process-step::after {
		display: none;
	}

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

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

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

@media (max-width: 768px) {
	h1 {
		font-size: 42px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .btn {
		width: 100%;
	}

	.hero-collage {
		height: 360px;
	}

	.collage-piece-large {
		width: 66%;
	}

	.collage-piece-top,
	.collage-piece-bottom {
		width: 68%;
	}

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

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

	.about-advantages {
		grid-template-columns: 1fr 1fr;
	}

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

	.why-item {
		border-right: 0;
		padding-right: 0;
	}

	.process-steps {
		grid-template-columns: 1fr;
		padding-inline: 0;
	}

	.footer-main {
		grid-template-columns: 1fr;
	}

	.footer-bottom .container {
		flex-direction: column;
		text-align: center;
	}

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

	.cta-box {
		flex-direction: column;
		align-items: flex-start;
	}

	.quote-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	body {
		font-size: 15px;
	}

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

	.site-logo img,
	.custom-logo {
		width: 178px;
	}

	.hero-section {
		background: var(--kt-white);
	}

	.hero-copy h1 {
		font-size: 36px;
	}

	.hero-copy p {
		font-size: 16px;
	}

	.hero-collage {
		height: 300px;
	}

	.services-grid,
	.references-grid,
	.about-advantages {
		grid-template-columns: 1fr;
	}

	.service-card {
		min-height: 0;
	}

	.reference-card img {
		height: 190px;
	}

	.page-hero.compact,
	.page-hero {
		padding: 52px 0;
	}

	.content-section {
		padding: 42px 0;
	}

	.quote-modal {
		padding: 12px;
	}

	.quote-modal-dialog {
		padding: 26px 18px;
	}
}
