:root {
	--kt-orange: #f36b21;
	--kt-black: #111111;
	--kt-dark: #222222;
	--kt-gray: #666666;
	--kt-light: #f7f7f7;
	--kt-white: #ffffff;
	--kt-border: #e7e7e7;
	--kt-shadow: 0 14px 35px rgba(17, 17, 17, 0.08);
	--kt-radius: 8px;
	--kt-container: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

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

body.offer-open {
	overflow: hidden;
}

body.reference-lightbox-open {
	overflow: hidden;
}

body.contact-status-open {
	overflow: hidden;
}

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

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

button,
input,
textarea {
	font: inherit;
}

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

.narrow {
	max-width: 860px;
}

.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 {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--kt-white);
	background: var(--kt-black);
}

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

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(243, 107, 33, 0.18);
}

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

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

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

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

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

.dashicons {
	width: auto;
	height: auto;
	font-size: inherit;
	line-height: inherit;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--kt-border);
	backdrop-filter: saturate(140%) blur(10px);
	transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 28px rgba(17, 17, 17, 0.08);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
	min-height: 104px;
}

.site-branding {
	min-width: 210px;
}

.custom-logo-link img {
	max-width: 235px;
	max-height: 72px;
	object-fit: contain;
}

.site-logo-text {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.site-logo-mark {
	display: grid;
	place-items: center;
	width: 52px;
	height: 48px;
	color: var(--kt-white);
	background:
		linear-gradient(135deg, transparent 0 30%, #00a5cf 30% 55%, transparent 55%),
		linear-gradient(45deg, #111 0 46%, #f36b21 46% 62%, #00a651 62% 76%, #0099d8 76%);
	font-weight: 900;
	font-size: 21px;
	letter-spacing: 0;
}

.site-logo-copy {
	display: grid;
	line-height: 1.05;
	text-transform: uppercase;
}

.site-logo-copy strong {
	font-size: 24px;
	font-weight: 900;
}

.site-logo-copy strong:first-letter,
.site-logo-copy span {
	color: var(--kt-orange);
}

.site-logo-copy small {
	color: #555;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
}

.primary-navigation {
	justify-self: end;
}

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

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

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

.primary-navigation a:hover::after,
.primary-navigation .current-menu-item > a::after {
	width: 100%;
}

.header-offer {
	min-width: 128px;
}

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

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 5px auto;
	background: var(--kt-black);
}

.hero-section {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.96), rgba(255, 255, 255, 0.72)),
		radial-gradient(circle at 16% 18%, rgba(243, 107, 33, 0.06), transparent 28%);
}

.hero-section::after {
	content: "";
	position: absolute;
	right: 22px;
	bottom: 42px;
	width: 120px;
	height: 120px;
	opacity: 0.35;
	background-image: radial-gradient(#999 1.3px, transparent 1.3px);
	background-size: 13px 13px;
}

.hero-pattern-left {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 150px;
	height: 115px;
	background:
		linear-gradient(60deg, #f36b21 0 33%, transparent 33%),
		linear-gradient(120deg, transparent 0 35%, #00a5cf 35% 60%, transparent 60%),
		linear-gradient(35deg, transparent 0 45%, #00a651 45% 70%, transparent 70%);
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.25fr);
	align-items: center;
	gap: 46px;
	min-height: 520px;
	padding: 48px 0 42px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 570px;
}

.hero-content h1 {
	margin: 0;
	font-size: clamp(42px, 5vw, 64px);
	line-height: 1.05;
	font-weight: 950;
	letter-spacing: 0;
}

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

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

.hero-content p {
	max-width: 520px;
	margin: 0 0 28px;
	color: #555;
	font-size: 18px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.hero-collage {
	position: relative;
	z-index: 1;
	height: min(48vw, 470px);
	min-height: 360px;
}

.hero-collage::before {
	content: "";
	position: absolute;
	inset: -18px 52px -18px -8px;
	border-left: 3px solid var(--kt-orange);
	transform: skewX(-24deg);
	z-index: 0;
}

.hero-collage img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.hero-collage__main {
	top: 0;
	right: 0;
	width: 70% !important;
	height: 63% !important;
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 86%);
}

.hero-collage__bottom {
	left: 4%;
	bottom: 0;
	width: 55% !important;
	height: 55% !important;
	clip-path: polygon(24% 0, 100% 0, 82% 100%, 0 100%);
}

.hero-collage__side {
	right: 0;
	bottom: 0;
	width: 43% !important;
	height: 46% !important;
	clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.section {
	padding: 34px 0;
}

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

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

.section-heading h2 {
	position: relative;
	display: inline-block;
	margin: 0;
	text-transform: uppercase;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 950;
}

.section-heading h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -9px;
	width: 34px;
	height: 3px;
	background: var(--kt-orange);
	transform: translateX(-50%);
}

.section-kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--kt-orange);
	text-transform: uppercase;
	font-weight: 900;
	font-size: 13px;
}

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

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

.service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 196px;
	padding: 24px 16px 18px;
	text-align: center;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	box-shadow: var(--kt-shadow);
}

.service-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 12px;
	color: var(--kt-orange);
	border: 2px solid var(--kt-orange);
	border-radius: 6px;
	background: #fff8f4;
	font-size: 28px;
}

.service-card h3,
.service-card h2 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.22;
	font-weight: 900;
}

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

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

.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(280px, 0.82fr);
	align-items: center;
	gap: 38px;
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--kt-radius);
}

.about-image img {
	width: 100%;
	aspect-ratio: 1.45 / 1;
	object-fit: cover;
}

.corner-pattern {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 88px;
	height: 72px;
	background:
		linear-gradient(45deg, #f36b21 0 42%, transparent 42%),
		linear-gradient(130deg, transparent 0 40%, #00a5cf 40% 65%, transparent 65%),
		linear-gradient(30deg, transparent 0 45%, #00a651 45% 70%, transparent 70%);
}

.about-content h2,
.page-hero h1,
.contact-info-panel h2,
.contact-form-panel h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1.12;
	font-weight: 950;
	letter-spacing: 0;
}

.about-content p {
	margin: 0 0 20px;
	color: #555;
	font-size: 15px;
}

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

.about-advantages div,
.why-grid div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 16px;
	align-items: start;
}

.about-advantages .dashicons,
.why-grid .dashicons {
	grid-row: span 2;
	color: var(--kt-orange);
	font-size: 38px;
}

.about-advantages strong,
.why-grid strong {
	font-size: 16px;
	font-weight: 900;
}

.about-advantages p,
.why-grid p {
	margin: 2px 0 0;
	color: #555;
	font-size: 13px;
	line-height: 1.4;
}

.why-section {
	padding-top: 10px;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

.why-grid div:not(:last-child) {
	border-right: 1px solid var(--kt-border);
}

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

.reference-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--kt-radius);
	background: var(--kt-light);
	box-shadow: var(--kt-shadow);
}

.reference-card img {
	width: 100%;
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.reference-card span {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 4px;
	color: var(--kt-white);
	background: rgba(17, 17, 17, 0.42);
	backdrop-filter: blur(3px);
	font-weight: 900;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.reference-card span strong,
.reference-card span small {
	display: block;
	max-width: calc(100% - 24px);
	text-align: center;
}

.reference-card span strong {
	font-size: 16px;
	line-height: 1.2;
}

.reference-card span small {
	font-size: 13px;
}

.reference-card:hover img {
	transform: scale(1.06);
	filter: blur(1px);
}

.reference-card:hover span {
	opacity: 1;
}

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

.process-ribbon {
	position: relative;
	overflow: hidden;
	color: var(--kt-white);
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.84)),
		url("../images/placeholder.webp") center / cover;
}

.process-ribbon::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 130px;
	height: 110px;
	background:
		linear-gradient(45deg, #f36b21 0 40%, transparent 40%),
		linear-gradient(130deg, transparent 0 36%, #00a5cf 36% 62%, transparent 62%),
		linear-gradient(30deg, transparent 0 45%, #00a651 45% 70%, transparent 70%);
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.process-inner {
	display: grid;
	grid-template-columns: 0.9fr 1.8fr 0.72fr;
	align-items: stretch;
	gap: 28px;
	min-height: 150px;
}

.process-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.process-copy h2 {
	margin: 0 0 4px;
	font-size: 26px;
	line-height: 1.1;
}

.process-copy p {
	margin: 0;
	color: var(--kt-orange);
	font-weight: 900;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	gap: 20px;
	text-align: center;
}

.process-steps div {
	position: relative;
}

.process-steps div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 28px;
	right: -18px;
	width: 30px;
	border-top: 2px dashed rgba(255, 255, 255, 0.4);
}

.process-steps .dashicons {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 8px;
	color: var(--kt-white);
	background: var(--kt-orange);
	border-radius: 50%;
	font-size: 24px;
}

.process-steps strong,
.process-steps small {
	display: block;
}

.process-steps strong {
	font-weight: 900;
}

.process-steps small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	line-height: 1.35;
}

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

.process-offer h3 {
	margin: 0 0 6px;
	font-size: 24px;
}

.process-offer p {
	margin: 0 0 16px;
	font-size: 13px;
}

.footer-main {
	padding: 28px 0;
	background: var(--kt-white);
}

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

.footer-brand p {
	max-width: 290px;
	margin: 14px 0;
	color: #555;
	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%;
	color: var(--kt-black);
	transition: color 0.2s ease, border-color 0.2s ease;
}

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

.footer-col h3,
.footer-contact h3 {
	margin: 0 0 14px;
	text-transform: uppercase;
	font-size: 14px;
}

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

.footer-col ul {
	columns: 2;
}

.footer-col li {
	break-inside: avoid;
	margin-bottom: 8px;
}

.footer-col a,
.contact-list a {
	color: #555;
	font-size: 14px;
}

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

.contact-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	margin-bottom: 10px;
	color: #555;
	font-size: 14px;
}

.contact-list .dashicons {
	color: var(--kt-orange);
	font-size: 20px;
}

.footer-map,
.contact-map {
	overflow: hidden;
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
}

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

.map-placeholder {
	display: grid;
	place-items: center;
	min-height: 150px;
	padding: 18px;
	text-align: center;
	color: var(--kt-orange);
	background:
		linear-gradient(45deg, rgba(243, 107, 33, 0.08), rgba(0, 165, 207, 0.08)),
		var(--kt-light);
}

.map-placeholder .dashicons {
	font-size: 32px;
}

.map-placeholder strong,
.map-placeholder small {
	display: block;
	color: var(--kt-black);
}

.footer-bottom {
	padding: 13px 0;
	color: var(--kt-white);
	background: var(--kt-black);
	font-size: 12px;
}

.footer-bottom p {
	margin: 0;
}

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

.offer-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 20px;
}

.offer-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(17, 17, 17, 0.62);
}

.offer-modal__panel {
	position: relative;
	width: min(100%, 560px);
	padding: 34px;
	background: var(--kt-white);
	border-radius: var(--kt-radius);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.offer-modal__panel h2 {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.15;
}

.offer-modal__panel p {
	margin: 0 0 20px;
	color: #555;
}

.offer-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: var(--kt-light);
	cursor: pointer;
}

.offer-options {
	display: grid;
	gap: 12px;
}

.offer-options a {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 12px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
}

.offer-options .dashicons {
	grid-row: span 2;
	color: var(--kt-orange);
	font-size: 28px;
}

.offer-options strong,
.offer-options small {
	display: block;
}

.offer-options small {
	color: #555;
}

.page-hero {
	padding: 72px 0;
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.98), rgba(255, 255, 255, 0.88)),
		radial-gradient(circle at 85% 20%, rgba(243, 107, 33, 0.08), transparent 24%);
	border-bottom: 1px solid var(--kt-border);
}

.page-hero p {
	max-width: 640px;
	margin: 0;
	color: #555;
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

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

.post-card__image img {
	width: 100%;
	aspect-ratio: 1.48 / 1;
	object-fit: cover;
}

.post-card__body {
	padding: 20px;
}

.post-card h2 {
	margin: 0 0 10px;
	font-size: 21px;
	line-height: 1.2;
}

.post-card p {
	margin: 0 0 14px;
	color: #555;
}

.read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--kt-orange);
	font-weight: 900;
}

.pagination-wrap {
	grid-column: 1 / -1;
	margin-top: 18px;
}

.single-content {
	padding: 56px 0;
}

.single-thumb {
	overflow: hidden;
	margin-bottom: 28px;
	border-radius: var(--kt-radius);
}

.single-thumb img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

.entry-content {
	color: #333;
}

.entry-content h2,
.entry-content h3 {
	line-height: 1.2;
}

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

.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 32px;
	align-items: start;
}

.contact-info-panel,
.contact-form-panel {
	padding: 28px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	box-shadow: var(--kt-shadow);
}

.contact-map {
	margin-top: 22px;
}

.contact-map iframe,
.contact-map .map-placeholder {
	min-height: 270px;
}

.contact-form {
	display: grid;
	gap: 15px;
}

.contact-form label {
	display: grid;
	gap: 7px;
	color: var(--kt-black);
	font-weight: 800;
	font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.search-form input[type="search"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--kt-border);
	border-radius: 5px;
	background: var(--kt-white);
}

.contact-form textarea {
	resize: vertical;
}

.form-message {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 5px;
	font-weight: 800;
}

.form-message-success {
	color: #176b3a;
	background: #e9f8ef;
}

.form-message-error {
	color: #9d281a;
	background: #fff0ec;
}

.contact-form-panel h2 {
	font-weight: 680;
}

.contact-form label {
	color: #333;
	font-size: 13px;
	font-weight: 620;
	line-height: 1.35;
}

.contact-form label small {
	color: #777;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.45;
}

.contact-form input,
.contact-form textarea {
	color: #222;
	font-weight: 400;
	line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #9a9a9a;
	font-weight: 400;
}

.contact-form input[type="file"] {
	padding: 10px;
	color: #666;
	background: #fafafa;
	border-style: dashed;
	font-size: 13px;
}

.contact-file-field {
	padding: 12px;
	background: #fcfcfc;
	border: 1px solid var(--kt-border);
	border-radius: 6px;
}

.contact-submit-status {
	position: fixed;
	inset: 0;
	z-index: 3200;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(17, 17, 17, 0.48);
	backdrop-filter: blur(3px);
}

.contact-submit-status[hidden] {
	display: none;
}

.contact-submit-status__panel {
	display: grid;
	place-items: center;
	gap: 14px;
	width: min(100%, 320px);
	min-height: 170px;
	padding: 26px;
	text-align: center;
	background: var(--kt-white);
	border-radius: 9px;
	box-shadow: 0 24px 70px rgba(17, 17, 17, 0.28);
}

.contact-submit-status__panel strong {
	color: var(--kt-black);
	font-size: 18px;
	font-weight: 680;
	line-height: 1.3;
}

.contact-submit-status__spinner {
	width: 42px;
	height: 42px;
	border: 3px solid rgba(243, 107, 33, 0.16);
	border-top-color: var(--kt-orange);
	border-radius: 50%;
	animation: kt-contact-spin 0.8s linear infinite;
}

.contact-submit-status[data-state="success"] .contact-submit-status__spinner {
	display: grid;
	place-items: center;
	border-color: var(--kt-orange);
	animation: none;
}

.contact-submit-status[data-state="success"] .contact-submit-status__spinner::before {
	content: "";
	width: 16px;
	height: 9px;
	border-left: 3px solid var(--kt-orange);
	border-bottom: 3px solid var(--kt-orange);
	transform: translateY(-2px) rotate(-45deg);
}

.contact-submit-status[data-state="error"] .contact-submit-status__spinner {
	display: none;
}

@keyframes kt-contact-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 576px) {
	.contact-submit-status__panel {
		min-height: 150px;
		padding: 22px;
	}

	.contact-submit-status__panel strong {
		font-size: 16px;
	}
}

.services-rich-section {
	padding-top: 48px;
}

.services-rich-intro {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.services-rich-intro h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.15;
	font-weight: 760;
}

.services-rich-intro p {
	margin: 0;
	color: #555;
	font-size: 17px;
	line-height: 1.7;
}

.services-rich-group {
	margin-top: 54px;
}

.services-rich-group:first-of-type {
	margin-top: 0;
}

.services-rich-group__header {
	display: grid;
	grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
	gap: 24px;
	align-items: end;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--kt-border);
}

.services-rich-group__header h2 {
	margin: 0;
	font-size: clamp(24px, 2.5vw, 34px);
	line-height: 1.15;
	font-weight: 760;
}

.services-rich-group__header p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.65;
}

.services-rich-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.services-rich-card {
	display: flex;
	flex-direction: column;
	min-height: 230px;
	padding: 22px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(17, 17, 17, 0.06);
}

.services-rich-card h3 {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.25;
	font-weight: 740;
}

.services-rich-card p {
	margin: 0 0 18px;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.services-whatsapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	margin-top: auto;
	padding: 8px 12px;
	color: var(--kt-white);
	background: #1fa855;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 720;
	line-height: 1.2;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.services-whatsapp-button:hover,
.services-whatsapp-button:focus-visible {
	background: #168a45;
	box-shadow: 0 10px 20px rgba(31, 168, 85, 0.2);
	transform: translateY(-1px);
}

@media (max-width: 1200px) {
	.services-rich-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.services-rich-group__header {
		grid-template-columns: 1fr;
		gap: 10px;
	}

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

@media (max-width: 576px) {
	.services-rich-section {
		padding-top: 34px;
	}

	.services-rich-intro {
		margin-bottom: 32px;
		text-align: left;
	}

	.services-rich-intro p,
	.services-rich-group__header p {
		font-size: 14px;
	}

	.services-rich-group {
		margin-top: 40px;
	}

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

	.services-rich-card {
		min-height: 0;
		padding: 18px;
	}

	.services-rich-card h3 {
		font-size: 18px;
	}
}

.corporate-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
	gap: 34px;
	align-items: stretch;
}

.corporate-intro-copy h2,
.corporate-fields-copy h2,
.corporate-cta-box h2 {
	margin: 0 0 14px;
	font-size: clamp(28px, 3.2vw, 42px);
	line-height: 1.15;
	font-weight: 760;
}

.corporate-intro-copy p,
.corporate-fields-copy p,
.corporate-cta-box p {
	margin: 0 0 14px;
	color: #555;
	font-size: 16px;
	line-height: 1.75;
}

.corporate-highlight-panel {
	display: grid;
	align-content: center;
	padding: 28px;
	background: var(--kt-black);
	border-radius: 8px;
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.14);
}

.corporate-highlight-panel strong {
	display: block;
	margin-bottom: 18px;
	color: var(--kt-white);
	font-size: 22px;
	line-height: 1.25;
}

.corporate-highlight-panel ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.corporate-highlight-panel li {
	display: flex;
	gap: 10px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.5;
}

.corporate-highlight-panel .dashicons {
	flex: 0 0 auto;
	color: var(--kt-orange);
	font-size: 18px;
}

.corporate-values-grid,
.corporate-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.corporate-values-grid article,
.corporate-process-grid article {
	padding: 24px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: 8px;
	box-shadow: 0 12px 26px rgba(17, 17, 17, 0.06);
}

.corporate-values-grid .dashicons {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	color: var(--kt-orange);
	border: 2px solid var(--kt-orange);
	border-radius: 8px;
	font-size: 25px;
}

.corporate-values-grid h3,
.corporate-process-grid h3,
.corporate-fields-list strong {
	margin: 0 0 9px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 740;
}

.corporate-values-grid p,
.corporate-process-grid p {
	margin: 0;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.corporate-fields-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 34px;
	align-items: start;
}

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

.corporate-fields-list div {
	padding: 20px;
	background: var(--kt-light);
	border: 1px solid var(--kt-border);
	border-radius: 8px;
}

.corporate-fields-list strong,
.corporate-fields-list span {
	display: block;
}

.corporate-fields-list span {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
}

.corporate-process-grid article {
	position: relative;
	overflow: hidden;
}

.corporate-process-grid article > span {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	color: var(--kt-white);
	background: var(--kt-orange);
	border-radius: 50%;
	font-weight: 800;
}

.corporate-cta-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 30px;
	color: var(--kt-white);
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.88)),
		url("../images/placeholder.webp") center / cover;
	border-radius: 8px;
}

.corporate-cta-box h2,
.corporate-cta-box p {
	color: var(--kt-white);
}

.corporate-cta-box p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.84);
}

.corporate-cta-box .btn {
	flex: 0 0 auto;
}

@media (max-width: 992px) {
	.corporate-intro-grid,
	.corporate-fields-grid {
		grid-template-columns: 1fr;
	}

	.corporate-values-grid,
	.corporate-process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 576px) {
	.corporate-intro-section,
	.corporate-values-section,
	.corporate-fields-section,
	.corporate-process-section,
	.corporate-cta-section {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.corporate-highlight-panel,
	.corporate-values-grid article,
	.corporate-process-grid article,
	.corporate-fields-list div,
	.corporate-cta-box {
		padding: 18px;
	}

	.corporate-values-grid,
	.corporate-process-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.corporate-cta-box .btn {
		width: 100%;
	}
}

.campaign-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.98), rgba(255, 255, 255, 0.82)),
		radial-gradient(circle at 85% 20%, rgba(243, 107, 33, 0.08), transparent 26%);
	border-bottom: 1px solid var(--kt-border);
}

.campaign-hero::after {
	content: "";
	position: absolute;
	right: 22px;
	top: 78px;
	width: 120px;
	height: 120px;
	opacity: 0.35;
	background-image: radial-gradient(#999 1.3px, transparent 1.3px);
	background-size: 13px 13px;
}

.campaign-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
	align-items: center;
	gap: 42px;
	min-height: 300px;
	padding: 40px 0 34px;
}

.campaign-hero__content {
	position: relative;
	z-index: 2;
}

.campaign-hero__content h1 {
	margin: 0 0 12px;
	font-size: clamp(44px, 5vw, 66px);
	line-height: 1.05;
	font-weight: 950;
	letter-spacing: 0;
}

.campaign-hero__content p {
	max-width: 520px;
	margin: 0;
	color: #555;
	font-size: 18px;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--kt-black);
	font-weight: 800;
	font-size: 15px;
}

.breadcrumb strong {
	color: var(--kt-orange);
}

.campaign-hero__collage {
	position: relative;
	z-index: 1;
	height: 280px;
}

.campaign-hero__collage::before {
	content: "";
	position: absolute;
	inset: -18px 52px -18px -8px;
	border-left: 3px solid var(--kt-orange);
	transform: skewX(-24deg);
}

.campaign-hero__image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0 18px 40px rgba(17, 17, 17, 0.16);
}

.campaign-hero__image-main {
	left: 0;
	top: 0;
	width: 45% !important;
	height: 68% !important;
	clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.campaign-hero__image-top {
	right: 0;
	top: 0;
	width: 56% !important;
	height: 38% !important;
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.campaign-hero__image-bottom {
	right: 0;
	bottom: 0;
	width: 65% !important;
	height: 60% !important;
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.campaign-featured-section {
	padding-top: 22px;
}

.campaign-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
}

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

.campaign-card__media {
	position: relative;
}

.campaign-image {
	--campaign-image-ratio: 16 / 9;
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: var(--campaign-image-ratio);
	overflow: hidden;
	margin: 0;
	background: var(--kt-light);
	border-radius: 5px;
}

.campaign-image--card {
	border-radius: var(--kt-radius) var(--kt-radius) 0 0;
}

.campaign-image--single {
	margin-bottom: 28px;
	border-radius: var(--kt-radius);
}

.campaign-image__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.campaign-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 6px 11px;
	color: var(--kt-white);
	background: var(--kt-orange);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 900;
}

.campaign-card__icon {
	position: absolute;
	left: 50%;
	bottom: -28px;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	color: var(--kt-orange);
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: 50%;
	box-shadow: var(--kt-shadow);
	transform: translateX(-50%);
	font-size: 28px;
}

.campaign-card__body {
	display: flex;
	flex-direction: column;
	min-height: 265px;
	padding: 46px 24px 20px;
	text-align: center;
}

.campaign-card__body h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.15;
	font-weight: 950;
}

.campaign-card__body p {
	margin: 0 0 18px;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}

.campaign-benefit {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: auto 0 12px;
	color: var(--kt-black);
	font-weight: 900;
	font-size: 14px;
}

.campaign-benefit .dashicons {
	color: var(--kt-orange);
	font-size: 22px;
}

.campaign-card__body small {
	display: block;
	margin-bottom: 16px;
	color: #555;
	font-size: 13px;
}

.campaign-card__button {
	width: 100%;
	min-height: 44px;
}

.campaign-details-section {
	padding-top: 12px;
}

.campaign-detail-list {
	display: grid;
	gap: 10px;
}

.campaign-detail-row {
	display: grid;
	grid-template-columns: 280px minmax(0, 1.1fr) minmax(360px, 1.6fr) auto;
	align-items: center;
	gap: 24px;
	padding: 10px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

.campaign-detail-row .campaign-image {
	width: 100%;
}

.campaign-detail-row h3 {
	margin: 0 0 6px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 950;
}

.campaign-detail-row p {
	margin: 0;
	color: #555;
	font-size: 13px;
	line-height: 1.45;
}

.campaign-detail-row ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.campaign-detail-row li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #333;
	font-size: 13px;
}

.campaign-detail-row li .dashicons {
	color: var(--kt-orange);
	font-size: 18px;
}

.campaign-advantages {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--kt-border);
}

.campaign-advantages div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 16px;
	align-items: start;
}

.campaign-advantages div:not(:last-child) {
	border-right: 1px solid var(--kt-border);
}

.campaign-advantages .dashicons {
	grid-row: span 2;
	color: var(--kt-orange);
	font-size: 46px;
}

.campaign-advantages strong {
	font-size: 16px;
	font-weight: 950;
}

.campaign-advantages p {
	margin: 2px 0 0;
	color: #555;
	font-size: 13px;
	line-height: 1.42;
}

.campaign-steps-section {
	padding-top: 4px;
}

.campaign-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.campaign-steps div {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 16px;
	align-items: center;
}

.campaign-steps div:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 34px;
	right: -28px;
	width: 38px;
	border-top: 2px dashed #cfcfcf;
}

.campaign-steps .dashicons {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	color: var(--kt-orange);
	border: 2px solid var(--kt-orange);
	border-radius: 50%;
	font-size: 34px;
}

.campaign-steps strong {
	font-size: 16px;
	font-weight: 950;
}

.campaign-steps p {
	margin: 0;
	color: #555;
	font-size: 13px;
	line-height: 1.42;
}

.campaign-cta-ribbon {
	position: relative;
	overflow: hidden;
	color: var(--kt-white);
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.84)),
		url("../images/placeholder.webp") center / cover;
}

.campaign-cta-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 130px;
	padding: 22px 0;
}

.campaign-cta-inner h2 {
	margin: 0 0 4px;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.15;
	font-weight: 950;
}

.campaign-cta-inner h2 span {
	color: var(--kt-orange);
}

.campaign-cta-inner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 17px;
}

.footer-grid {
	grid-template-columns: 1.25fr 0.85fr 1fr 1.45fr;
	gap: 32px;
}

.single-campaign-box {
	margin-bottom: 26px;
	padding: 22px;
	background: var(--kt-light);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
}

.single-campaign-box .campaign-benefit {
	justify-content: flex-start;
	margin: 0 0 10px;
}

.single-campaign-box p {
	margin: 0 0 14px;
}

.single-campaign-box ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.single-campaign-box li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #333;
}

.single-campaign-box li .dashicons {
	color: var(--kt-orange);
}

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

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

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

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

	.about-advantages {
		grid-column: 1 / -1;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		padding-left: 0;
		border-left: 0;
	}
}

/* Reference archive page. */
.reference-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.98), rgba(255, 255, 255, 0.82)),
		radial-gradient(circle at 85% 20%, rgba(243, 107, 33, 0.08), transparent 26%);
	border-bottom: 1px solid var(--kt-border);
}

.reference-hero::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 70px;
	width: 120px;
	height: 120px;
	opacity: 0.35;
	background-image: radial-gradient(#999 1.3px, transparent 1.3px);
	background-size: 13px 13px;
}

.reference-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
	align-items: center;
	gap: 38px;
	min-height: 300px;
	padding: 38px 0 34px;
}

.reference-hero__content {
	position: relative;
	z-index: 2;
}

.reference-hero__content h1 {
	margin: 0 0 14px;
	font-size: clamp(44px, 5vw, 66px);
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: 0;
}

.reference-hero__content p {
	max-width: 540px;
	margin: 0;
	color: #555;
	font-size: 18px;
}

.reference-hero__collage {
	position: relative;
	z-index: 1;
	height: 280px;
}

.reference-hero__collage::before {
	content: "";
	position: absolute;
	inset: -18px auto -18px 6%;
	width: 3px;
	background: var(--kt-orange);
	transform: skewX(-24deg);
}

.reference-hero__image {
	position: absolute;
	object-fit: cover;
	border: 6px solid var(--kt-white);
	box-shadow: 0 18px 38px rgba(17, 17, 17, 0.14);
}

.reference-hero__image-1 {
	top: 0;
	left: 12%;
	width: 40%;
	height: 52%;
	clip-path: polygon(14% 0, 100% 0, 84% 100%, 0 100%);
}

.reference-hero__image-2 {
	top: 0;
	right: 0;
	width: 52%;
	height: 36%;
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.reference-hero__image-3 {
	left: 8%;
	bottom: 0;
	width: 45%;
	height: 52%;
	clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.reference-hero__image-4 {
	right: 0;
	bottom: 0;
	width: 52%;
	height: 60%;
	clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.reference-filter-section {
	padding: 24px 0 10px;
}

.reference-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
}

.reference-filters button {
	min-width: 130px;
	min-height: 42px;
	padding: 0 22px;
	color: var(--kt-black);
	background: var(--kt-white);
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	box-shadow: 0 8px 18px rgba(17, 17, 17, 0.04);
	font-weight: 700;
	cursor: pointer;
}

.reference-filters button.is-active,
.reference-filters button:hover {
	color: var(--kt-white);
	background: var(--kt-orange);
	border-color: var(--kt-orange);
}

.reference-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

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

.reference-project-card.is-hidden {
	display: none;
}

.reference-project-card__media {
	position: relative;
}

.reference-project-card__media span {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	padding: 6px 10px;
	color: var(--kt-white);
	background: var(--kt-orange);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
}

.reference-project-card__media img {
	width: 100%;
	aspect-ratio: 1.85 / 1;
	object-fit: cover;
}

.reference-project-card__body {
	padding: 18px 20px 16px;
}

.reference-project-card__body h3 {
	margin: 0 0 8px;
	font-size: 21px;
	line-height: 1.2;
	font-weight: 760;
}

.reference-project-card__body p {
	margin: 0 0 14px;
	color: #555;
	font-size: 14px;
	line-height: 1.5;
}

.reference-project-card__meta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 14px;
	color: #555;
	font-size: 12px;
}

.reference-project-card__meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.reference-project-card__meta .dashicons {
	color: var(--kt-orange);
	font-size: 17px;
}

.reference-project-card .btn {
	width: 100%;
}

.reference-detail-list {
	display: grid;
	gap: 10px;
}

.reference-detail-row {
	display: grid;
	grid-template-columns: 250px minmax(0, 1.2fr) minmax(330px, 1.6fr) auto;
	align-items: center;
	gap: 20px;
	padding: 10px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

.reference-detail-row img {
	width: 100%;
	aspect-ratio: 1.85 / 1;
	object-fit: cover;
	border-radius: 5px;
}

.reference-detail-row h3 {
	margin: 0 0 6px;
	font-size: 19px;
	line-height: 1.2;
	font-weight: 760;
}

.reference-detail-row p {
	margin: 0;
	color: #555;
	font-size: 13px;
	line-height: 1.45;
}

.reference-detail-row ul {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, auto));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.reference-detail-row li {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #333;
	font-size: 12px;
}

.reference-detail-row li .dashicons {
	color: var(--kt-orange);
	font-size: 17px;
}

.reference-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--kt-border);
}

.reference-stats div {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 16px;
	align-items: center;
}

.reference-stats div:not(:last-child) {
	border-right: 1px solid var(--kt-border);
}

.reference-stats .dashicons {
	grid-row: span 2;
	color: var(--kt-orange);
	font-size: 46px;
}

.reference-stats strong {
	display: block;
	font-size: 30px;
	line-height: 1;
	font-weight: 800;
}

.reference-stats small {
	color: #333;
	font-weight: 700;
}

.reference-brands-section {
	padding-top: 10px;
}

.reference-brands-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: center;
	gap: 28px;
}

.reference-brand-list {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	align-items: center;
}

.reference-brand-list span {
	display: grid;
	place-items: center;
	min-height: 54px;
	color: #444;
	text-align: center;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	font-weight: 760;
	line-height: 1.15;
}

.reference-testimonial {
	margin: 0;
	padding: 22px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
	box-shadow: var(--kt-shadow);
}

.reference-testimonial::before {
	content: "“";
	display: block;
	color: var(--kt-orange);
	font-size: 42px;
	line-height: 0.8;
	font-weight: 800;
}

.reference-testimonial p {
	margin: 0 0 12px;
	color: #333;
	font-size: 13px;
	line-height: 1.55;
}

.reference-testimonial cite {
	color: var(--kt-black);
	font-style: normal;
	font-weight: 800;
}

.reference-cta-ribbon .campaign-cta-inner h2 span {
	color: var(--kt-orange);
}

.corner-pattern {
	display: none;
}

@media (max-width: 1200px) {
	.reference-detail-row {
		grid-template-columns: 220px minmax(0, 1fr);
	}

	.reference-detail-row ul,
	.reference-detail-row .btn {
		grid-column: 2;
	}

	.reference-detail-row ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.reference-hero__grid,
	.reference-brands-grid {
		grid-template-columns: 1fr;
	}

	.reference-hero__collage {
		height: 330px;
	}

	.reference-project-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reference-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reference-stats div {
		border-right: 0 !important;
	}

	.reference-brand-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.reference-hero__content h1 {
		font-size: 40px;
	}

	.reference-project-grid,
	.reference-detail-row,
	.reference-detail-row ul,
	.reference-stats {
		grid-template-columns: 1fr;
	}

	.reference-detail-row ul,
	.reference-detail-row .btn {
		grid-column: auto;
	}

	.reference-project-card__meta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 576px) {
	.reference-hero__grid {
		min-height: auto;
		padding: 34px 0;
	}

	.reference-hero__collage {
		height: 250px;
	}

	.reference-filters {
		gap: 10px;
	}

	.reference-filters button {
		min-width: 0;
		flex: 1 1 calc(50% - 10px);
		padding-inline: 12px;
	}

	.reference-brand-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.header-inner {
		grid-template-columns: auto auto;
		min-height: 82px;
	}

	.menu-toggle {
		display: block;
		justify-self: end;
	}

	.primary-navigation {
		grid-column: 1 / -1;
		justify-self: stretch;
		display: none;
		padding: 8px 0 18px;
	}

	body.nav-open .primary-navigation {
		display: block;
	}

	.primary-navigation ul {
		display: grid;
		gap: 4px;
	}

	.primary-navigation a {
		display: flex;
		padding: 8px 0;
	}

	.header-offer {
		grid-column: 1 / -1;
		justify-self: stretch;
		display: none;
	}

	body.nav-open .header-offer {
		display: inline-flex;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.hero-content {
		max-width: 720px;
	}

	.hero-collage {
		height: 440px;
	}

	.why-grid,
	.about-advantages,
	.process-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-grid div:not(:last-child) {
		border-right: 0;
	}

	.process-inner {
		grid-template-columns: 1fr;
		padding-top: 28px;
	}

	.footer-grid,
	.contact-grid,
	.content-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

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

	.hero-grid {
		padding: 36px 0;
		gap: 28px;
	}

	.hero-content h1 {
		font-size: 42px;
	}

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

	.hero-collage {
		height: 360px;
		min-height: 310px;
	}

	.services-grid,
	.references-grid,
	.about-grid,
	.footer-grid,
	.contact-grid,
	.content-grid {
		grid-template-columns: 1fr;
	}

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

	.process-steps div:not(:last-child)::after {
		display: none;
	}

	.footer-col ul {
		columns: 1;
	}

	.offer-modal__panel {
		padding: 28px 20px;
	}
}

@media (max-width: 576px) {
	.site-branding {
		min-width: 0;
	}

	.site-logo-copy strong {
		font-size: 20px;
	}

	.site-logo-mark {
		width: 46px;
		height: 42px;
	}

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

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

	.hero-collage {
		height: 310px;
		min-height: 280px;
	}

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

	.process-steps {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.process-steps .dashicons {
		margin-inline: 0;
	}

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

@media (max-width: 1200px) {
	.campaign-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.campaign-detail-row {
		grid-template-columns: 230px minmax(0, 1fr);
	}

	.campaign-detail-row ul,
	.campaign-detail-row .btn {
		grid-column: 2;
	}
}

@media (max-width: 992px) {
	.campaign-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.campaign-hero__collage {
		height: 330px;
	}

	.campaign-advantages,
	.campaign-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.campaign-advantages div:not(:last-child) {
		border-right: 0;
	}

	.campaign-steps div:not(:last-child)::after {
		display: none;
	}

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

@media (max-width: 768px) {
	.campaign-cards,
	.campaign-detail-row,
	.campaign-detail-row ul,
	.campaign-advantages,
	.campaign-steps,
	.single-campaign-box ul {
		grid-template-columns: 1fr;
	}

	.campaign-detail-row ul,
	.campaign-detail-row .btn {
		grid-column: auto;
	}

	.campaign-hero__content h1 {
		font-size: 40px;
	}

	.campaign-hero__collage {
		height: 300px;
	}
}

@media (max-width: 576px) {
	.campaign-hero__grid {
		padding: 34px 0;
	}

	.campaign-hero__content h1 {
		font-size: 34px;
	}

	.campaign-hero__content p {
		font-size: 16px;
	}

	.campaign-hero__collage {
		height: 250px;
	}

	.campaign-card__body {
		min-height: auto;
	}

	.campaign-steps div {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.campaign-steps .dashicons {
		margin-inline: auto;
	}
}

/* Polished typography and mobile header refinements. */
.btn {
	font-weight: 700;
}

.primary-navigation a {
	font-weight: 600;
}

.hero-content h1,
.campaign-hero__content h1 {
	font-weight: 800;
}

.section-heading h2,
.about-content h2,
.page-hero h1,
.contact-info-panel h2,
.contact-form-panel h2,
.campaign-card__body h3,
.campaign-detail-row h3,
.campaign-cta-inner h2 {
	font-weight: 760;
}

.service-card h3,
.service-card h2,
.about-advantages strong,
.why-grid strong,
.campaign-advantages strong,
.campaign-steps strong,
.footer-col h3,
.footer-contact h3 {
	font-weight: 700;
}

.section-kicker,
.campaign-benefit,
.process-copy p,
.process-steps strong,
.read-more {
	font-weight: 700;
}

@media (max-width: 992px) {
	.header-inner {
		grid-template-columns: auto minmax(96px, max-content) auto;
		column-gap: 10px;
	}

	.site-branding {
		grid-column: 1;
		grid-row: 1;
	}

	.header-offer {
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
		display: inline-flex;
		min-width: 104px;
		min-height: 42px;
		padding-inline: 14px;
		font-size: 13px;
	}

	.header-offer .dashicons {
		display: none;
	}

	.menu-toggle {
		grid-column: 3;
		grid-row: 1;
	}

	.primary-navigation {
		grid-row: 2;
	}

	body.nav-open .header-offer {
		display: inline-flex;
	}
}

@media (max-width: 576px) {
	.header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	.header-offer {
		min-width: 92px;
		padding-inline: 10px;
	}
}

/* Hero collage alignment closer to the reference design. */
.hero-grid {
	grid-template-columns: minmax(0, 0.86fr) minmax(610px, 1.34fr);
	gap: 34px;
	min-height: 520px;
}

.hero-collage {
	height: 450px;
	min-height: 450px;
	margin-right: -18px;
	overflow: visible;
}

.hero-collage::before {
	inset: -34px auto -34px -36px;
	width: 3px;
	border-left: 0;
	background: var(--kt-orange);
	transform: skewX(-23deg);
	z-index: 3;
}

.hero-collage img {
	border: 7px solid var(--kt-white);
	box-shadow: none;
}

.hero-collage__main {
	top: 0;
	right: 0;
	z-index: 1;
	width: 70% !important;
	height: 66% !important;
	clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 92%);
}

.hero-collage__bottom {
	left: 6%;
	bottom: 0;
	z-index: 2;
	width: 55% !important;
	height: 52% !important;
	clip-path: polygon(22% 0, 100% 0, 80% 100%, 0 100%);
}

.hero-collage__side {
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 48% !important;
	height: 47% !important;
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1200px) {
	.hero-grid {
		grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
	}

	.hero-collage {
		height: 410px;
		min-height: 410px;
		margin-right: 0;
	}
}

@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-collage {
		height: 420px;
		min-height: 420px;
	}
}

@media (max-width: 768px) {
	.hero-collage {
		height: 340px;
		min-height: 340px;
	}
}

@media (max-width: 576px) {
	.hero-collage {
		height: 285px;
		min-height: 285px;
	}

	.hero-collage img {
		border-width: 4px;
	}
}

/* Final hero composition: compact diagonal collage like the supplied reference. */
.hero-section {
	min-height: 0;
}

.hero-grid {
	grid-template-columns: minmax(390px, 0.84fr) minmax(560px, 1.16fr);
	gap: 26px;
	min-height: 470px;
	padding: 34px 0 30px;
}

.hero-collage {
	height: 405px;
	min-height: 405px;
	margin-right: 0;
	overflow: visible;
	isolation: isolate;
}

.hero-collage::before {
	top: -44px;
	bottom: -36px;
	left: 7%;
	width: 3px;
	height: auto;
	background: var(--kt-orange);
	border: 0;
	transform: skewX(-25deg);
	transform-origin: center;
	z-index: 5;
}

.hero-collage img {
	position: absolute;
	display: block;
	object-fit: cover;
	border: 6px solid var(--kt-white);
	box-shadow: none;
	background: var(--kt-white);
}

.hero-collage__main {
	top: 0;
	right: 0;
	z-index: 1;
	width: 64% !important;
	height: 58% !important;
	clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 88%);
}

.hero-collage__bottom {
	left: 18%;
	bottom: 0;
	z-index: 2;
	width: 45% !important;
	height: 63% !important;
	clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}

.hero-collage__side {
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 48% !important;
	height: 48% !important;
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 1200px) {
	.hero-grid {
		grid-template-columns: minmax(360px, 0.86fr) minmax(500px, 1.14fr);
	}

	.hero-collage {
		height: 370px;
		min-height: 370px;
	}
}

@media (max-width: 992px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-collage {
		height: 390px;
		min-height: 390px;
	}

	.hero-collage::before {
		left: 8%;
	}
}

@media (max-width: 768px) {
	.hero-grid {
		padding: 30px 0;
	}

	.hero-collage {
		height: 330px;
		min-height: 330px;
	}
}

@media (max-width: 576px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-collage {
		height: 270px;
		min-height: 270px;
	}

	.hero-collage img {
		border-width: 4px;
	}
}

/* Interactive hero animation for signage, advertising and print. */
.hero-animation {
	--mx: 0;
	--my: 0;
	position: relative;
	height: 430px;
	min-height: 430px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.82) 46%, rgba(247, 247, 247, 0.96)),
		radial-gradient(circle at 72% 18%, rgba(243, 107, 33, 0.18), transparent 28%),
		linear-gradient(135deg, #191919, #303030 44%, #f7f7f7 44.2%);
	box-shadow: 0 18px 45px rgba(17, 17, 17, 0.12);
	isolation: isolate;
}

.hero-animation::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(17, 17, 17, 0.16) 1.2px, transparent 1.2px);
	background-size: 14px 14px;
	opacity: 0.22;
	mask-image: linear-gradient(90deg, transparent 0 62%, #000 86%);
}

.hero-animation::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255, 255, 255, 0.48);
	clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero-animation__beam {
	position: absolute;
	top: -40px;
	left: 13%;
	z-index: 2;
	width: 3px;
	height: 540px;
	background: var(--kt-orange);
	transform: skewX(-24deg);
	box-shadow: 0 0 22px rgba(243, 107, 33, 0.35);
}

.hero-animation__sign,
.hero-animation__print,
.hero-animation__swatches,
.hero-animation__tag {
	transform: translate3d(calc(var(--mx) * var(--depth, 0) * 1px), calc(var(--my) * var(--depth, 0) * 1px), 0);
	transition: transform 0.16s ease-out;
}

.hero-animation__sign {
	--depth: 0.55;
	position: absolute;
	top: 54px;
	right: 54px;
	z-index: 4;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 16px;
	width: 340px;
	min-height: 142px;
	padding: 24px;
	color: var(--kt-white);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
		#111;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	box-shadow:
		0 0 0 8px rgba(255, 255, 255, 0.06),
		0 20px 45px rgba(0, 0, 0, 0.28),
		0 0 28px rgba(255, 255, 255, 0.2);
	clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-animation__logo {
	display: grid;
	place-items: center;
	grid-row: span 2;
	width: 76px;
	height: 76px;
	color: var(--kt-white);
	background:
		linear-gradient(135deg, transparent 0 32%, #00a5cf 32% 56%, transparent 56%),
		linear-gradient(45deg, #111 0 44%, #f36b21 44% 61%, #00a651 61% 76%, #0099d8 76%);
	font-size: 28px;
	font-weight: 800;
	box-shadow: 0 0 18px rgba(255, 255, 255, 0.24);
}

.hero-animation__sign strong,
.hero-animation__sign small {
	display: block;
	text-transform: uppercase;
}

.hero-animation__sign strong {
	font-size: 28px;
	line-height: 1;
	font-weight: 800;
}

.hero-animation__sign small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-weight: 600;
}

.hero-animation__print {
	--depth: -0.42;
	position: absolute;
	right: 34px;
	bottom: 46px;
	z-index: 5;
	width: 360px;
	height: 132px;
	overflow: hidden;
	background: #101010;
	border-radius: 8px;
	box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
}

.hero-animation__roller {
	position: absolute;
	top: 18px;
	left: 24px;
	right: 24px;
	height: 28px;
	background:
		linear-gradient(90deg, #2b2b2b, #777, #1c1c1c),
		linear-gradient(#111, #111);
	border-radius: 999px;
	box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.hero-animation__paper {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 18px;
	display: grid;
	grid-template-columns: repeat(6, 74px);
	gap: 10px;
	height: 66px;
	animation: kt-print-flow 5.8s linear infinite;
}

.hero-animation__paper span {
	display: block;
	border-radius: 4px;
	background:
		linear-gradient(135deg, rgba(243, 107, 33, 0.9) 0 24%, transparent 24%),
		linear-gradient(45deg, transparent 0 38%, rgba(0, 165, 207, 0.9) 38% 58%, transparent 58%),
		linear-gradient(135deg, #fff, #f4f4f4);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-animation__swatches {
	--depth: 0.32;
	position: absolute;
	left: 132px;
	bottom: 72px;
	z-index: 6;
	display: grid;
	grid-template-columns: repeat(2, 54px);
	gap: 10px;
	transform: rotate(-8deg) translate3d(calc(var(--mx) * 8px), calc(var(--my) * 8px), 0);
}

.hero-animation__swatches span {
	width: 54px;
	height: 54px;
	border-radius: 7px;
	box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

.hero-animation__swatches span:nth-child(1) { background: #f36b21; }
.hero-animation__swatches span:nth-child(2) { background: #0099d8; }
.hero-animation__swatches span:nth-child(3) { background: #00a651; }
.hero-animation__swatches span:nth-child(4) { background: #111111; }

.hero-animation__tag {
	position: absolute;
	z-index: 7;
	padding: 10px 14px;
	color: var(--kt-black);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(231, 231, 231, 0.9);
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
	font-size: 13px;
	font-weight: 700;
}

.hero-animation__tag--one {
	--depth: -0.36;
	left: 78px;
	top: 82px;
}

.hero-animation__tag--two {
	--depth: 0.34;
	left: 170px;
	top: 190px;
	color: var(--kt-white);
	background: var(--kt-orange);
	border-color: var(--kt-orange);
}

.hero-animation__tag--three {
	--depth: -0.24;
	right: 110px;
	top: 235px;
}

@keyframes kt-print-flow {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-84px);
	}
}

@media (max-width: 1200px) {
	.hero-animation {
		height: 390px;
		min-height: 390px;
	}

	.hero-animation__sign {
		right: 34px;
		width: 310px;
	}

	.hero-animation__print {
		width: 320px;
	}
}

@media (max-width: 992px) {
	.hero-animation {
		height: 400px;
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.hero-animation {
		height: 330px;
		min-height: 330px;
	}

	.hero-animation__sign {
		top: 38px;
		right: 24px;
		width: 280px;
	}

	.hero-animation__print {
		right: 24px;
		bottom: 32px;
		width: 290px;
	}

	.hero-animation__swatches {
		left: 70px;
		bottom: 64px;
	}

	.hero-animation__tag--two,
	.hero-animation__tag--three {
		display: none;
	}
}

@media (max-width: 576px) {
	.hero-animation {
		height: 285px;
		min-height: 285px;
	}

	.hero-animation__beam {
		left: 9%;
	}

	.hero-animation__sign {
		top: 28px;
		right: 14px;
		width: 236px;
		min-height: 112px;
		padding: 18px;
	}

	.hero-animation__logo {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}

	.hero-animation__sign strong {
		font-size: 21px;
	}

	.hero-animation__print {
		right: 14px;
		bottom: 24px;
		width: 238px;
		height: 102px;
	}

	.hero-animation__paper {
		height: 48px;
		grid-template-columns: repeat(6, 58px);
	}

	.hero-animation__swatches {
		left: 28px;
		bottom: 40px;
		grid-template-columns: repeat(2, 38px);
	}

	.hero-animation__swatches span {
		width: 38px;
		height: 38px;
	}

	.hero-animation__tag--one {
		left: 18px;
		top: 58px;
	}
}

/* Corporate, minimal hero animation override. */
.hero-animation {
	--mx: 0;
	--my: 0;
	height: 410px;
	min-height: 410px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0 18%, rgba(247, 247, 247, 0.9) 18% 28%, transparent 28%),
		linear-gradient(135deg, #171717 0%, #2a2a2a 62%, #f4f4f4 62.2% 100%);
	box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
	isolation: isolate;
}

.hero-animation::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, 0.22) 43%, transparent 50%);
	transform: translateX(-52%);
	animation: kt-light-sweep 5.2s ease-in-out infinite;
	opacity: 0.65;
	pointer-events: none;
	mask-image: linear-gradient(90deg, transparent 0 18%, #000 28% 92%, transparent 100%);
}

.hero-animation::after {
	content: "";
	position: absolute;
	inset: 18px;
	z-index: 1;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 6px;
	clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero-animation__beam,
.hero-animation__sign,
.hero-animation__print,
.hero-animation__swatches,
.hero-animation__tag {
	display: none;
}

.hero-animation__panel,
.hero-animation__sheet,
.hero-animation__accent {
	transform: translate3d(calc(var(--mx) * var(--depth, 0) * 1px), calc(var(--my) * var(--depth, 0) * 1px), 0);
	transition: transform 0.18s ease-out;
}

.hero-animation__panel {
	--depth: 0.42;
	position: absolute;
	top: 54px;
	right: 54px;
	z-index: 2;
	width: 430px;
	height: 230px;
	padding: 34px;
	color: var(--kt-white);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
		#111;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	box-shadow:
		0 0 0 7px rgba(255, 255, 255, 0.045),
		0 24px 54px rgba(0, 0, 0, 0.28),
		0 0 32px rgba(255, 255, 255, 0.12);
	clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-animation__brand {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	column-gap: 18px;
}

.hero-animation__brand span {
	display: grid;
	place-items: center;
	grid-row: span 2;
	width: 82px;
	height: 82px;
	color: var(--kt-white);
	background:
		linear-gradient(135deg, transparent 0 31%, #0099d8 31% 55%, transparent 55%),
		linear-gradient(45deg, #111 0 44%, #f36b21 44% 61%, #00a651 61% 76%, #0099d8 76%);
	font-size: 30px;
	font-weight: 800;
}

.hero-animation__brand strong,
.hero-animation__brand small {
	display: block;
	text-transform: uppercase;
}

.hero-animation__brand strong {
	font-size: 31px;
	line-height: 1;
	font-weight: 760;
	letter-spacing: 0;
}

.hero-animation__brand small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 600;
}

.hero-animation__lines {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 30px;
	display: grid;
	gap: 10px;
}

.hero-animation__lines span {
	display: block;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
}

.hero-animation__lines span:nth-child(1) {
	width: 76%;
	background: var(--kt-orange);
}

.hero-animation__lines span:nth-child(2) {
	width: 58%;
}

.hero-animation__lines span:nth-child(3) {
	width: 42%;
}

.hero-animation__sheet {
	--depth: -0.24;
	position: absolute;
	left: 122px;
	bottom: 58px;
	z-index: 3;
	width: 370px;
	height: 138px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(231, 231, 231, 0.95);
	border-radius: 8px;
	box-shadow: 0 18px 38px rgba(17, 17, 17, 0.14);
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.hero-animation__sheet span {
	display: block;
	height: 10px;
	margin-bottom: 13px;
	border-radius: 999px;
	background: #d9d9d9;
}

.hero-animation__sheet span:nth-child(1) {
	width: 68%;
	background: var(--kt-orange);
}

.hero-animation__sheet span:nth-child(2) {
	width: 86%;
}

.hero-animation__sheet span:nth-child(3) {
	width: 54%;
}

.hero-animation__accent {
	--depth: 0.18;
	position: absolute;
	right: 70px;
	bottom: 52px;
	z-index: 5;
	display: flex;
	gap: 8px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(231, 231, 231, 0.9);
	border-radius: 999px;
	box-shadow: 0 14px 32px rgba(17, 17, 17, 0.12);
}

.hero-animation__accent span {
	width: 18px;
	height: 18px;
	border-radius: 50%;
}

.hero-animation__accent span:nth-child(1) { background: #f36b21; }
.hero-animation__accent span:nth-child(2) { background: #0099d8; }
.hero-animation__accent span:nth-child(3) { background: #00a651; }
.hero-animation__accent span:nth-child(4) { background: #111111; }

@keyframes kt-light-sweep {
	0%, 35% {
		transform: translateX(-58%);
	}
	70%, 100% {
		transform: translateX(58%);
	}
}

@media (max-width: 1200px) {
	.hero-animation {
		height: 380px;
		min-height: 380px;
	}

	.hero-animation__panel {
		right: 34px;
		width: 380px;
		height: 210px;
	}

	.hero-animation__sheet {
		left: 86px;
		width: 330px;
	}
}

@media (max-width: 992px) {
	.hero-animation {
		height: 390px;
		min-height: 390px;
	}
}

@media (max-width: 768px) {
	.hero-animation {
		height: 330px;
		min-height: 330px;
	}

	.hero-animation__panel {
		top: 34px;
		right: 22px;
		width: 310px;
		height: 180px;
		padding: 24px;
	}

	.hero-animation__brand span {
		width: 62px;
		height: 62px;
		font-size: 24px;
	}

	.hero-animation__brand strong {
		font-size: 23px;
	}

	.hero-animation__sheet {
		left: 36px;
		bottom: 34px;
		width: 288px;
		height: 116px;
	}

	.hero-animation__accent {
		right: 28px;
		bottom: 28px;
	}
}

@media (max-width: 576px) {
	.hero-animation {
		height: 285px;
		min-height: 285px;
	}

	.hero-animation__panel {
		top: 28px;
		right: 14px;
		width: 250px;
		height: 150px;
		padding: 20px;
	}

	.hero-animation__brand span {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.hero-animation__brand strong {
		font-size: 20px;
	}

	.hero-animation__sheet {
		left: 20px;
		bottom: 24px;
		width: 230px;
		height: 94px;
		padding: 18px;
	}

	.hero-animation__accent {
		display: none;
	}
}

/* Final hero: text-only, full-width corporate intro. */
.hero-section {
	min-height: auto;
}

.hero-section::after {
	right: 40px;
	bottom: 46px;
}

.hero-grid {
	display: block;
	min-height: 460px;
	padding: 78px 0 72px;
}

.hero-content {
	width: min(100%, 980px);
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.hero-content h1 {
	max-width: 940px;
	margin-inline: auto;
	font-size: clamp(44px, 6vw, 78px);
	line-height: 1.04;
	font-weight: 780;
}

.hero-content h1 span {
	display: inline;
}

.hero-content .title-line {
	margin: 26px auto;
}

.hero-content p {
	max-width: 760px;
	margin: 0 auto 34px;
	color: #555;
	font-size: 19px;
	line-height: 1.75;
}

.hero-actions {
	justify-content: center;
	gap: 16px;
}

.hero-animation,
.hero-collage {
	display: none;
}

@media (max-width: 768px) {
	.hero-grid {
		padding: 58px 0 54px;
	}

	.hero-content h1 {
		font-size: 42px;
	}

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

@media (max-width: 576px) {
	.hero-content {
		text-align: left;
	}

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

	.hero-content h1 span {
		display: block;
	}

	.hero-content .title-line {
		margin-inline: 0;
	}

	.hero-actions {
		justify-content: stretch;
	}
}

/* Final page heroes: Kampanyalar and Referanslar use the same text-led rhythm as the home hero. */
.campaign-hero__collage,
.reference-hero__collage {
	display: none;
}

.campaign-hero__grid,
.reference-hero__grid {
	display: block;
	min-height: 360px;
	padding: 72px 0 64px;
}

.campaign-hero__content,
.reference-hero__content {
	width: min(100%, 980px);
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.campaign-hero__content h1,
.reference-hero__content h1 {
	max-width: 940px;
	margin-inline: auto;
	font-size: clamp(44px, 6vw, 72px);
	line-height: 1.04;
	font-weight: 780;
}

.campaign-hero__content p,
.reference-hero__content p {
	max-width: 760px;
	margin: 0 auto;
	font-size: 19px;
	line-height: 1.75;
}

.campaign-hero__content .title-line,
.reference-hero__content .title-line {
	margin: 26px auto;
}

.campaign-hero .breadcrumb,
.reference-hero .breadcrumb {
	justify-content: center;
}

@media (max-width: 768px) {
	.campaign-hero__grid,
	.reference-hero__grid {
		min-height: auto;
		padding: 58px 0 54px;
	}

	.campaign-hero__content h1,
	.reference-hero__content h1 {
		font-size: 42px;
	}

	.campaign-hero__content p,
	.reference-hero__content p {
		font-size: 16px;
	}

	.process-steps {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
		text-align: center;
	}

	.process-steps div {
		min-width: 0;
	}

	.process-steps div:not(:last-child)::after {
		display: none;
	}

	.process-steps .dashicons {
		width: 32px;
		height: 32px;
		margin: 0 auto 6px;
		font-size: 18px;
	}

	.process-steps strong {
		font-size: 11px;
		line-height: 1.2;
	}

	.process-steps small {
		display: none;
	}

	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

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

	.footer-col h3,
	.footer-contact h3 {
		margin-bottom: 8px;
		font-size: 11px;
		line-height: 1.2;
	}

	.footer-col ul {
		columns: 1;
	}

	.footer-col li {
		margin-bottom: 6px;
	}

	.footer-col a,
	.footer-contact .contact-list li,
	.footer-contact .contact-list a {
		font-size: 11px;
		line-height: 1.35;
	}

	.footer-contact .contact-list li {
		display: block;
		margin-bottom: 7px;
		padding: 0;
	}

	.footer-contact .contact-list .dashicons {
		display: none;
	}

	.footer-map {
		display: none;
	}
}

@media (max-width: 576px) {
	.campaign-hero__content,
	.reference-hero__content {
		text-align: left;
	}

	.campaign-hero__content h1,
	.reference-hero__content h1 {
		font-size: 36px;
	}

	.campaign-hero__content .title-line,
	.reference-hero__content .title-line {
		margin-inline: 0;
	}

	.campaign-hero .breadcrumb,
	.reference-hero .breadcrumb {
		justify-content: flex-start;
	}

	.process-steps {
		gap: 6px;
	}

	.process-steps .dashicons {
		width: 28px;
		height: 28px;
		font-size: 16px;
	}

	.process-steps strong {
		font-size: 10px;
	}

	.footer-grid {
		gap: 12px;
	}

	.footer-col h3,
	.footer-contact h3 {
		font-size: 10px;
	}

	.footer-col a,
	.footer-contact .contact-list li,
	.footer-contact .contact-list a {
		font-size: 10px;
		word-break: break-word;
	}
}

/* Final mobile header, page hero and process CTA polish. */
.page-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 72px;
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.96), rgba(255, 255, 255, 0.74)),
		radial-gradient(circle at 18% 18%, rgba(243, 107, 33, 0.06), transparent 30%);
	border-bottom: 1px solid var(--kt-border);
}

.page-hero::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 150px;
	height: 115px;
	background:
		linear-gradient(60deg, #f36b21 0 33%, transparent 33%),
		linear-gradient(120deg, transparent 0 35%, #00a5cf 35% 60%, transparent 60%),
		linear-gradient(35deg, transparent 0 45%, #00a651 45% 70%, transparent 70%);
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.page-hero::after {
	content: "";
	position: absolute;
	right: 28px;
	bottom: 38px;
	width: 118px;
	height: 118px;
	opacity: 0.28;
	background-image: radial-gradient(#999 1.3px, transparent 1.3px);
	background-size: 13px 13px;
}

.page-hero .container {
	position: relative;
	z-index: 2;
	width: min(calc(100% - 40px), 980px);
	text-align: center;
}

.page-hero .section-kicker {
	margin-bottom: 12px;
	color: var(--kt-orange);
}

.page-hero h1 {
	position: relative;
	max-width: 940px;
	margin: 0 auto 30px;
	font-size: clamp(44px, 6vw, 72px);
	line-height: 1.04;
	font-weight: 780;
	letter-spacing: 0;
}

.page-hero h1::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -18px;
	width: 56px;
	height: 4px;
	background: var(--kt-orange);
	transform: translateX(-50%);
}

.page-hero p {
	max-width: 760px;
	margin: 0 auto;
	color: #555;
	font-size: 19px;
	line-height: 1.75;
}

@media (max-width: 992px) {
	.header-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		column-gap: 8px;
		min-height: 76px;
	}

	.site-branding {
		min-width: 0;
		overflow: hidden;
	}

	.custom-logo-link {
		display: inline-flex;
		max-width: 100%;
	}

	.custom-logo-link img {
		max-width: 172px;
		max-height: 56px;
	}

	.site-logo-text {
		gap: 8px;
		max-width: 172px;
	}

	.site-logo-mark {
		width: 42px;
		height: 38px;
		font-size: 17px;
	}

	.site-logo-copy strong {
		font-size: 18px;
	}

	.site-logo-copy small {
		font-size: 10px;
	}

	.header-offer {
		min-width: 88px;
		min-height: 40px;
		padding-inline: 12px;
		border-radius: 7px;
		font-size: 13px;
		white-space: nowrap;
		box-shadow: 0 10px 22px rgba(243, 107, 33, 0.18);
	}

	.menu-toggle {
		position: relative;
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
		border-color: rgba(17, 17, 17, 0.1);
		border-radius: 9px;
		background:
			linear-gradient(180deg, #ffffff, #f8f8f8);
		box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
	}

	.menu-toggle span:not(.screen-reader-text) {
		position: absolute;
		width: 22px;
		height: 2px;
		margin: 0;
		border-radius: 999px;
		background: var(--kt-black);
		transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
	}

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

	.menu-toggle span:nth-child(2) {
		transform: translateY(0);
	}

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

	body.nav-open .menu-toggle {
		border-color: rgba(243, 107, 33, 0.35);
		background: #fff7f2;
	}

	body.nav-open .menu-toggle span:nth-child(1) {
		background: var(--kt-orange);
		transform: rotate(45deg);
	}

	body.nav-open .menu-toggle span:nth-child(2) {
		opacity: 0;
		transform: translateX(8px);
	}

	body.nav-open .menu-toggle span:nth-child(3) {
		background: var(--kt-orange);
		transform: rotate(-45deg);
	}

	.primary-navigation {
		margin-top: 8px;
		padding: 12px;
		background: var(--kt-white);
		border: 1px solid var(--kt-border);
		border-radius: 8px;
		box-shadow: 0 18px 38px rgba(17, 17, 17, 0.1);
	}

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

	.primary-navigation a {
		min-height: 42px;
		padding: 9px 12px;
		border-radius: 6px;
		font-weight: 650;
	}

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

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

	.process-offer {
		width: calc(100% + 40px);
		margin-inline: -20px;
		border-radius: 0;
	}
}

@media (max-width: 768px) {
	.page-hero {
		padding: 58px 0 54px;
	}

	.page-hero .container {
		width: min(calc(100% - 28px), 980px);
	}

	.page-hero h1 {
		font-size: 42px;
	}

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

	.process-inner {
		gap: 18px;
	}

	.process-offer {
		width: calc(100% + 28px);
		margin-inline: -14px;
		padding: 22px 18px;
		border-radius: 0;
	}

	.process-offer h3 {
		font-size: 20px;
	}

	.process-offer p {
		max-width: 330px;
		margin-inline: auto;
	}
}

@media (max-width: 576px) {
	.header-inner {
		column-gap: 7px;
		min-height: 70px;
	}

	.custom-logo-link img {
		max-width: 148px;
		max-height: 50px;
	}

	.site-logo-text {
		max-width: 148px;
	}

	.site-logo-copy strong {
		font-size: 16px;
	}

	.site-logo-copy small {
		font-size: 9px;
	}

	.header-offer {
		min-width: 82px;
		min-height: 38px;
		padding-inline: 9px;
		font-size: 12px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
	}

	.page-hero .container {
		text-align: left;
	}

	.page-hero h1 {
		margin-inline: 0;
		font-size: 36px;
	}

	.page-hero h1::after {
		left: 0;
		transform: none;
	}

	.page-hero p {
		margin-inline: 0;
	}
}

@media (max-width: 390px) {
	.custom-logo-link img {
		max-width: 132px;
	}

	.site-logo-text {
		max-width: 132px;
	}

	.header-offer {
		min-width: 76px;
		padding-inline: 8px;
		font-size: 11px;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}
}

/* Final reference showcase page. */
.reference-showcase-page .reference-showcase-hero {
	background:
		linear-gradient(120deg, rgba(247, 247, 247, 0.96), rgba(255, 255, 255, 0.78)),
		radial-gradient(circle at 18% 18%, rgba(243, 107, 33, 0.04), transparent 30%);
}

.reference-showcase-page .reference-hero__grid {
	display: block;
	min-height: 300px;
	padding: 72px 0 64px;
}

.reference-showcase-page .reference-hero__content {
	width: min(100%, 980px);
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
}

.reference-showcase-page .reference-hero__content h1 {
	max-width: 940px;
	margin-inline: auto;
	font-size: clamp(44px, 6vw, 72px);
	line-height: 1.04;
	font-weight: 780;
}

.reference-showcase-page .reference-hero__content p {
	max-width: 760px;
	margin: 0 auto;
	color: #555;
	font-size: 18px;
	line-height: 1.75;
}

.reference-showcase-page .reference-hero__content .title-line {
	margin: 26px auto 18px;
}

.reference-showcase-page .breadcrumb {
	justify-content: center;
}

.reference-showcase-section {
	padding-top: 42px;
}

.reference-showcase-list {
	display: grid;
	gap: 58px;
}

.reference-showcase-row {
	position: relative;
}

.reference-showcase-row__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 24px;
	margin-bottom: 12px;
}

.reference-showcase-row__header h2 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	font-weight: 760;
}

.reference-showcase-row__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	color: #555;
	font-size: 12px;
	font-weight: 650;
}

.reference-showcase-row__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.reference-showcase-row__meta .dashicons {
	display: inline-grid;
	place-items: center;
	width: 19px;
	height: 19px;
	color: var(--kt-orange);
	border: 1px solid rgba(243, 107, 33, 0.42);
	border-radius: 50%;
	font-size: 12px;
}

.reference-showcase-gallery {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 14px;
}

.reference-gallery-card {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: #ececec;
	border-radius: 5px;
	box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
	cursor: zoom-in;
}

.reference-gallery-card img {
	width: 100%;
	aspect-ratio: 1.28 / 1;
	object-fit: cover;
	transition: transform 0.25s ease, filter 0.25s ease;
}

.reference-gallery-card figcaption {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 16px;
	color: var(--kt-white);
	text-align: center;
	background: rgba(17, 17, 17, 0.68);
	opacity: 0;
	font-size: 15px;
	font-weight: 760;
	line-height: 1.25;
	transition: opacity 0.25s ease;
}

.reference-gallery-card:hover img,
.reference-gallery-card:focus-within img {
	filter: brightness(0.62);
	transform: scale(1.04);
}

.reference-gallery-card:hover figcaption,
.reference-gallery-card:focus-within figcaption {
	opacity: 1;
}

.reference-gallery-card:focus-visible {
	outline: 3px solid rgba(243, 107, 33, 0.35);
	outline-offset: 3px;
}

.reference-showcase-button {
	width: min(100%, 340px);
	margin-top: 12px;
	border-color: rgba(243, 107, 33, 0.58);
	background: var(--kt-white);
	font-weight: 760;
}

.reference-showcase-button[aria-expanded="true"] {
	color: var(--kt-white);
	background: var(--kt-orange);
}

.reference-showcase-detail {
	scroll-margin-top: 120px;
}

.reference-showcase-detail__inner {
	margin-top: 18px;
	padding: 22px;
	background: var(--kt-light);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
}

.reference-showcase-detail__inner h3 {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 760;
}

.reference-showcase-detail__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.reference-showcase-page .reference-stats-section {
	padding-top: 48px;
}

.reference-showcase-page .reference-stats {
	padding: 0 0 34px;
	border-top: 1px solid var(--kt-border);
	border-bottom: 1px solid var(--kt-border);
}

.reference-showcase-page .reference-stats div {
	padding-top: 30px;
}

@media (max-width: 1200px) {
	.reference-showcase-gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.reference-showcase-page .reference-hero__grid {
		min-height: auto;
		padding: 58px 0 54px;
	}

	.reference-showcase-page .reference-hero__content h1 {
		font-size: 42px;
	}

	.reference-showcase-gallery,
	.reference-showcase-detail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.reference-showcase-row > .reference-showcase-gallery .reference-gallery-card:nth-child(n+3) {
		display: none;
	}

	.reference-showcase-list {
		gap: 42px;
	}

	.reference-showcase-row__header {
		display: grid;
		gap: 8px;
	}

	.reference-showcase-row__meta {
		gap: 10px;
	}
}

@media (max-width: 576px) {
	.reference-showcase-page .reference-hero__content {
		text-align: left;
	}

	.reference-showcase-page .reference-hero__content h1 {
		font-size: 36px;
	}

	.reference-showcase-page .reference-hero__content .title-line {
		margin-inline: 0;
	}

	.reference-showcase-page .breadcrumb {
		justify-content: flex-start;
	}

	.reference-showcase-section {
		padding-top: 32px;
	}

	.reference-showcase-gallery,
	.reference-showcase-detail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reference-showcase-row__header h2 {
		font-size: 16px;
	}

	.reference-showcase-row__meta {
		font-size: 11px;
	}

	.reference-showcase-button {
		width: 100%;
	}

	.reference-showcase-detail__inner {
		padding: 16px;
	}
}

.reference-lightbox {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: grid;
	place-items: center;
	padding: 28px;
	background: rgba(17, 17, 17, 0.72);
	backdrop-filter: blur(4px);
}

.reference-lightbox[hidden] {
	display: none;
}

.reference-lightbox__panel {
	position: relative;
	width: min(100%, 980px);
	max-height: calc(100vh - 56px);
	padding: 18px;
	background: var(--kt-white);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.reference-lightbox__panel img {
	width: 100%;
	max-height: calc(100vh - 150px);
	object-fit: contain;
	background: #f2f2f2;
	border-radius: 6px;
}

.reference-lightbox__panel p {
	margin: 12px 44px 0 0;
	color: var(--kt-black);
	font-size: 15px;
	font-weight: 760;
	line-height: 1.35;
}

.reference-lightbox__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--kt-white);
	background: var(--kt-orange);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 12px 22px rgba(17, 17, 17, 0.24);
	cursor: pointer;
}

.reference-lightbox__close .dashicons {
	font-size: 20px;
}

@media (max-width: 768px) {
	.reference-lightbox {
		padding: 18px;
	}

	.reference-lightbox__panel {
		max-height: calc(100vh - 36px);
		padding: 12px;
	}

	.reference-lightbox__panel img {
		max-height: calc(100vh - 126px);
	}
}

@media (max-width: 576px) {
	.reference-lightbox {
		padding: 12px;
	}

	.reference-lightbox__panel {
		border-radius: 7px;
	}

	.reference-lightbox__panel p {
		margin-right: 0;
		font-size: 13px;
	}

	.reference-lightbox__close {
		top: 8px;
		right: 8px;
		width: 34px;
		height: 34px;
	}
}

/* SEO content blocks: responsive and visually aligned with existing single pages. */
.footer-address {
	margin: 0;
	font-style: normal;
}

.service-seo-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.service-seo-content section {
	padding: 22px;
	background: var(--kt-light);
	border: 1px solid var(--kt-border);
	border-radius: var(--kt-radius);
}

.service-seo-content h2 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 760;
}

.service-seo-content p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.7;
}

.service-seo-cta {
	color: var(--kt-white);
	background: var(--kt-orange) !important;
	border-color: var(--kt-orange) !important;
}

.service-seo-cta p {
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 16px;
}

@media (max-width: 768px) {
	.service-seo-content {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.service-seo-content section {
		padding: 18px;
	}

	.service-seo-content h2 {
		font-size: 20px;
	}
}

/* Final home services cards: desktop, tablet and mobile safe. */
.services-section {
	padding-top: 30px;
}

.services-section > .container {
	width: min(calc(100% - 48px), 1600px);
}

.services-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	min-height: 330px;
	padding: 34px 22px 24px;
	border-color: #dedede;
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.service-icon {
	width: 66px;
	height: 66px;
	margin-bottom: 24px;
	border-width: 2px;
	border-radius: 7px;
	background: var(--kt-white);
	box-shadow: 0 10px 22px rgba(243, 107, 33, 0.08);
	font-size: 34px;
}

.service-card h3,
.service-card h2 {
	max-width: 100%;
	margin-bottom: 14px;
	font-size: 20px;
	line-height: 1.22;
	font-weight: 760;
	text-wrap: balance;
}

.service-card p {
	max-width: 230px;
	margin: 0 auto 26px;
	color: #5f5f5f;
	font-size: 15px;
	line-height: 1.55;
}

.service-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
}

.service-contact-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
	min-height: 44px;
	padding: 6px 10px;
	color: var(--kt-orange);
	background: var(--kt-white);
	border: 1px solid var(--kt-orange);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 760;
	line-height: 1.15;
	text-align: center;
	white-space: normal;
	overflow-wrap: anywhere;
	cursor: pointer;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-contact-button--combo {
	justify-content: space-between;
	gap: 12px;
	width: min(100%, 205px);
	min-height: 42px;
	padding: 0 5px 0 14px;
	border-radius: 7px;
	font-size: 12px;
	white-space: nowrap;
	overflow-wrap: normal;
}

.service-contact-button--combo span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.service-contact-button--combo i {
	display: grid;
	flex: 0 0 34px;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--kt-orange);
	border: 2px solid var(--kt-orange);
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.service-contact-button:hover,
.service-contact-button:focus-visible {
	color: var(--kt-white);
	background: var(--kt-orange);
	box-shadow: 0 10px 20px rgba(243, 107, 33, 0.18);
	transform: translateY(-1px);
}

.service-contact-button--combo:hover i,
.service-contact-button--combo:focus-visible i {
	color: var(--kt-orange);
	background: var(--kt-white);
	border-color: var(--kt-white);
}

.service-actions .circle-arrow {
	width: 44px;
	height: 44px;
	margin-top: 0;
	font-size: 22px;
	transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.service-actions .circle-arrow:hover,
.service-actions .circle-arrow:focus-visible {
	color: var(--kt-white);
	background: var(--kt-orange);
	transform: translateY(-1px);
}

@media (max-width: 1200px) {
	.services-section > .container {
		width: min(calc(100% - 40px), var(--kt-container));
	}

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

	.service-card {
		min-height: 278px;
	}

	.service-card p {
		max-width: 260px;
	}
}

@media (max-width: 768px) {
	.services-section > .container {
		width: min(calc(100% - 28px), var(--kt-container));
	}

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

	.service-card {
		min-height: 250px;
		padding: 26px 14px 18px;
	}

	.service-icon {
		width: 58px;
		height: 58px;
		margin-bottom: 18px;
		font-size: 29px;
	}

	.service-card h3,
	.service-card h2 {
		font-size: 18px;
	}

	.service-card p {
		margin-bottom: 20px;
		font-size: 13px;
	}

	.service-actions {
		justify-content: center;
	}

	.service-contact-button {
		min-height: 40px;
		padding-inline: 8px;
		font-size: 11px;
	}

	.service-contact-button--combo {
		width: min(100%, 190px);
		padding: 0 4px 0 10px;
	}

	.service-contact-button--combo i {
		flex-basis: 32px;
		width: 32px;
		height: 32px;
		font-size: 18px;
	}

	.service-actions .circle-arrow {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
}

@media (max-width: 420px) {
	.services-grid {
		grid-template-columns: 1fr;
	}

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

	.service-contact-button {
		font-size: 12px;
	}
}

/* Home campaign previews replacing the old reference preview section. */
.home-campaigns-section .references-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.campaign-preview-card img {
	aspect-ratio: 1.55 / 1;
}

.campaign-preview-card span {
	background: rgba(17, 17, 17, 0.5);
	backdrop-filter: blur(2px);
}

.campaign-preview-card span strong {
	font-size: 15px;
	font-weight: 760;
}

@media (max-width: 1200px) {
	.home-campaigns-section .references-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}
}

@media (max-width: 768px) {
	.home-campaigns-section .references-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.campaign-preview-card span strong {
		font-size: 13px;
	}
}

@media (max-width: 420px) {
	.home-campaigns-section .references-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile page hero cleanup: keep decorative shapes away from titles and breadcrumbs. */
@media (max-width: 576px) {
	.campaign-hero .hero-pattern-left,
	.reference-hero .hero-pattern-left,
	.page-hero::before {
		display: none;
	}

	.campaign-hero::after,
	.reference-hero::after,
	.page-hero::after {
		right: 12px;
		bottom: 18px;
		width: 86px;
		height: 86px;
		opacity: 0.12;
	}

	.campaign-hero__grid,
	.reference-hero__grid,
	.page-hero {
		padding-top: 48px;
		padding-bottom: 42px;
	}

	.campaign-hero__content,
	.reference-hero__content,
	.page-hero .container {
		position: relative;
		z-index: 2;
		text-align: left;
	}

	.campaign-hero__content h1,
	.reference-hero__content h1,
	.page-hero h1 {
		max-width: 100%;
		font-size: clamp(30px, 8.4vw, 34px);
		line-height: 1.12;
		overflow-wrap: break-word;
	}

	.campaign-hero__content p,
	.reference-hero__content p,
	.page-hero p {
		max-width: 100%;
		font-size: 15px;
		line-height: 1.7;
	}

	.campaign-hero__content .title-line,
	.reference-hero__content .title-line {
		margin-top: 22px;
		margin-bottom: 18px;
	}

	.campaign-hero .breadcrumb,
	.reference-hero .breadcrumb {
		display: inline-flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		max-width: 100%;
		margin-top: 2px;
		padding: 9px 12px;
		background: rgba(255, 255, 255, 0.94);
		border: 1px solid var(--kt-border);
		border-radius: 8px;
		box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
		font-size: 13px;
		line-height: 1.25;
	}

	.campaign-hero .breadcrumb a,
	.reference-hero .breadcrumb a,
	.campaign-hero .breadcrumb strong,
	.reference-hero .breadcrumb strong {
		white-space: nowrap;
	}

	.campaign-hero .breadcrumb strong,
	.reference-hero .breadcrumb strong {
		color: var(--kt-orange);
	}
}


/* Reference image normalization v3 — intentionally last to override legacy rules. */
.reference-gallery-card {
	aspect-ratio: 420 / 260 !important;
}
.reference-gallery-card > img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	object-fit: cover !important;
	object-position: center !important;
}
.reference-lightbox__panel {
	box-sizing: border-box !important;
	width: min(820px, calc(100vw - 40px)) !important;
	max-width: 820px !important;
	max-height: calc(100vh - 40px) !important;
}
.reference-lightbox__media {
	box-sizing: border-box !important;
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 420 / 260 !important;
	overflow: hidden !important;
}
.reference-lightbox__media > img[data-ref-lightbox-image] {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
}
@media (max-width: 600px) {
	.reference-lightbox__panel {
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		padding: 10px !important;
	}
}


/* ===== Referanslar 3'lü kart düzeni - v4 ===== */
.reference-showcase-list--cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
}

.reference-showcase-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 22px;
	background: var(--kt-white);
	border: 1px solid var(--kt-border);
	border-radius: 18px;
	box-shadow: 0 16px 42px rgba(17, 17, 17, 0.06);
	height: 100%;
}

.reference-showcase-card .reference-showcase-row__header {
	display: grid;
	gap: 10px;
	margin-bottom: 0;
}

.reference-showcase-card .reference-showcase-row__header h2 {
	font-size: 18px;
	line-height: 1.25;
	min-height: 45px;
}

.reference-showcase-card .reference-showcase-row__meta {
	gap: 10px 16px;
}

.reference-showcase-cover {
	position: relative;
	min-height: 0;
}

.reference-showcase-cover img {
	display: block;
	width: 100%;
	aspect-ratio: 420 / 260;
	object-fit: cover;
	object-position: center;
}

.reference-showcase-count {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.78);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	z-index: 2;
}

.reference-showcase-card .reference-showcase-button {
	width: 100%;
	margin-top: 0;
}

.reference-showcase-card .reference-showcase-detail {
	width: 100%;
}

.reference-showcase-card .reference-showcase-detail__inner {
	margin-top: 0;
	padding: 18px;
}

.reference-showcase-card .reference-showcase-detail__inner h3 {
	font-size: 18px;
	margin-bottom: 14px;
}

.reference-showcase-card .reference-showcase-detail__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

@media (max-width: 1200px) {
	.reference-showcase-list--cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.reference-showcase-list--cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.reference-showcase-card {
		padding: 16px;
		gap: 12px;
	}

	.reference-showcase-card .reference-showcase-row__header h2 {
		min-height: auto;
	}

	.reference-showcase-card .reference-showcase-detail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 576px) {
	.reference-showcase-list--cards {
		grid-template-columns: 1fr;
	}

	.reference-showcase-card .reference-showcase-detail__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}


/* ===== Galeri sayfası - v6 ===== */
.gallery-section {
	padding-top: 46px;
	padding-bottom: 70px;
}

.kt-image-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.kt-image-gallery__item {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	overflow: hidden;
	border: 0;
	border-radius: 12px;
	background: #ececec;
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.09);
	cursor: zoom-in;
	aspect-ratio: 4 / 3;
}

.kt-image-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .28s ease, filter .28s ease;
}

.kt-image-gallery__zoom {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(17, 17, 17, .46);
	opacity: 0;
	transition: opacity .25s ease;
}

.kt-image-gallery__zoom .dashicons {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--kt-orange);
	color: #fff;
	font-size: 25px;
	line-height: 52px;
}

.kt-image-gallery__item:hover img,
.kt-image-gallery__item:focus-visible img {
	transform: scale(1.045);
	filter: brightness(.76);
}

.kt-image-gallery__item:hover .kt-image-gallery__zoom,
.kt-image-gallery__item:focus-visible .kt-image-gallery__zoom {
	opacity: 1;
}

.kt-image-gallery__item:focus-visible {
	outline: 3px solid rgba(243, 107, 33, .36);
	outline-offset: 4px;
}

.gallery-empty-state {
	display: grid;
	place-items: center;
	text-align: center;
	padding: 70px 24px;
	border: 1px dashed var(--kt-border);
	border-radius: 18px;
	background: var(--kt-light);
}

.gallery-empty-state > .dashicons {
	width: 60px;
	height: 60px;
	font-size: 60px;
	color: var(--kt-orange);
}

.gallery-empty-state h2 {
	margin: 18px 0 8px;
}

.gallery-empty-state p {
	margin: 0;
	color: #666;
}

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

.kt-gallery-modal[hidden] {
	display: none !important;
}

.kt-gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(0, 0, 0, .82);
	backdrop-filter: blur(5px);
}

.kt-gallery-modal__dialog {
	position: relative;
	width: min(1180px, calc(100vw - 48px));
	max-height: calc(100vh - 48px);
	padding: 18px 64px 16px;
	border-radius: 16px;
	background: #111;
	box-shadow: 0 30px 80px rgba(0,0,0,.38);
}

.kt-gallery-modal__media {
	display: grid;
	place-items: center;
	width: 100%;
	height: min(76vh, 760px);
	overflow: hidden;
	border-radius: 10px;
	background: #090909;
}

.kt-gallery-modal__media img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.kt-gallery-modal__close,
.kt-gallery-modal__nav {
	position: absolute;
	z-index: 3;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: var(--kt-orange);
	cursor: pointer;
}

.kt-gallery-modal__close {
	top: -16px;
	right: -16px;
	width: 48px;
	height: 48px;
}

.kt-gallery-modal__close .dashicons {
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.kt-gallery-modal__nav {
	top: 50%;
	width: 44px;
	height: 44px;
	transform: translateY(-50%);
}

.kt-gallery-modal__nav--prev { left: 10px; }
.kt-gallery-modal__nav--next { right: 10px; }

.kt-gallery-modal__caption {
	min-height: 22px;
	margin: 12px 0 0;
	color: #ddd;
	text-align: center;
	font-size: 14px;
}

@media (max-width: 1100px) {
	.kt-image-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
	.gallery-section { padding-top: 32px; }
	.kt-image-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.kt-gallery-modal { padding: 14px; }
	.kt-gallery-modal__dialog { width: calc(100vw - 28px); padding: 14px 48px 12px; }
	.kt-gallery-modal__media { height: min(72vh, 650px); }
	.kt-gallery-modal__close { top: -10px; right: -10px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
	.kt-image-gallery { gap: 9px; }
	.kt-gallery-modal__dialog { padding-inline: 38px; }
	.kt-gallery-modal__nav { width: 36px; height: 36px; }
	.kt-gallery-modal__nav--prev { left: 2px; }
	.kt-gallery-modal__nav--next { right: 2px; }
}
