:root {
	--navy-950: #061d2f;
	--navy-900: #08283f;
	--navy-800: #0a3554;
	--blue-600: #0797c8;
	--blue-500: #08a9dc;
	--blue-100: #daf4fc;
	--green-600: #469f38;
	--green-500: #58b947;
	--green-100: #e7f7e4;
	--white: #ffffff;
	--surface: #f4f8fb;
	--surface-blue: #eef8fc;
	--text: #142536;
	--muted: #5b6d7b;
	--border: #dfe9ef;
	--shadow-sm: 0 8px 24px rgba(6, 29, 47, 0.08);
	--shadow-md: 0 18px 48px rgba(6, 29, 47, 0.13);
	--shadow-lg: 0 28px 80px rgba(6, 29, 47, 0.18);
	--radius-sm: 10px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--container: 1220px;
	--transition: 180ms ease;
}

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

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

body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
	color: var(--navy-950);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.14;
}

h1 {
	font-size: clamp(2.55rem, 5.4vw, 4.85rem);
}

h2 {
	margin-bottom: 20px;
	font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
	font-size: 1.22rem;
}

p {
	color: var(--muted);
}

::selection {
	background: var(--blue-100);
	color: var(--navy-950);
}

:focus-visible {
	outline: 3px solid rgba(8, 169, 220, 0.5);
	outline-offset: 3px;
}

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

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

.skip-link {
	position: fixed;
	top: -100px;
	left: 20px;
	z-index: 99999;
	padding: 12px 18px;
	border-radius: 0 0 8px 8px;
	background: var(--white);
	color: var(--navy-950);
	font-weight: 800;
	box-shadow: var(--shadow-md);
}

.skip-link:focus {
	top: 0;
}

.dashicons {
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
}

.status-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7fe26b;
	box-shadow: 0 0 0 5px rgba(127, 226, 107, 0.14);
}

.topbar {
	position: relative;
	z-index: 1010;
	background: var(--navy-950);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.84rem;
}

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

.topbar__status,
.topbar__phone {
	display: flex;
	align-items: center;
	gap: 10px;
}

.topbar__status strong,
.topbar__phone {
	color: var(--white);
}

.topbar__phone {
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: color var(--transition);
}

.topbar__phone:hover {
	color: #83dff7;
}

.topbar__divider {
	width: 1px;
	height: 15px;
	background: rgba(255, 255, 255, 0.24);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(223, 233, 239, 0.9);
	background: rgba(255, 255, 255, 0.94);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	transition: box-shadow var(--transition), background var(--transition);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(6, 29, 47, 0.1);
	background: rgba(255, 255, 255, 0.98);
}

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

.brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 12px;
}

.brand__mark {
	position: relative;
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	overflow: hidden;
	border-radius: 15px;
	background: linear-gradient(145deg, var(--blue-500), var(--blue-600));
	box-shadow: 0 8px 22px rgba(8, 169, 220, 0.22);
}

.brand__ring {
	position: absolute;
	inset: 6px;
	border: 4px solid rgba(255, 255, 255, 0.95);
	border-right-color: var(--green-500);
	border-radius: 50%;
	transform: rotate(-28deg);
}

.brand__letter {
	position: relative;
	z-index: 1;
	color: var(--white);
	font-size: 0.96rem;
	font-weight: 900;
	letter-spacing: -0.09em;
	line-height: 1;
	transform: translateX(-0.04em);
}

.brand__copy {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand__copy strong {
	color: var(--navy-950);
	font-size: 1.12rem;
	font-weight: 900;
	letter-spacing: -0.035em;
	white-space: nowrap;
}

.brand__copy strong span {
	color: var(--green-500);
}

.brand__copy small {
	margin-top: 5px;
	color: #6d7d89;
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.02em;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.7vw, 25px);
	color: #344b5d;
	font-size: 0.89rem;
	font-weight: 750;
}

.main-nav > a:not(.nav-cta) {
	position: relative;
	padding: 29px 0 27px;
	white-space: nowrap;
	transition: color var(--transition);
}

.main-nav > a:not(.nav-cta)::after {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--blue-500);
	content: "";
	transform: scaleX(0);
	transition: transform var(--transition);
}

.main-nav > a:not(.nav-cta):hover {
	color: var(--navy-950);
}

.main-nav > a:not(.nav-cta):hover::after {
	transform: scaleX(1);
}

.nav-cta {
	padding: 11px 17px;
	border-radius: 10px;
	background: var(--navy-900);
	color: var(--white);
	box-shadow: 0 7px 18px rgba(6, 29, 47, 0.14);
	transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
	background: var(--blue-600);
	transform: translateY(-1px);
}

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

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	border-radius: 2px;
	background: var(--navy-950);
	transition: transform var(--transition), opacity var(--transition);
}

.btn {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 23px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

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

.btn--primary {
	background: linear-gradient(135deg, var(--green-500), var(--green-600));
	color: var(--white);
	box-shadow: 0 12px 28px rgba(70, 159, 56, 0.23);
}

.btn--primary:hover {
	box-shadow: 0 15px 34px rgba(70, 159, 56, 0.32);
}

.btn--whatsapp {
	border-color: #1fa855;
	background: #24b65d;
	color: var(--white);
	box-shadow: 0 12px 28px rgba(36, 182, 93, 0.2);
}

.btn--whatsapp:hover {
	background: #1ea552;
}

.btn--light {
	background: var(--white);
	color: var(--navy-950);
	box-shadow: var(--shadow-sm);
}

.btn--light:hover {
	background: #f6fbfd;
}

.btn--outline {
	border-color: #b9ccd7;
	background: transparent;
	color: var(--navy-900);
}

.btn--outline:hover {
	border-color: var(--blue-500);
	background: var(--surface-blue);
}

.btn--large {
	min-height: 58px;
	padding-inline: 27px;
}

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

.eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	color: var(--blue-600);
	font-size: 0.77rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.eyebrow--light {
	color: #82ddf3;
}

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

.section-heading h2 {
	max-width: 790px;
	margin-bottom: 0;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
	align-items: end;
	gap: 80px;
}

.section-heading--split p {
	margin: 0 0 4px;
	font-size: 1.04rem;
}

.section-heading--center {
	max-width: 790px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading--center h2 {
	margin-inline: auto;
}

.section-heading--center p {
	max-width: 690px;
	margin: 18px auto 0;
	font-size: 1.05rem;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 82px 0 0;
	background:
		linear-gradient(105deg, rgba(238, 248, 252, 0.98) 0%, rgba(248, 252, 254, 0.95) 51%, rgba(232, 247, 251, 0.93) 100%);
}

.hero::before {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(8, 40, 63, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(8, 40, 63, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	content: "";
	mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(4px);
	opacity: 0.5;
}

.hero__glow--one {
	top: -280px;
	right: -180px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(8, 169, 220, 0.24), transparent 68%);
}

.hero__glow--two {
	bottom: -280px;
	left: -260px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(88, 185, 71, 0.2), transparent 68%);
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
	align-items: center;
	gap: clamp(48px, 6vw, 86px);
	padding-bottom: 84px;
}

.hero__content {
	padding: 20px 0;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 22px;
	padding: 9px 14px;
	border: 1px solid rgba(8, 169, 220, 0.22);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.84);
	color: var(--navy-800);
	font-size: 0.78rem;
	font-weight: 850;
	letter-spacing: 0.065em;
	text-transform: uppercase;
	box-shadow: 0 5px 18px rgba(6, 29, 47, 0.05);
}

.hero h1 {
	max-width: 720px;
	margin-bottom: 26px;
}

.hero h1 span {
	position: relative;
	color: var(--blue-600);
}

.hero h1 span::after {
	position: absolute;
	right: 0;
	bottom: -4px;
	left: 0;
	height: 6px;
	border-radius: 50%;
	background: var(--green-500);
	content: "";
	opacity: 0.28;
	transform: rotate(-1deg);
}

.hero__lead {
	max-width: 670px;
	margin-bottom: 32px;
	font-size: 1.13rem;
	line-height: 1.72;
}

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

.hero__assurance {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 24px;
	margin-top: 28px;
	color: #435969;
	font-size: 0.84rem;
	font-weight: 750;
}

.hero__assurance div {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hero__assurance .dashicons {
	color: var(--green-500);
	font-size: 1.05rem;
}

.hero__visual {
	position: relative;
	min-width: 0;
}

.hero__image-frame {
	position: relative;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.95);
	border-radius: 34px 34px 90px 34px;
	background: var(--white);
	box-shadow: var(--shadow-lg);
	transform: rotate(1deg);
}

.hero__image-frame img {
	width: 100%;
	aspect-ratio: 1.22 / 1;
	object-fit: cover;
	object-position: center;
}

.hero__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 29, 47, 0.18), transparent 35%);
	pointer-events: none;
}

.hero__badge {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 220px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-md);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.hero__badge > .dashicons {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 12px;
	background: var(--blue-100);
	color: var(--blue-600);
	font-size: 1.25rem;
}

.hero__badge div {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.hero__badge strong {
	color: var(--navy-950);
	font-size: 0.87rem;
}

.hero__badge small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.7rem;
}

.hero__badge--top {
	top: 34px;
	left: -50px;
}

.hero__badge--bottom {
	right: -25px;
	bottom: 34px;
}

.hero__badge-number {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 50%;
	background: var(--green-500);
	color: var(--white);
	font-size: 0.92rem;
	font-weight: 900;
}

.trust-strip {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-bottom: -46px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 20px;
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.trust-strip__item {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 13px;
	padding: 23px 22px;
}

.trust-strip__item:not(:last-child) {
	border-right: 1px solid var(--border);
}

.trust-strip__item > .dashicons {
	display: grid;
	flex: 0 0 auto;
	width: 43px;
	height: 43px;
	place-items: center;
	border-radius: 12px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.2rem;
}

.trust-strip__item:nth-child(2n) > .dashicons {
	background: var(--green-100);
	color: var(--green-600);
}

.trust-strip__item div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	line-height: 1.28;
}

.trust-strip__item strong {
	color: var(--navy-950);
	font-size: 0.9rem;
}

.trust-strip__item small {
	margin-top: 4px;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.7rem;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.services {
	padding-top: 155px;
}

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

.service-card {
	position: relative;
	display: flex;
	min-height: 300px;
	flex-direction: column;
	padding: 27px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card::after {
	position: absolute;
	right: -35px;
	bottom: -35px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--blue-100);
	content: "";
	opacity: 0;
	transition: opacity var(--transition), transform var(--transition);
}

.service-card:hover {
	border-color: rgba(8, 169, 220, 0.42);
	box-shadow: var(--shadow-md);
	transform: translateY(-5px);
}

.service-card:hover::after {
	opacity: 0.6;
	transform: scale(1.5);
}

.service-card__icon {
	display: grid;
	width: 51px;
	height: 51px;
	margin-bottom: 22px;
	place-items: center;
	border-radius: 14px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.42rem;
}

.service-card:nth-child(2n) .service-card__icon {
	background: var(--green-100);
	color: var(--green-600);
}

.service-card h3 {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
}

.service-card h3 a {
	transition: color var(--transition);
}

.service-card h3 a:hover {
	color: var(--blue-600);
}

.service-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	font-size: 0.9rem;
	line-height: 1.66;
}

.text-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: auto;
	color: var(--blue-600);
	font-size: 0.84rem;
	font-weight: 850;
}

.text-link .dashicons {
	transition: transform var(--transition);
}

.text-link:hover .dashicons {
	transform: translateX(4px);
}

.services-callout {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 28px;
	padding: 25px 27px;
	border-radius: var(--radius-md);
	background: linear-gradient(125deg, var(--navy-900), var(--navy-800));
	color: var(--white);
}

.services-callout > div {
	display: flex;
	align-items: center;
	gap: 17px;
}

.services-callout > div > .dashicons {
	display: grid;
	width: 50px;
	height: 50px;
	place-items: center;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.1);
	color: #7edcf4;
	font-size: 1.35rem;
}

.services-callout > div div {
	display: flex;
	flex-direction: column;
}

.services-callout strong {
	font-size: 1rem;
}

.services-callout span {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
}

.camera-feature {
	overflow: hidden;
	background: var(--surface);
}

.feature-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
	align-items: center;
	gap: 78px;
}

.feature-visual {
	position: relative;
}

.feature-visual::before {
	position: absolute;
	top: -22px;
	left: -22px;
	width: 110px;
	height: 110px;
	border-radius: 25px;
	background: var(--green-500);
	content: "";
	opacity: 0.16;
	transform: rotate(-8deg);
}

.feature-visual img {
	position: relative;
	width: 100%;
	min-height: 470px;
	border-radius: 30px 30px 30px 90px;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

.feature-visual__caption {
	position: absolute;
	right: -36px;
	bottom: 30px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 15px 18px;
	border-radius: 15px;
	background: var(--white);
	box-shadow: var(--shadow-md);
}

.feature-visual__caption > .dashicons {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 12px;
	background: var(--blue-100);
	color: var(--blue-600);
	font-size: 1.25rem;
}

.feature-visual__caption div {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.feature-visual__caption strong {
	color: var(--navy-950);
	font-size: 0.88rem;
}

.feature-visual__caption small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.7rem;
}

.feature-content h2 {
	margin-bottom: 23px;
}

.feature-content > p {
	margin-bottom: 27px;
	font-size: 1.02rem;
}

.check-list {
	display: grid;
	gap: 13px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #354c5d;
	font-weight: 700;
}

.check-list .dashicons {
	flex: 0 0 auto;
	color: var(--green-500);
	font-size: 1.2rem;
}

.feature-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 24px;
	margin-top: 33px;
}

.text-link--phone {
	color: var(--navy-800);
}

.why-us {
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 20%, rgba(8, 169, 220, 0.14), transparent 25%),
		radial-gradient(circle at 88% 80%, rgba(88, 185, 71, 0.12), transparent 24%),
		var(--navy-950);
}

.why-us .section-heading h2,
.why-us .section-heading p {
	color: var(--white);
}

.why-us .section-heading p {
	color: rgba(255, 255, 255, 0.66);
}

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

.why-card {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.055);
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.why-card:hover {
	border-color: rgba(126, 220, 244, 0.35);
	background: rgba(255, 255, 255, 0.085);
	transform: translateY(-4px);
}

.why-card > .dashicons {
	display: grid;
	width: 49px;
	height: 49px;
	margin-bottom: 21px;
	place-items: center;
	border-radius: 14px;
	background: rgba(8, 169, 220, 0.16);
	color: #7edcf4;
	font-size: 1.35rem;
}

.why-card:nth-child(2n) > .dashicons {
	background: rgba(88, 185, 71, 0.14);
	color: #96df88;
}

.why-card h3 {
	margin-bottom: 10px;
	color: var(--white);
}

.why-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.88rem;
}

.process {
	background: var(--white);
}

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

.process-grid li {
	position: relative;
	padding: 0 28px;
	text-align: center;
}

.process-grid li:not(:last-child)::after {
	position: absolute;
	top: 34px;
	right: -27%;
	width: 54%;
	border-top: 2px dashed #c8dce6;
	content: "";
}

.process-number {
	position: absolute;
	top: -9px;
	right: 23%;
	z-index: 2;
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 3px solid var(--white);
	border-radius: 50%;
	background: var(--green-500);
	color: var(--white);
	font-size: 0.58rem;
	font-weight: 900;
	box-shadow: var(--shadow-sm);
}

.process-icon {
	display: grid;
	width: 75px;
	height: 75px;
	margin: 0 auto 23px;
	place-items: center;
	border: 1px solid #cfe5ee;
	border-radius: 21px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.75rem;
	box-shadow: 0 10px 28px rgba(6, 29, 47, 0.07);
	transform: rotate(3deg);
}

.process-grid li:nth-child(2n) .process-icon {
	background: var(--green-100);
	color: var(--green-600);
	transform: rotate(-3deg);
}

.process-grid h3 {
	margin-bottom: 9px;
	font-size: 1.08rem;
}

.process-grid p {
	margin: 0;
	font-size: 0.87rem;
}

.equipment {
	background: var(--surface);
}

.equipment-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
	align-items: stretch;
	gap: 38px;
}

.equipment-image {
	position: relative;
	min-height: 590px;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--navy-900);
	box-shadow: var(--shadow-md);
}

.equipment-image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 29, 47, 0.42), transparent 55%);
	content: "";
}

.equipment-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.equipment-image__label {
	position: absolute;
	bottom: 25px;
	left: 25px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	background: rgba(6, 29, 47, 0.82);
	color: var(--white);
	font-size: 0.76rem;
	font-weight: 850;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.equipment-list {
	display: grid;
	align-content: stretch;
	gap: 12px;
}

.equipment-list article {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 21px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.equipment-list article:hover {
	border-color: rgba(8, 169, 220, 0.36);
	box-shadow: var(--shadow-sm);
	transform: translateX(4px);
}

.equipment-list article > .dashicons {
	display: grid;
	flex: 0 0 auto;
	width: 47px;
	height: 47px;
	place-items: center;
	border-radius: 13px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.3rem;
}

.equipment-list article:nth-child(2n) > .dashicons {
	background: var(--green-100);
	color: var(--green-600);
}

.equipment-list h3 {
	margin-bottom: 4px;
	font-size: 1rem;
}

.equipment-list p {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.5;
}

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

.gallery-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr 0.85fr;
	grid-template-rows: repeat(2, 260px);
	gap: 16px;
}

.gallery-item,
.gallery-placeholder {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius-md);
}

.gallery-item--large {
	grid-row: 1 / 3;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 600ms ease;
}

.gallery-item:hover img {
	transform: scale(1.04);
}

.gallery-item::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 29, 47, 0.83), transparent 58%);
	content: "";
}

.gallery-item figcaption {
	position: absolute;
	right: 20px;
	bottom: 18px;
	left: 20px;
	z-index: 1;
	display: flex;
	flex-direction: column;
	color: var(--white);
}

.gallery-item figcaption strong {
	font-size: 1rem;
}

.gallery-item figcaption span {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.75rem;
}

.gallery-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	border: 1px dashed #aac9d7;
	background: var(--surface-blue);
	text-align: center;
}

.gallery-placeholder > .dashicons {
	display: grid;
	width: 55px;
	height: 55px;
	margin-bottom: 15px;
	place-items: center;
	border-radius: 50%;
	background: var(--white);
	color: var(--blue-600);
	font-size: 1.45rem;
	box-shadow: var(--shadow-sm);
}

.gallery-placeholder strong {
	color: var(--navy-950);
}

.gallery-placeholder p {
	margin: 7px 0 0;
	font-size: 0.8rem;
}

.clients {
	background: var(--surface);
}

.clients-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 10px;
}

.clients-grid div {
	display: flex;
	min-height: 125px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 16px 9px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
	text-align: center;
	transition: border-color var(--transition), transform var(--transition);
}

.clients-grid div:hover {
	border-color: var(--blue-500);
	transform: translateY(-3px);
}

.clients-grid .dashicons {
	color: var(--blue-600);
	font-size: 1.55rem;
}

.clients-grid div:nth-child(2n) .dashicons {
	color: var(--green-600);
}

.clients-grid strong {
	color: var(--navy-900);
	font-size: 0.72rem;
	line-height: 1.3;
}

.reviews {
	padding-top: 90px;
	padding-bottom: 90px;
}

.reviews-card {
	position: relative;
	display: grid;
	grid-template-columns: 110px 1fr;
	align-items: center;
	gap: 36px;
	padding: 50px 60px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background:
		radial-gradient(circle at 95% 10%, rgba(8, 169, 220, 0.11), transparent 30%),
		var(--white);
	box-shadow: var(--shadow-sm);
}

.reviews-card__mark {
	display: grid;
	width: 100px;
	height: 100px;
	place-items: center;
	border-radius: 28px;
	background: var(--navy-950);
	color: #79d9f1;
	font-size: 2.2rem;
	transform: rotate(-4deg);
}

.reviews-card .eyebrow {
	margin-bottom: 8px;
}

.reviews-card h2 {
	margin-bottom: 10px;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.reviews-card p {
	margin: 0;
}

.stars {
	margin-bottom: 7px;
	color: #efb324;
	font-size: 1rem;
	letter-spacing: 0.16em;
}

.faq {
	background: var(--surface);
}

.faq-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: 85px;
}

.faq-intro {
	position: sticky;
	top: 135px;
}

.faq-intro p {
	margin-bottom: 28px;
}

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-list details[open] {
	border-color: rgba(8, 169, 220, 0.38);
	box-shadow: var(--shadow-sm);
}

.faq-list summary {
	position: relative;
	padding: 21px 58px 21px 23px;
	color: var(--navy-950);
	font-size: 0.96rem;
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

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

.faq-list details p {
	margin: 0;
	padding: 0 23px 22px;
	font-size: 0.9rem;
}

.faq-plus {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--surface-blue);
	transform: translateY(-50%);
	transition: background var(--transition);
}

.faq-plus::before,
.faq-plus::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 2px;
	border-radius: 2px;
	background: var(--blue-600);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform var(--transition);
}

.faq-plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-plus {
	background: var(--green-100);
}

.faq-list details[open] .faq-plus::after {
	transform: translate(-50%, -50%) rotate(0);
}

.emergency-cta {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.14), transparent 30%),
		linear-gradient(120deg, var(--blue-600), #087da7);
}

.emergency-cta::before {
	position: absolute;
	top: -85px;
	right: 12%;
	width: 230px;
	height: 230px;
	border: 42px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	content: "";
}

.emergency-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	min-height: 265px;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding-top: 45px;
	padding-bottom: 45px;
}

.emergency-cta__inner > div:first-child {
	max-width: 660px;
}

.emergency-cta__label {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 14px;
	color: rgba(255, 255, 255, 0.83);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.emergency-cta h2 {
	margin-bottom: 12px;
	color: var(--white);
}

.emergency-cta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.04rem;
}

.emergency-cta__actions {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 11px;
}

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

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
	align-items: start;
	gap: 70px;
}

.contact-info > p {
	margin-bottom: 30px;
	font-size: 1.01rem;
}

.contact-methods {
	display: grid;
	gap: 10px;
}

.contact-methods > a,
.contact-methods > div {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 15px;
	border: 1px solid var(--border);
	border-radius: 13px;
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-methods > a:hover {
	border-color: rgba(8, 169, 220, 0.43);
	box-shadow: var(--shadow-sm);
}

.contact-methods__icon {
	display: grid;
	flex: 0 0 auto;
	width: 43px;
	height: 43px;
	place-items: center;
	border-radius: 12px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.15rem;
}

.contact-methods__icon--green {
	background: var(--green-100);
	color: var(--green-600);
}

.contact-methods a > span:last-child,
.contact-methods > div > span:last-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.contact-methods small {
	color: var(--muted);
	font-size: 0.7rem;
}

.contact-methods strong {
	overflow: hidden;
	color: var(--navy-950);
	font-size: 0.88rem;
	text-overflow: ellipsis;
}

.service-area {
	margin-top: 27px;
}

.service-area h3 {
	margin-bottom: 8px;
	font-size: 1.04rem;
}

.service-area p {
	margin-bottom: 15px;
	font-size: 0.86rem;
}

.service-area iframe {
	width: 100%;
	height: 235px;
	border: 0;
	border-radius: 15px;
	filter: saturate(0.72) contrast(1.04);
}

.contact-card {
	padding: 38px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-md);
}

.contact-card__heading h2 {
	margin-bottom: 11px;
	font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.contact-card__heading p {
	margin-bottom: 25px;
	font-size: 0.9rem;
}

.form-message {
	margin-bottom: 20px;
	padding: 12px 15px;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
}

.form-message--success {
	border: 1px solid #b9e1b2;
	background: var(--green-100);
	color: #2c6d25;
}

.form-message--error {
	border: 1px solid #f1c6c2;
	background: #fff0ef;
	color: #9a3027;
}

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

.field {
	margin-bottom: 18px;
}

.field label {
	display: block;
	margin-bottom: 7px;
	color: var(--navy-900);
	font-size: 0.76rem;
	font-weight: 800;
}

.field label span {
	color: #c93f35;
}

.field label small {
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 600;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid #cfdde5;
	border-radius: 10px;
	outline: 0;
	background: var(--white);
	color: var(--text);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.field input,
.field select {
	height: 49px;
	padding: 0 14px;
}

.field textarea {
	min-height: 122px;
	padding: 13px 14px;
	resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	border-color: var(--blue-500);
	box-shadow: 0 0 0 3px rgba(8, 169, 220, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
	color: #95a3ad;
}

.field--file input {
	padding: 10px;
	border-style: dashed;
}

.file-name {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 0.69rem;
}

.form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 2px 0 20px;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.45;
}

.consent input {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--blue-600);
}

.consent a {
	color: var(--blue-600);
	font-weight: 750;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.form-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 13px 0 0;
	font-size: 0.68rem;
	text-align: center;
}

.site-footer {
	padding: 78px 0 0;
	background: var(--navy-950);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.85fr 0.75fr 1fr;
	gap: 62px;
	padding-bottom: 62px;
}

.brand--footer .brand__copy strong {
	color: var(--white);
}

.brand--footer .brand__copy small {
	color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
	max-width: 330px;
	margin: 22px 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.85rem;
}

.footer-socials {
	display: flex;
	gap: 9px;
}

.footer-socials a {
	display: grid;
	width: 37px;
	height: 37px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.055);
	color: rgba(255, 255, 255, 0.77);
	transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-socials a:hover {
	background: var(--blue-600);
	color: var(--white);
	transform: translateY(-2px);
}

.social-letter {
	font-size: 0.78rem;
	font-weight: 900;
}

.footer-title {
	margin-bottom: 22px;
	color: var(--white);
	font-size: 0.92rem;
	letter-spacing: 0;
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.79rem;
	list-style: none;
}

.footer-links a,
.footer-contact a {
	transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
	color: #80dbf3;
}

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

.footer-contact .dashicons {
	margin-top: 4px;
	color: #75d3eb;
}

.footer-contact strong {
	color: #90df82;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom .container {
	display: flex;
	min-height: 65px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.7rem;
}

.mobile-actions {
	display: none;
}

/* Faqet e brendshme */
.inner-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(118deg, rgba(6, 29, 47, 0.98), rgba(10, 53, 84, 0.95)),
		var(--navy-950);
}

.inner-hero::after {
	position: absolute;
	right: -80px;
	bottom: -150px;
	width: 420px;
	height: 420px;
	border: 75px solid rgba(8, 169, 220, 0.08);
	border-radius: 50%;
	content: "";
}

.inner-hero__glow {
	position: absolute;
	top: -180px;
	left: 25%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(8, 169, 220, 0.17), transparent 68%);
}

.inner-hero__content {
	position: relative;
	z-index: 1;
	padding-top: 85px;
	padding-bottom: 85px;
}

.inner-hero--compact .inner-hero__content {
	padding-top: 65px;
	padding-bottom: 65px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 27px;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.72rem;
	font-weight: 700;
}

.breadcrumb a {
	transition: color var(--transition);
}

.breadcrumb a:hover {
	color: #7ddbf2;
}

.inner-hero h1 {
	max-width: 850px;
	margin-bottom: 18px;
	color: var(--white);
	font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.inner-hero--compact h1 {
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4.3vw, 3.6rem);
}

.inner-hero__content > p {
	max-width: 720px;
	margin-bottom: 29px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1.08rem;
}

.inner-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-detail__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
	align-items: center;
	gap: 75px;
}

.service-detail__visual {
	position: relative;
}

.service-detail__visual img {
	width: 100%;
	min-height: 490px;
	border-radius: 28px 28px 85px 28px;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

.service-detail__badge {
	position: absolute;
	right: -28px;
	bottom: 24px;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 13px 16px;
	border-radius: 12px;
	background: var(--white);
	color: var(--navy-900);
	font-size: 0.76rem;
	font-weight: 850;
	box-shadow: var(--shadow-md);
}

.service-detail__badge .dashicons {
	color: var(--green-500);
	font-size: 1.15rem;
}

.service-detail__content > p {
	font-size: 1.01rem;
}

.check-list--boxed {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 28px;
}

.check-list--boxed li {
	padding: 12px 13px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: var(--surface);
	font-size: 0.82rem;
}

.service-note {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin-top: 25px;
	padding: 14px 16px;
	border-left: 3px solid var(--blue-500);
	border-radius: 0 10px 10px 0;
	background: var(--surface-blue);
	font-size: 0.8rem !important;
}

.service-note .dashicons {
	flex: 0 0 auto;
	margin-top: 3px;
	color: var(--blue-600);
}

.service-steps {
	background: var(--surface);
}

.service-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}

.service-steps__grid article {
	padding: 27px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--white);
}

.service-steps__grid article > span {
	display: inline-block;
	margin-bottom: 22px;
	color: var(--blue-600);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.service-steps__grid h3 {
	margin-bottom: 9px;
}

.service-steps__grid p {
	margin: 0;
	font-size: 0.85rem;
}

.service-audience {
	padding: 70px 0;
	background: var(--navy-950);
}

.service-audience__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
}

.service-audience h2 {
	margin-bottom: 13px;
	color: var(--white);
}

.service-audience p {
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
}

.service-audience ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.service-audience li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.055);
	color: var(--white);
	font-size: 0.82rem;
	font-weight: 750;
}

.service-audience li .dashicons {
	color: #7bd8f0;
	font-size: 1.2rem;
}

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

.related-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 19px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--white);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.related-card:hover {
	border-color: var(--blue-500);
	box-shadow: var(--shadow-sm);
	transform: translateY(-3px);
}

.related-card__icon {
	display: grid;
	width: 45px;
	height: 45px;
	place-items: center;
	border-radius: 12px;
	background: var(--surface-blue);
	color: var(--blue-600);
	font-size: 1.2rem;
}

.related-card > span:nth-child(2) {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.related-card strong {
	color: var(--navy-950);
	font-size: 0.86rem;
}

.related-card small {
	display: -webkit-box;
	margin-top: 4px;
	overflow: hidden;
	color: var(--muted);
	font-size: 0.7rem;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.related-card > .dashicons {
	color: var(--blue-600);
	font-size: 1rem;
}

.emergency-cta--inner .emergency-cta__inner {
	min-height: 235px;
}

.contact-section--page {
	background: var(--surface);
}

.legal-page {
	background: var(--surface);
}

.legal-page__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
	gap: 70px;
}

.legal-content {
	padding: 45px 50px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.legal-content h2 {
	margin: 35px 0 13px;
	font-size: 1.45rem;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content p,
.legal-content li {
	font-size: 0.93rem;
}

.legal-aside {
	position: sticky;
	top: 130px;
	padding: 28px;
	border-radius: var(--radius-md);
	background: var(--navy-950);
	color: var(--white);
	box-shadow: var(--shadow-md);
}

.legal-aside > .dashicons {
	color: #7bd8f0;
	font-size: 2rem;
}

.legal-aside h2 {
	margin: 22px 0 10px;
	color: var(--white);
	font-size: 1.35rem;
}

.legal-aside p {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.82rem;
}

.not-found {
	display: grid;
	min-height: 70vh;
	place-items: center;
	padding: 80px 0;
	background: var(--surface);
}

.not-found__inner {
	max-width: 730px;
	text-align: center;
}

.not-found__code {
	display: block;
	margin-bottom: -25px;
	color: var(--blue-100);
	font-size: clamp(8rem, 22vw, 15rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.not-found__inner h1 {
	margin-bottom: 15px;
	font-size: clamp(2rem, 5vw, 3.5rem);
}

.not-found__inner p {
	max-width: 560px;
	margin: 0 auto 28px;
}

.not-found__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
}

@media (max-width: 1160px) {
	.site-header__inner {
		min-height: 74px;
	}

	.brand__copy small {
		display: none;
	}

	.main-nav {
		gap: 13px;
		font-size: 0.79rem;
	}

	.main-nav > a:not(.nav-cta) {
		padding-top: 26px;
		padding-bottom: 24px;
	}

	.main-nav > a:not(.nav-cta)::after {
		bottom: 19px;
	}

	.hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
		gap: 46px;
	}

	.hero__badge--top {
		left: -25px;
	}

	.hero__badge--bottom {
		right: -10px;
	}

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

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

	.clients-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.25fr repeat(3, 1fr);
		gap: 36px;
	}
}

@media (max-width: 980px) {
	.section {
		padding: 85px 0;
	}

	.topbar__status span:last-child,
	.topbar__divider {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

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

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

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

	.main-nav {
		position: fixed;
		top: 113px;
		right: 18px;
		left: 18px;
		display: grid;
		max-height: calc(100vh - 135px);
		align-items: stretch;
		gap: 0;
		padding: 12px;
		overflow-y: auto;
		border: 1px solid var(--border);
		border-radius: 17px;
		background: var(--white);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity var(--transition), transform var(--transition);
	}

	.admin-bar .main-nav {
		top: 145px;
	}

	.main-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.main-nav > a:not(.nav-cta) {
		padding: 12px 13px;
		border-bottom: 1px solid var(--border);
	}

	.main-nav > a:not(.nav-cta)::after {
		display: none;
	}

	.nav-cta {
		margin-top: 9px;
		text-align: center;
	}

	.hero {
		padding-top: 65px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		padding-bottom: 70px;
	}

	.hero__content {
		max-width: 760px;
	}

	.hero__visual {
		max-width: 680px;
		margin-inline: auto;
	}

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

	.trust-strip__item:nth-child(2) {
		border-right: 0;
	}

	.trust-strip__item:nth-child(-n + 2) {
		border-bottom: 1px solid var(--border);
	}

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

	.section-heading--split p {
		max-width: 720px;
	}

	.feature-grid,
	.equipment-layout,
	.contact-layout,
	.service-detail__grid {
		grid-template-columns: 1fr;
	}

	.feature-grid {
		gap: 60px;
	}

	.feature-visual {
		max-width: 780px;
	}

	.feature-visual__caption {
		right: 22px;
	}

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

	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 20px;
	}

	.process-grid li:not(:last-child)::after {
		display: none;
	}

	.process-number {
		right: calc(50% - 52px);
	}

	.equipment-image {
		min-height: 480px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 380px 240px 240px;
	}

	.gallery-item--large {
		grid-column: 1 / 3;
		grid-row: auto;
	}

	.faq-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.faq-intro {
		position: static;
		max-width: 650px;
	}

	.contact-layout {
		gap: 55px;
	}

	.contact-info {
		max-width: 760px;
	}

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

	.service-detail__grid {
		gap: 55px;
	}

	.service-detail__visual {
		max-width: 720px;
	}

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

	.service-audience__inner {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.related-services__grid {
		grid-template-columns: 1fr;
	}

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

	.legal-aside {
		position: static;
	}
}

@media (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.admin-bar .main-nav {
		top: 159px;
	}
}

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

	body {
		padding-bottom: 64px;
	}

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

	.section {
		padding: 68px 0;
	}

	.topbar__inner {
		min-height: 34px;
	}

	.topbar__status {
		font-size: 0.72rem;
	}

	.topbar__phone {
		font-size: 0.72rem;
	}

	.site-header__inner {
		min-height: 68px;
	}

	.brand {
		gap: 9px;
	}

	.brand__mark {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.brand__copy strong {
		font-size: 0.98rem;
	}

	.main-nav {
		top: 112px;
	}

	.admin-bar .main-nav {
		top: 158px;
	}

	.hero {
		padding-top: 48px;
	}

	.hero::before {
		opacity: 0.5;
	}

	.hero__grid {
		gap: 42px;
		padding-bottom: 55px;
	}

	.hero__eyebrow {
		font-size: 0.66rem;
	}

	.hero h1 {
		margin-bottom: 20px;
		font-size: clamp(2.35rem, 11vw, 3.4rem);
	}

	.hero__lead {
		font-size: 1rem;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero__actions .btn {
		width: 100%;
	}

	.hero__assurance {
		display: grid;
		gap: 9px;
	}

	.hero__image-frame {
		border-width: 5px;
		border-radius: 24px 24px 55px 24px;
	}

	.hero__badge--top {
		top: 14px;
		left: 12px;
		min-width: 0;
	}

	.hero__badge--bottom {
		right: 10px;
		bottom: 14px;
		min-width: 0;
	}

	.hero__badge {
		max-width: calc(100% - 22px);
		padding: 9px 11px;
	}

	.hero__badge > .dashicons {
		width: 34px;
		height: 34px;
		font-size: 1rem;
	}

	.hero__badge-number {
		width: 38px;
		height: 38px;
		font-size: 0.72rem;
	}

	.hero__badge strong {
		font-size: 0.72rem;
	}

	.hero__badge small {
		font-size: 0.6rem;
	}

	.trust-strip {
		grid-template-columns: 1fr;
		margin-bottom: -34px;
	}

	.trust-strip__item {
		padding: 16px;
		border-right: 0 !important;
		border-bottom: 1px solid var(--border);
	}

	.trust-strip__item:last-child {
		border-bottom: 0;
	}

	.trust-strip__item > .dashicons {
		width: 39px;
		height: 39px;
	}

	.services {
		padding-top: 105px;
	}

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

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

	.section-heading--center h2,
	.section-heading--center p {
		margin-left: 0;
	}

	.services-grid,
	.why-grid,
	.process-grid,
	.form-grid,
	.check-list--boxed,
	.service-steps__grid,
	.service-audience ul,
	.footer-grid {
		grid-template-columns: 1fr;
	}

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

	.services-callout {
		flex-direction: column;
		align-items: stretch;
		padding: 22px;
	}

	.services-callout > div {
		align-items: flex-start;
	}

	.feature-visual img {
		min-height: 310px;
		border-radius: 23px 23px 23px 58px;
	}

	.feature-visual__caption {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

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

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

	.process-grid {
		gap: 38px;
	}

	.process-grid li {
		padding: 0 15px;
		text-align: left;
	}

	.process-icon {
		margin-left: 0;
	}

	.process-number {
		right: auto;
		left: 64px;
	}

	.equipment-image {
		min-height: 330px;
	}

	.equipment-list article {
		align-items: flex-start;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 260px);
	}

	.gallery-item--large {
		grid-column: auto;
	}

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

	.reviews {
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.reviews-card {
		grid-template-columns: 1fr;
		gap: 25px;
		padding: 32px 25px;
	}

	.reviews-card__mark {
		width: 74px;
		height: 74px;
		border-radius: 20px;
		font-size: 1.7rem;
	}

	.faq-list summary {
		padding-left: 18px;
		font-size: 0.88rem;
	}

	.faq-list details p {
		padding-right: 18px;
		padding-left: 18px;
	}

	.emergency-cta__inner {
		align-items: stretch;
		flex-direction: column;
		gap: 27px;
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.emergency-cta__actions {
		width: 100%;
	}

	.contact-card {
		padding: 28px 20px;
		border-radius: 20px;
	}

	.field {
		margin-bottom: 15px;
	}

	.footer-grid {
		gap: 38px;
	}

	.footer-bottom .container {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-top: 16px;
		padding-bottom: 16px;
	}

	.mobile-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 5000;
		display: grid;
		grid-template-columns: 1fr 1fr;
		padding: 7px;
		border-top: 1px solid rgba(255, 255, 255, 0.16);
		background: var(--navy-950);
		box-shadow: 0 -10px 30px rgba(6, 29, 47, 0.18);
	}

	.mobile-actions a {
		display: flex;
		min-height: 49px;
		align-items: center;
		justify-content: center;
		gap: 7px;
		border-radius: 9px;
		color: var(--white);
		font-size: 0.78rem;
		font-weight: 850;
	}

	.mobile-actions__call {
		background: var(--blue-600);
	}

	.mobile-actions__whatsapp {
		background: #23aa56;
	}

	.inner-hero__content {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.inner-hero h1 {
		font-size: clamp(2.2rem, 11vw, 3.2rem);
	}

	.inner-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.service-detail__visual img {
		min-height: 340px;
		border-radius: 23px 23px 60px 23px;
	}

	.service-detail__badge {
		right: 10px;
		bottom: 12px;
		left: 10px;
		justify-content: center;
	}

	.service-steps__grid {
		gap: 12px;
	}

	.service-audience__inner {
		gap: 28px;
	}

	.legal-content {
		padding: 30px 22px;
	}

	.not-found__actions {
		flex-direction: column;
	}
}

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

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

@media print {
	.topbar,
	.site-header,
	.mobile-actions,
	.site-footer,
	.emergency-cta,
	.contact-form {
		display: none !important;
	}

	body {
		padding: 0;
	}

	.section {
		padding: 30px 0;
	}
}
