:root {
	--bg: #05070d;
	--bg-deep: #090f1d;
	--bg-soft: #0d1528;
	--surface: rgba(13, 21, 40, 0.82);
	--surface-strong: rgba(18, 29, 53, 0.94);
	--surface-soft: rgba(26, 40, 72, 0.7);
	--text: #eef4ff;
	--text-soft: #94a6c7;
	--text-muted: #6f82a6;
	--brand: #2b63ff;
	--brand-strong: #5394ff;
	--brand-deep: #173cc7;
	--brand-glow: rgba(43, 99, 255, 0.28);
	--accent: #d9e4ff;
	--line: rgba(140, 167, 230, 0.2);
	--line-strong: rgba(131, 166, 255, 0.34);
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
	--shadow-soft: 0 18px 42px rgba(3, 7, 18, 0.28);
	--radius: 1.6rem;
	--radius-sm: 1.05rem;
	--radius-xs: 0.85rem;
	--container: min(1180px, calc(100% - 0.9rem));
	--topbar-height: 4.8rem;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

[hidden] {
	display: none !important;
}

.service-sheet[hidden],
.drawer-backdrop[hidden],
.drawer[aria-hidden="true"] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
	background: var(--bg);
}

body {
	min-height: 100vh;
	font-family: Manrope, "Segoe UI", sans-serif;
	line-height: 1.6;
	color: var(--text);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	background:
		radial-gradient(circle at top left, rgba(83, 148, 255, 0.24), transparent 24%),
		radial-gradient(circle at 85% 18%, rgba(43, 99, 255, 0.22), transparent 18%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 20%),
		linear-gradient(180deg, #0a1221 0%, var(--bg) 35%, #05070d 100%);
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: auto;
	pointer-events: none;
	z-index: -1;
	filter: blur(80px);
	opacity: 0.55;
}

body::before {
	top: -6rem;
	left: -8rem;
	width: 18rem;
	height: 18rem;
	background: rgba(48, 117, 255, 0.34);
	border-radius: 999px;
}

body::after {
	right: -5rem;
	bottom: 18%;
	width: 16rem;
	height: 16rem;
	background: rgba(209, 224, 255, 0.12);
	border-radius: 999px;
}

body.drawer-open,
body.service-sheet-open {
	overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
	line-height: 1.08;
	letter-spacing: -0.03em;
}

h1 {
	font-size: clamp(2.45rem, 6vw, 5rem);
	max-width: 12ch;
	margin-bottom: 1rem;
}

h2 {
	font-size: clamp(1.7rem, 4vw, 3rem);
	margin-bottom: 0.9rem;
}

h3 {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	margin-bottom: 0.55rem;
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 300;
	padding: 0.7rem 0.95rem;
	border-radius: 999px;
	background: var(--brand);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.48rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(111, 146, 230, 0.24);
	background: linear-gradient(180deg, rgba(17, 28, 52, 0.82), rgba(10, 16, 30, 0.92));
	color: #d6e5ff;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	margin-bottom: 1rem;
}

.lead,
.section-intro,
.portfolio-card-body span,
.portfolio-summary p,
.coverage-item span,
.policy-card p,
.card-body p,
.quote-card span,
.footer-grid p,
.footer-grid a,
.footer-bottom p {
	color: var(--text-soft);
}

.lead,
.section-intro {
	font-size: clamp(1rem, 2vw, 1.12rem);
	max-width: 64ch;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 80;
	backdrop-filter: blur(22px);
	background: rgba(5, 8, 15, 0.7);
	border-bottom: 1px solid rgba(121, 155, 229, 0.12);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.nav-shell {
	min-height: var(--topbar-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.nav-mobile {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.85rem;
}

.nav-desktop {
	display: none;
	align-items: center;
	gap: 1.1rem;
	font-size: 0.94rem;
	font-weight: 700;
	color: var(--text-soft);
}

.nav-desktop a:not(.btn) {
	position: relative;
	padding: 0.4rem 0;
	transition: color 180ms ease;
}

.nav-desktop a:not(.btn)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.2rem;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand), var(--brand-strong));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn):focus-visible {
	color: var(--text);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.brand-logo {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.95rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(119, 155, 234, 0.22);
	box-shadow: 0 14px 34px rgba(3, 6, 15, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
	padding: 0.22rem;
	object-fit: cover;
}

.brand-copy {
	display: grid;
	min-width: 0;
	line-height: 1.05;
}

.brand-copy strong,
.brand-copy small {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-copy strong {
	font-size: 1rem;
	letter-spacing: 0.16em;
	color: var(--text);
	text-shadow: 0 6px 18px rgba(43, 99, 255, 0.16);
}

.brand-copy small {
	font-size: 0.76rem;
	color: var(--text-muted);
	letter-spacing: 0.05em;
	margin-top: 0.22rem;
}

.flag-badge {
	width: 2.8rem;
	height: 2.8rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(120, 156, 235, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow-soft);
}

.flag-dot {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	background:
		linear-gradient(90deg, #0f2e7c 0 47%, transparent 47% 53%, #dd1636 53% 100%),
		linear-gradient(180deg, transparent 0 47%, #ffffff 47% 53%, transparent 53% 100%),
		#ffffff;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.menu-toggle,
.drawer-close,
.slider-btn,
.service-sheet-close,
.service-sheet-backdrop,
.service-card-button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle {
	width: 2.95rem;
	height: 2.95rem;
	border-radius: 0.8rem;
	display: inline-grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(6, 6, 6, 1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}


.menu-toggle-box {
	position: relative;
	width: 1.18rem;
	height: 0.92rem;
	display: block;
}

.menu-toggle-box span {
	position: absolute;
	left: 0;
	border-radius: 999px;
	background: #ffffff;
	display: block;
	height: 0.14rem;
	box-shadow: none;
	transition: transform 180ms ease, opacity 180ms ease, width 180ms ease, background-color 180ms ease;
}

.menu-toggle-box span:nth-child(1) {
	top: 0;
	width: 100%;
}

.menu-toggle-box span:nth-child(2) {
	top: calc(50% - 0.07rem);
	width: 72%;
}

.menu-toggle-box span:nth-child(3) {
	bottom: 0;
	width: 100%;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}


.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(1) {
	transform: translateY(0.38rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.4);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(3) {
	transform: translateY(-0.38rem) rotate(-45deg);
}

.drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: min(86vw, 23rem);
	z-index: 100;
	transform: translateX(-100%);
	transition: transform 240ms ease;
}

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

.drawer-panel {
	height: 100%;
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 1rem;
	padding: 1rem;
	overflow-y: auto;
	background:
		linear-gradient(180deg, rgba(11, 17, 31, 0.98), rgba(6, 9, 17, 0.98)),
		var(--surface-strong);
	border-right: 1px solid rgba(112, 147, 220, 0.18);
	box-shadow: 28px 0 80px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(22px);
}

.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(118, 151, 223, 0.12);
}

.drawer-close {
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.05);
	color: var(--text);
	border: 1px solid rgba(126, 160, 235, 0.16);
	font-size: 1.45rem;
	line-height: 1;
}

.drawer-nav {
	display: grid;
	align-content: start;
	gap: 0.7rem;
}

.drawer-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 3.45rem;
	padding: 0.95rem 1rem;
	border-radius: 1.05rem;
	background: linear-gradient(180deg, rgba(17, 28, 52, 0.94), rgba(10, 16, 28, 0.96));
	border: 1px solid rgba(118, 151, 223, 0.14);
	color: #dbe7ff;
	font-weight: 700;
	box-shadow: var(--shadow-soft);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
	transform: translateX(4px);
	border-color: rgba(104, 147, 255, 0.34);
	background: linear-gradient(180deg, rgba(20, 37, 73, 0.96), rgba(10, 18, 35, 0.98));
}

.drawer-cta {
	display: grid;
	gap: 0.7rem;
}

.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(3, 6, 12, 0.62);
	backdrop-filter: blur(4px);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3rem;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 800;
	letter-spacing: 0.01em;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-1px);
}

.btn-solid {
	color: #ffffff;
	background: linear-gradient(135deg, var(--brand), var(--brand-strong));
	box-shadow: 0 20px 40px rgba(18, 60, 199, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.btn-solid:hover,
.btn-solid:focus-visible {
	box-shadow: 0 24px 44px rgba(18, 60, 199, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.btn-outline {
	color: var(--text);
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(118, 151, 223, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	border-color: rgba(118, 151, 223, 0.42);
	background: rgba(31, 51, 90, 0.44);
}

.showcase {
	position: relative;
	padding: 2rem 0 1.6rem;
	overflow: clip;
}

.showcase::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
		radial-gradient(circle at 18% 18%, rgba(58, 115, 255, 0.2), transparent 22%),
		radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.08), transparent 18%);
	pointer-events: none;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3));
}

.showcase-grid,
.coverage-grid,
.trust-grid,
.contact-wrap,
.footer-grid,
.portfolio-shell {
	display: grid;
	gap: 1.2rem;
}

.showcase-copy,
.slider,
.metric,
.brand-card,
.coverage-item,
.map-card,
.card,
.trust-panel,
.quote-card,
.policy-card,
.portfolio-copy,
.portfolio-summary,
.portfolio-card,
.step,
.contact-wrap {
	border-radius: var(--radius);
	border: 1px solid rgba(118, 151, 223, 0.14);
	background: linear-gradient(180deg, rgba(18, 29, 53, 0.92), rgba(9, 15, 28, 0.96));
	box-shadow: var(--shadow);
	backdrop-filter: blur(20px);
	position: relative;
	overflow: hidden;
}

.showcase-copy::before,
.slider::before,
.brand-card::before,
.card::before,
.portfolio-card::before,
.quote-card::before,
.policy-card::before,
.contact-wrap::before,
.portfolio-copy::before,
.portfolio-summary::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
	pointer-events: none;
}

.showcase-copy {
	padding: 1.55rem;
	align-self: start;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-cta,
.contact-actions,
.slider-controls,
.service-sheet-actions,
.works-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.metrics,
.coverage-list,
.brands-grid,
.policy-grid,
.cards,
.portfolio-grid {
	display: grid;
	gap: 1rem;
}

.metrics {
	margin-top: 1.45rem;
	grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

.metric {
	padding: 1.05rem;
	background: linear-gradient(180deg, rgba(17, 28, 52, 0.9), rgba(8, 13, 25, 0.94));
	box-shadow: var(--shadow-soft);
}

.metric strong {
	display: block;
	margin-bottom: 0.28rem;
	font-size: 1.25rem;
	color: #ffffff;
}

.metric span {
	color: var(--text-soft);
	font-size: 0.95rem;
}

.slider {
	position: relative;
	min-height: 29rem;
	background: linear-gradient(180deg, #0d1630 0%, #08101f 100%);
	box-shadow: 0 36px 90px rgba(0, 0, 0, 0.44);
}

.slides {
	position: relative;
	min-height: 29rem;
	height: 100%;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 360ms ease, transform 360ms ease;
	transform: scale(1.03);
}

.slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
}

.slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(3, 8, 18, 0.04), rgba(4, 9, 18, 0.84)),
		radial-gradient(circle at 70% 30%, rgba(91, 144, 255, 0.18), transparent 24%);
}

.slide img,
.slide video {
	width: 100%;
	height: 100%;
	min-height: 29rem;
	object-fit: cover;
}

.slide-copy {
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	bottom: 1.25rem;
	z-index: 2;
	max-width: 26rem;
	padding: 1.15rem;
	border-radius: 1.25rem;
	background: rgba(4, 9, 18, 0.58);
	border: 1px solid rgba(130, 163, 230, 0.16);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
	color: #fff;
}

.slide-copy p {
	margin-bottom: 0.35rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #d6e5ff;
}

.slide-copy h2 {
	margin-bottom: 0;
	font-size: clamp(1.45rem, 3vw, 2.2rem);
	max-width: 16ch;
}

.slider-controls {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 4;
	justify-content: space-between;
	align-items: center;
}

.slider-btn {
	width: 2.9rem;
	height: 2.9rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	color: #ffffff;
	font-size: 1.45rem;
	line-height: 1;
}

.slider-dots {
	display: inline-flex;
	gap: 0.5rem;
	padding: 0.55rem 0.7rem;
	border-radius: 999px;
	background: rgba(7, 13, 24, 0.52);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-dot {
	width: 0.76rem;
	height: 0.76rem;
	border-radius: 999px;
	border: 0;
	padding: 0;
	background: rgba(255, 255, 255, 0.26);
	cursor: pointer;
	transition: transform 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
	background: linear-gradient(135deg, var(--brand-strong), #ffffff);
	transform: scale(1.15);
}

.gallery-page-cta {
	position: absolute;
	left: 50%;
	bottom: 4.5rem;
	transform: translateX(-50%);
	z-index: 4;
}

.section {
	padding: 3.7rem 0;
}

.brands-section {
	padding-top: 2rem;
	padding-bottom: 1.6rem;
}

.brands-intro-line {
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.brands-grid,
.cards,
.policy-grid,
.portfolio-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.brand-card,
.policy-card,
.coverage-item {
	padding: 1.15rem;
}

.brand-card {
	background: linear-gradient(180deg, rgba(18, 30, 56, 0.94), rgba(10, 15, 28, 0.96));
	box-shadow: var(--shadow-soft);
}

.brand-card-name {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.4rem 0.85rem;
	margin-bottom: 0.75rem;
	border-radius: 999px;
	background: rgba(43, 99, 255, 0.14);
	border: 1px solid rgba(126, 160, 235, 0.18);
	color: #dfe9ff;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.coverage-grid {
	align-items: start;
}

.map-card {
	padding: 0.9rem;
	background: linear-gradient(180deg, rgba(17, 27, 49, 0.96), rgba(7, 11, 20, 0.98));
}

.coverage-map-canvas,
.coverage-map-fallback {
	min-height: 23rem;
	border-radius: 1.15rem;
	overflow: hidden;
	border: 1px solid rgba(127, 161, 235, 0.16);
	background: #0b1324;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.coverage-map-fallback {
	width: 100%;
	border: 0;
}

.map-tag {
	margin-top: 0.85rem;
	padding: 0.7rem 0.9rem;
	border-radius: 999px;
	display: inline-flex;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(127, 161, 235, 0.14);
	color: #dfe8ff;
	font-weight: 700;
	font-size: 0.9rem;
}

.coverage-list {
	margin-top: 1rem;
}

.coverage-item strong {
	display: block;
	margin-bottom: 0.24rem;
	color: var(--text);
}

.coverage-marker-icon {
	background: transparent;
	border: 0;
}

.coverage-marker-dot {
	display: inline-flex;
	width: 0.95rem;
	height: 0.95rem;
	border-radius: 999px;
	background: radial-gradient(circle at 35% 35%, #ffffff, var(--brand-strong) 42%, var(--brand) 100%);
	box-shadow: 0 0 0 4px rgba(43, 99, 255, 0.18), 0 0 22px rgba(43, 99, 255, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.42);
}

.coverage-marker-label {
	display: inline-flex;
	padding: 0.36rem 0.6rem;
	border-radius: 999px;
	margin-left: calc(0.65rem + var(--label-offset-x, 0px));
	margin-top: var(--label-offset-y, 0px);
	background: rgba(5, 8, 15, 0.82);
	border: 1px solid rgba(129, 162, 236, 0.14);
	color: #eff5ff;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(14px);
}

.cards {
	align-items: stretch;
}

.card {
	padding: 0;
	background: linear-gradient(180deg, rgba(18, 29, 53, 0.95), rgba(7, 11, 21, 0.98));
	transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card:hover,
.card:focus-within {
	transform: translateY(-4px);
	border-color: rgba(112, 151, 236, 0.28);
	box-shadow: 0 36px 72px rgba(0, 0, 0, 0.38);
}

.service-card-button {
	display: grid;
	width: 100%;
	padding: 0;
	color: inherit;
	text-align: left;
}

.card img,
.service-sheet-media-wrap img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: linear-gradient(135deg, #101b35, #07111f);
}

.card-body,
.service-sheet-body {
	padding: 1.15rem;
	display: grid;
	gap: 0.65rem;
}

.card-body h3,
.service-sheet-body h3 {
	margin-bottom: 0;
}

.card-body span,
.service-sheet-highlight,
.service-sheet-meta span,
.service-card-link {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	background: rgba(43, 99, 255, 0.12);
	border: 1px solid rgba(113, 150, 236, 0.16);
	color: #dbe7ff;
	font-size: 0.82rem;
	font-weight: 700;
}

.service-card-link {
	margin-top: 0.2rem;
	background: transparent;
	padding-inline: 0;
	border: 0;
	color: var(--brand-strong);
}

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

.trust-panel,
.quote-card,
.contact-wrap {
	padding: 1.3rem;
}

.trust-points,
.service-sheet-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.75rem;
}

.trust-points li,
.service-sheet-points li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--text-soft);
}

.trust-points li::before,
.service-sheet-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--brand-strong), #ffffff);
	box-shadow: 0 0 0 4px rgba(43, 99, 255, 0.12);
}

.quote-card {
	background:
		radial-gradient(circle at top right, rgba(83, 148, 255, 0.18), transparent 28%),
		linear-gradient(180deg, rgba(17, 27, 50, 0.94), rgba(8, 13, 24, 0.98));
}

.quote-card p {
	font-size: clamp(1.15rem, 2.4vw, 1.5rem);
	line-height: 1.45;
	color: var(--text);
}

.quote-card strong {
	display: block;
	margin-top: 1rem;
	color: #ffffff;
}

.section-dark {
	position: relative;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
		linear-gradient(180deg, #07101d, #05070d);
	border-top: 1px solid rgba(117, 151, 222, 0.08);
	border-bottom: 1px solid rgba(117, 151, 222, 0.08);
}

.eyebrow-dark {
	background: rgba(255, 255, 255, 0.05);
	color: #d9e6ff;
}

.steps {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
	padding: 1.2rem;
	min-height: 100%;
	background: linear-gradient(180deg, rgba(14, 23, 43, 0.95), rgba(7, 11, 20, 0.98));
	box-shadow: var(--shadow-soft);
}

.step span {
	display: inline-grid;
	place-items: center;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 999px;
	margin-bottom: 0.85rem;
	background: linear-gradient(135deg, var(--brand), var(--brand-strong));
	color: #fff;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(18, 60, 199, 0.34);
}

.policy-card h3,
.coverage-item strong,
.contact-wrap h2,
.portfolio-copy h1,
.portfolio-summary strong {
	color: var(--text);
}

.contact-wrap {
	gap: 1rem;
	align-items: center;
	background:
		radial-gradient(circle at top right, rgba(83, 148, 255, 0.16), transparent 24%),
		linear-gradient(180deg, rgba(17, 28, 52, 0.95), rgba(8, 13, 24, 0.98));
}

.wa-float {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.9rem 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #1d46ce, #2b63ff 55%, #6aabff);
	color: #ffffff;
	font-weight: 800;
	box-shadow: 0 24px 48px rgba(5, 12, 28, 0.44);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-float img {
	width: 1.1rem;
	height: 1.1rem;
}

.footer {
	padding: 1.4rem 0 2rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
		#04060c;
	border-top: 1px solid rgba(117, 151, 222, 0.1);
}

.footer-grid {
	padding: 1.4rem 0 0.3rem;
	grid-template-columns: 1fr;
	gap: 1.8rem;
}

.footer-grid h3 {
	font-size: 0.9rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #dbe7ff;
	margin-bottom: 0.7rem;
}

.footer-grid a {
	transition: color 180ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
	color: #ffffff;
}

.footer-brand img {
	width: 3.6rem;
	height: 3.6rem;
}

.footer-brand-block p {
	max-width: 32rem;
	margin-top: 1rem;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	justify-content: space-between;
	padding-top: 1.35rem;
	margin-top: 1.6rem;
	border-top: 1px solid rgba(117, 151, 222, 0.1);
	color: var(--text-muted);
}

.service-sheet {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.service-sheet-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 5, 12, 0.72);
	backdrop-filter: blur(6px);
}

.service-sheet-panel {
	position: relative;
	z-index: 1;
	width: min(100%, 64rem);
	max-height: min(92vh, 52rem);
	overflow: auto;
	border-radius: 1.6rem;
	background: linear-gradient(180deg, rgba(15, 24, 45, 0.98), rgba(7, 11, 20, 0.98));
	border: 1px solid rgba(123, 157, 232, 0.18);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
	display: grid;
	grid-template-columns: 1fr;
	overflow: hidden;
}

.service-sheet-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 1.35rem;
	line-height: 1;
}

.service-sheet-media-wrap {
	background: linear-gradient(135deg, #0f1830, #08111f);
}

.service-sheet-lead {
	font-size: 1rem;
	color: var(--text-soft);
}

.service-sheet-highlight {
	margin-bottom: 0.2rem;
}

.service-sheet-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.portfolio-page {
	background:
		radial-gradient(circle at top left, rgba(83, 148, 255, 0.2), transparent 24%),
		radial-gradient(circle at right 20%, rgba(255, 255, 255, 0.08), transparent 16%),
		linear-gradient(180deg, #09111f 0%, var(--bg) 100%);
}

.portfolio-hero {
	padding: 2rem 0 1.2rem;
}

.portfolio-copy,
.portfolio-summary {
	padding: 1.3rem;
}

.portfolio-summary {
	display: grid;
	gap: 0.85rem;
	align-content: start;
}

.portfolio-summary strong {
	font-size: clamp(2.4rem, 5vw, 3.3rem);
	line-height: 1;
	text-shadow: 0 18px 38px rgba(43, 99, 255, 0.2);
}

.portfolio-grid {
	margin-top: 1.35rem;
}

.portfolio-card {
	background: linear-gradient(180deg, rgba(16, 25, 46, 0.94), rgba(7, 10, 19, 0.98));
	box-shadow: var(--shadow-soft);
}

.portfolio-media-wrap {
	background: linear-gradient(180deg, #0d1630, #080f1d);
}

.portfolio-media-wrap img,
.portfolio-media-wrap video {
	width: 100%;
	aspect-ratio: 16 / 12;
	object-fit: cover;
}

.portfolio-card-body {
	padding: 1rem 1rem 1.08rem;
	display: grid;
	gap: 0.35rem;
}

.portfolio-card-body p {
	margin-bottom: 0.2rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #dce8ff;
}

.portfolio-card-body h3 {
	margin-bottom: 0.15rem;
	font-size: 1.05rem;
	color: var(--text);
}

.portfolio-empty {
	padding: 1.25rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	border: 1px dashed rgba(129, 162, 236, 0.18);
	color: var(--text-soft);
}

.leaflet-control-zoom a {
	background: rgba(10, 16, 30, 0.88) !important;
	color: #e9f1ff !important;
	border-bottom-color: rgba(129, 162, 236, 0.14) !important;
}

.leaflet-control-attribution {
	background: rgba(5, 9, 18, 0.7) !important;
	color: rgba(229, 239, 255, 0.64) !important;
	backdrop-filter: blur(10px);
}

.leaflet-control-attribution a {
	color: #a6c1ff !important;
}

@media (min-width: 760px) {
	.showcase-grid,
	.coverage-grid,
	.trust-grid,
	.portfolio-shell {
		grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
	}

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

	.footer-grid {
		grid-template-columns: 1.2fr repeat(3, minmax(0, 0.7fr));
	}

	.footer-bottom {
		flex-direction: row;
		align-items: center;
	}

	.service-sheet-panel {
		grid-template-columns: minmax(0, 0.94fr) minmax(20rem, 0.82fr);
	}

	.service-sheet-media-wrap img {
		height: 100%;
	}
}

@media (min-width: 980px) {
	.nav-mobile {
		display: none;
	}

	.nav-desktop {
		display: inline-flex;
	}

	.showcase {
		padding-top: 2.6rem;
	}

	.showcase-grid {
		grid-template-columns: minmax(0, 0.96fr) minmax(27rem, 1.04fr);
		align-items: stretch;
	}

	.coverage-grid {
		grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 1.06fr);
	}

	.trust-grid {
		grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.85fr);
	}

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

@media (max-width: 979px) {
	.gallery-page-cta {
		bottom: 5rem;
	}
}

@media (max-width: 759px) {
	body::before {
		width: 12rem;
		height: 12rem;
	}

	h1 {
		max-width: 14ch;
	}

	.showcase-copy,
	.trust-panel,
	.quote-card,
	.contact-wrap,
	.portfolio-copy,
	.portfolio-summary,
	.policy-card,
	.brand-card,
	.coverage-item,
	.step,
	.metric {
		padding: 1.05rem;
	}

	.slide-copy {
		left: 0.9rem;
		right: 0.9rem;
		bottom: 0.9rem;
		padding: 1rem;
	}

	.slide img,
	.slide video,
	.slides,
	.slider {
		min-height: 23rem;
	}

	.slider-controls {
		left: 0.8rem;
		right: 0.8rem;
	}

	.gallery-page-cta {
		position: static;
		transform: none;
		padding: 1rem 1rem 1.1rem;
	}

	.service-sheet {
		padding: 0.5rem;
	}

	.service-sheet-panel {
		max-height: 94vh;
	}

	.service-sheet-body {
		padding-top: 1.35rem;
	}

	.wa-float {
		right: 0.8rem;
		bottom: 0.8rem;
		padding: 0.82rem 0.95rem;
	}

	.contact-actions .btn,
	.hero-cta .btn,
	.service-sheet-actions .btn,
	.works-hero-actions .btn {
		width: 100%;
	}
}:root {
	--bg: #f5f0e8;
	--bg-soft: #fffaf4;
	--surface: rgba(255, 255, 255, 0.94);
	--surface-strong: #ffffff;
	--text: #132238;
	--text-soft: #5f6f82;
	--brand: #0d5f5c;
	--brand-dark: #073d43;
	--accent: #d96f32;
	--accent-soft: #f7dccb;
	--line: rgba(19, 34, 56, 0.12);
	--shadow: 0 18px 48px rgba(19, 34, 56, 0.12);
	--radius: 1.35rem;
	--radius-sm: 1rem;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: Manrope, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(13, 95, 92, 0.12), transparent 28%),
		radial-gradient(circle at right 12%, rgba(217, 111, 50, 0.14), transparent 30%),
		linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.drawer-open {
	overflow: hidden;
}

body.service-sheet-open {
	overflow: hidden;
}

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

.portfolio-page {
	background:
		radial-gradient(circle at top left, rgba(13, 95, 92, 0.1), transparent 24%),
		radial-gradient(circle at right 15%, rgba(217, 111, 50, 0.12), transparent 24%),
		linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
}

.portfolio-hero {
	padding: 2rem 0 1rem;
}

.portfolio-shell {
	display: grid;
	gap: 1rem;
}

.portfolio-copy,
.portfolio-summary,
.portfolio-card {
	background: var(--surface);
	border: 1px solid rgba(19, 34, 56, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.portfolio-copy,
.portfolio-summary {
	padding: 1.2rem;
}

.portfolio-summary {
	display: grid;
	gap: 0.75rem;
}

.portfolio-summary strong {
	font-size: 2rem;
	line-height: 1;
	color: var(--brand-dark);
}

.portfolio-grid {
	display: grid;
	gap: 0.9rem;
	margin-top: 1.35rem;
}

.portfolio-card {
	overflow: hidden;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.96));
}

.portfolio-media-wrap {
	position: relative;
	background: #071324;
}

.portfolio-media-wrap img,
.portfolio-media-wrap video {
	width: 100%;
	aspect-ratio: 16 / 12;
	object-fit: cover;
}

.portfolio-card-body {
	padding: 0.95rem 1rem 1.05rem;
}

.portfolio-card-body p {
	margin-bottom: 0.35rem;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent);
}

.portfolio-card-body h3 {
	margin-bottom: 0.35rem;
	font-size: 1rem;
	line-height: 1.2;
}

.portfolio-card-body span {
	color: var(--text-soft);
	font-size: 0.92rem;
	line-height: 1.5;
}

.portfolio-empty {
	padding: 1.2rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.9);
	border: 1px dashed rgba(19, 34, 56, 0.16);
	color: var(--text-soft);
}
a {
	color: inherit;
	text-decoration: none;
}

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

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

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;

	.portfolio-shell {
		grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.65fr);
		align-items: start;
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	background: var(--text);
	color: #fff;
	padding: 0.65rem 0.85rem;
	border-radius: 0.75rem;
	z-index: 200;
}

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

.container {
	width: min(1180px, calc(100% - 0.9rem));
	margin-inline: auto;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 60;
	backdrop-filter: blur(16px);
	background: rgba(255, 250, 244, 0.82);
	border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.nav-shell {
	min-height: 4.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-mobile {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.75rem;
	align-items: center;
}

.nav-desktop {
	display: none;
}

.menu-toggle,
.drawer-close,
.slider-btn {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.75rem;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(19, 34, 56, 0.12);
	background: linear-gradient(180deg, rgba(28, 28, 28, 0.98), rgba(8, 8, 8, 1));
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}


.menu-toggle-box {
	position: relative;
	width: 1.15rem;
	height: 0.88rem;
	display: block;
}

.menu-toggle-box span {
	position: absolute;
	left: 0;
	border-radius: 999px;
	background: #ffffff;
	display: block;
	height: 0.14rem;
	box-shadow: none;
	transition: transform 180ms ease, opacity 180ms ease, width 180ms ease, background-color 180ms ease;
}

.menu-toggle-box span:nth-child(1) {
	top: 0;
	width: 100%;
}

.menu-toggle-box span:nth-child(2) {
	top: calc(50% - 0.07rem);
	width: 72%;
}

.menu-toggle-box span:nth-child(3) {
	bottom: 0;
	width: 100%;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(1) {
	transform: translateY(0.36rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.4);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-box span:nth-child(3) {
	transform: translateY(-0.36rem) rotate(-45deg);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.brand img {
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 0.9rem;
	box-shadow: 0 12px 22px rgba(13, 95, 92, 0.18);
}

.brand-copy {
	display: grid;
	min-width: 0;
}

.brand-copy strong,
.brand-copy small {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-copy strong {
	font-size: 1rem;
	letter-spacing: 0.04em;
}

.brand-copy small {
	color: var(--text-soft);
	font-size: 0.75rem;
}

.flag-badge {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: #fff;
	border: 1px solid rgba(19, 34, 56, 0.1);
	box-shadow: 0 10px 20px rgba(19, 34, 56, 0.08);
}

.flag-dot {
	width: 1.55rem;
	height: 1.55rem;
	border-radius: 999px;
	border: 1px solid rgba(19, 34, 56, 0.1);
	background:
		linear-gradient(90deg, #002d62 0 47%, transparent 47% 53%, #cf142b 53% 100%),
		linear-gradient(180deg, transparent 0 47%, #ffffff 47% 53%, transparent 53% 100%),
		#ffffff;
}

.drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: min(86vw, 23rem);
	z-index: 90;
	transform: translateX(-100%);
	transition: transform 240ms ease;
}

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

.drawer-panel {
	height: 100%;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.98)),
		var(--surface-strong);
	padding: 1rem 0.95rem 1.15rem;
	box-shadow: 20px 0 44px rgba(19, 34, 56, 0.18);
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 0.95rem;
	border-right: 1px solid rgba(19, 34, 56, 0.06);
	overflow-y: auto;
}

.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.15rem 0.05rem 0.75rem;
	border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.brand-drawer img {
	width: 2.4rem;
	height: 2.4rem;
	background: rgba(13, 95, 92, 0.08);
}

.brand-drawer {
	gap: 0.8rem;
}

.brand-drawer .brand-copy strong {
	font-size: 0.98rem;
	color: var(--brand-dark);
}

.brand-drawer .brand-copy small {
	font-size: 0.8rem;
	color: var(--text-soft);
}

.drawer-close {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 237, 229, 0.96));
	color: var(--brand-dark);
	border: 1px solid rgba(19, 34, 56, 0.12);
	font-size: 1.5rem;
	line-height: 1;
	box-shadow: 0 10px 18px rgba(19, 34, 56, 0.08);
}

.drawer-nav {
	display: grid;
	gap: 0.7rem;
	align-content: start;
	padding: 0.15rem 0;
}

.drawer-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 3.45rem;
	padding: 0.9rem 1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 238, 0.95));
	border: 1px solid rgba(19, 34, 56, 0.08);
	border-radius: 1.05rem;
	font-weight: 800;
	font-size: 0.98rem;
	line-height: 1.2;
	color: #5c6e84;
	box-shadow: 0 10px 18px rgba(19, 34, 56, 0.05);
}

.drawer-nav a::after {
	content: "›";
	flex: none;
	font-size: 1.15rem;
	font-weight: 900;
	color: var(--accent);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
	border-color: rgba(13, 95, 92, 0.2);
	background: rgba(255, 255, 255, 0.98);
	color: var(--brand-dark);
}

.drawer-cta {
	gap: 0.75rem;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(19, 34, 56, 0.08);
	background: linear-gradient(180deg, rgba(247, 242, 234, 0), rgba(247, 242, 234, 0.98) 18%);
}

.drawer-cta {
	display: grid;
	gap: 0.7rem;
}

.drawer-backdrop {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(7, 19, 36, 0.5);
}

.showcase {
	padding: 1rem 0 1.5rem;
}

.showcase-grid,
.coverage-grid,
.trust-grid,
.contact-wrap,
.footer-grid {
	display: grid;
	gap: 1rem;
}

.showcase-copy,
.slider,
.map-card,
.quote-card,
.contact-section,
.policy-card,
.footer {
	margin-top: 0.42rem;
}

.showcase-copy {
	padding: 1rem 0 0;
}

.eyebrow {
	font-size: 0.76rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 0.85rem;
	padding: 0.38rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(217, 111, 50, 0.18);
	background: rgba(255, 255, 255, 0.78);
	color: var(--accent);
	font-weight: 800;
	letter-spacing: 0.03em;
}

.service-card-body {
	padding: 0.72rem 0.78rem 0.8rem;
}

.service-card-body h3 {
	font-size: 0.94rem;
	margin-bottom: 0.35rem;
	line-height: 1.16;
}

.service-card-body p {
	-webkit-line-clamp: 1;
	font-size: 0.8rem;
	line-height: 1.32;
	margin-bottom: 0.4rem;
}

.eyebrow-dark {
	background: rgba(255, 255, 255, 0.12);
	color: #ffe9d8;
	border-color: rgba(255, 255, 255, 0.18);
}

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

h1,
h2,
h3 {
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.2rem, 8vw, 4.6rem);
	max-width: 11ch;
	margin-bottom: 0.9rem;
}

h2 {
	font-size: clamp(1.6rem, 5vw, 3rem);
	margin-bottom: 0.9rem;
}

h3 {
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
}

.lead,
.section-intro,
.footer p,
.coverage-item span,
.policy-card p,
.metric span,
.card-body p,
.card-body span,
.quote-card span {
	color: var(--text-soft);
}

.hero-cta,
.contact-actions,
.slider-controls,
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	font-weight: 800;
	border: 1px solid transparent;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:active {
	transform: scale(0.98);
}

.btn-solid {
	background: linear-gradient(135deg, var(--accent), #eb8c4e);
	color: #fff;
	box-shadow: 0 14px 28px rgba(217, 111, 50, 0.26);
}

.btn-solid:hover,
.btn-solid:focus-visible {
	background: linear-gradient(135deg, #bf5f28, #de7a39);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(19, 34, 56, 0.12);
	color: var(--brand-dark);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	border-color: var(--brand);
}

.metrics,
.coverage-list,
.brands-grid,
.policy-grid,
.cards {
	display: grid;
	gap: 0.9rem;
}

.metrics {
	margin-top: 1.3rem;
}

.metric,
.brand-card,
.coverage-item,
.policy-card,
.trust-panel,
.quote-card,
.card {
	background: var(--surface);
	border: 1px solid rgba(19, 34, 56, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.metric {
	padding: 1rem;
}

.metric strong {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
}

.brands-section {
	padding-top: 1.25rem;
	padding-bottom: 2.15rem;
}

.brands-grid {
	position: relative;
	overflow: hidden;
	margin-top: 0.95rem;
	padding: 0.15rem 0;
}

.brand-card {
	flex: none;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.brand-card-name {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.7rem;
	padding: 0.35rem 1rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 230, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	color: var(--brand-dark);
	font-weight: 800;
	letter-spacing: 0.03em;
	box-shadow: 0 10px 20px rgba(19, 34, 56, 0.08);
}

.brands-intro-line {
	margin-bottom: 0;
	font-weight: 800;
	color: var(--brand-dark);
}

.brands-grid::before,
.brands-grid::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2.4rem;
	z-index: 2;
	pointer-events: none;
}

.brands-grid::before {
	left: 0;
	background: linear-gradient(90deg, #f8f3ec 0%, rgba(248, 243, 236, 0) 100%);
}

.brands-grid::after {
	right: 0;
	background: linear-gradient(270deg, #f8f3ec 0%, rgba(248, 243, 236, 0) 100%);
}

.brands-track {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: max-content;
	animation: brands-marquee 18s linear infinite;
}

@keyframes brands-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 0.375rem));
	}
}

.slider {
	overflow: hidden;
	border-radius: 1.7rem;
	background: #071324;
	box-shadow: 0 28px 60px rgba(7, 19, 36, 0.28);
}

.slides {
	position: relative;
	min-height: 25rem;
}

.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 360ms ease;
}

.slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 19, 36, 0.06), rgba(7, 19, 36, 0.8));
}

.slide img,
.slide video {
	width: 100%;
	height: 100%;
	min-height: 25rem;
	object-fit: cover;
}

.slide-copy {
	position: absolute;
	inset: auto 1rem 1rem 1rem;
	z-index: 2;
	color: #fff;
}

.slide-copy p {
	margin-bottom: 0.35rem;
	color: rgba(255, 244, 236, 0.84);
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.slide-copy h2 {
	margin-bottom: 0;
	max-width: 14ch;
}

.slider-controls {
	position: absolute;
	inset: auto 1rem 1rem 1rem;
	z-index: 4;
	justify-content: space-between;
}

.gallery-page-cta {
	position: absolute;
	left: 50%;
	bottom: 4.4rem;
	z-index: 4;
	transform: translateX(-50%);
}

.slider-btn {
	width: 2.7rem;
	height: 2.7rem;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
	backdrop-filter: blur(12px);
	font-size: 1.5rem;
}

.slider-dots {
	display: inline-flex;
	gap: 0.45rem;
}

.slider-dot {
	width: 0.72rem;
	height: 0.72rem;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, 0.32);
	cursor: pointer;
}

.slider-dot.is-active {
	background: #fff;
}

.section {
	padding: 3.6rem 0;
}

.coverage {
	padding-top: 2.2rem;
}

.coverage-item {
	padding: 0.78rem 0.88rem;
	border-radius: 1rem;
	box-shadow: 0 10px 22px rgba(19, 34, 56, 0.06);
}

.coverage-item strong,
.policy-card h3,
.footer-grid h3 {
	display: block;
	margin-bottom: 0;
}

.coverage-copy h2 {
	max-width: 13ch;
	margin-bottom: 0.65rem;
	color: #10233a;
}

.coverage-copy .section-intro {
	max-width: 35ch;
	margin-bottom: 1rem;
	font-size: 0.97rem;
	line-height: 1.65;
	color: #5e6f84;
}

.map-card {
	overflow: hidden;
	min-height: 29rem;
	border-radius: 1.5rem;
	background: #d9ebe6;
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: var(--shadow);
	isolation: isolate;
}

.coverage-map-canvas {
	width: 100%;
	height: 100%;
	min-height: 29rem;
	border: 0;
}

.coverage-map-fallback {
	width: 100%;
	height: 100%;
	min-height: 29rem;
	border: 0;
}

.coverage-map-canvas .leaflet-control-zoom {
	border: 0;
	box-shadow: 0 12px 28px rgba(19, 34, 56, 0.16);
}

.coverage-map-canvas .leaflet-control-zoom a {
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	color: var(--brand-dark);
}

.coverage-marker-icon {
	background: transparent;
	border: 0;
}

.coverage-marker-dot {
	position: absolute;
	left: 0;
	top: 0;
	width: 0.95rem;
	height: 0.95rem;
	border-radius: 999px;
	background: #d96f32;
	border: 3px solid #fff;
	box-shadow: 0 10px 18px rgba(19, 34, 56, 0.2);
	transform: translate(-50%, -50%);
}

.map-marker-dot::after {
	content: "";
	position: absolute;
	inset: -0.45rem;
	border-radius: 999px;
	border: 1px solid rgba(217, 111, 50, 0.42);
	background: rgba(217, 111, 50, 0.12);
}

.coverage-marker-label {
	position: absolute;
	left: 0;
	top: 0;
	padding: 0.38rem 0.58rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--brand-dark);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 10px 22px rgba(19, 34, 56, 0.16);
	transform: translate(calc(-50% + var(--label-offset-x, 0px)), calc(-100% + var(--label-offset-y, -1rem)));
}

.coverage-map-canvas .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.88);
	border-top-left-radius: 0.75rem;
	padding: 0.2rem 0.45rem;
}

.map-tag {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 3;
	padding: 0.72rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--brand-dark);
	font-weight: 800;
	box-shadow: 0 12px 25px rgba(19, 34, 56, 0.14);
}

.coverage-list {
	gap: 0.62rem;
	max-width: 36rem;
}

.coverage-item strong {
	font-size: 0.93rem;
	line-height: 1.35;
	color: #12253d;
}

.cards {
	margin-top: 1.5rem;
}

#services-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 720px;
	margin-inline: auto;
	gap: 0.65rem;
}

.card {
	overflow: hidden;
}

.service-card {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.96));
	border-radius: 1rem;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
	transform: translateY(-2px);
	border-color: rgba(13, 95, 92, 0.18);
	box-shadow: 0 20px 38px rgba(19, 34, 56, 0.16);
}

.service-card-button {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
	cursor: pointer;
	color: inherit;
}

.feature-card img {
	width: 100%;
	aspect-ratio: 16 / 5.8;
	object-fit: cover;
	background: linear-gradient(180deg, #e8f3f2, #f5ebe3);
}

.card-body {
	padding: 0.58rem 0.62rem 0.66rem;
}

.service-card-body {
	display: grid;
	gap: 0.28rem;
	align-content: start;
}

.service-card-body h3 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.84rem;
	line-height: 1.14;
	min-height: 1.92em;
	margin-bottom: 0;
}

.service-card-body p {
	display: none;
}

.card-body span {
	display: block;
	margin-top: 0;
	font-size: 0.72rem;
	font-weight: 700;
}

.service-card-body span {
	justify-self: start;
	padding: 0.26rem 0.48rem;
	border-radius: 999px;
	border: 1px solid rgba(7, 61, 67, 0.12);
	background: rgba(7, 61, 67, 0.06);
	margin-top: 0;
	font-size: 0.62rem;
	color: var(--brand-dark);
}

.service-card-link {
	display: inline-flex;
	align-items: center;
	margin-top: 0.02rem;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--accent);
}

.service-sheet {
	position: fixed;
	inset: 0;
	z-index: 120;
}

.service-sheet-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(7, 19, 36, 0.55);
	padding: 0;
	cursor: pointer;
}

.service-sheet-panel {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: min(100%, 36rem);
	max-height: min(88vh, 52rem);
	overflow: auto;
	border-radius: 1.8rem 1.8rem 0 0;
	background: linear-gradient(180deg, #fffdf9, #f7f2ea);
	box-shadow: 0 -20px 60px rgba(7, 19, 36, 0.24);
}

.service-sheet-close {
	position: sticky;
	top: 0.8rem;
	left: calc(100% - 3.4rem);
	margin: 0.8rem 0 0 auto;
	margin-right: 0.9rem;
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 999px;
	border: 1px solid rgba(19, 34, 56, 0.12);
	background: rgba(255, 255, 255, 0.92);
	font-size: 1.55rem;
	line-height: 1;
	z-index: 3;
	cursor: pointer;
}

.service-sheet-media-wrap {
	padding: 0 1rem;
	margin-top: -1.1rem;
}

.service-sheet-media-wrap img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 1.25rem;
	box-shadow: 0 18px 34px rgba(19, 34, 56, 0.16);
	background: linear-gradient(180deg, #e8f3f2, #f5ebe3);
}

.service-sheet-body {
	padding: 1.2rem 1rem 1.35rem;
}

.service-sheet-lead {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-soft);
	margin-bottom: 0.9rem;
}

.service-sheet-highlight {
	padding: 0.85rem 0.95rem;
	border-radius: 1rem;
	background: rgba(13, 95, 92, 0.08);
	color: var(--brand-dark);
	font-weight: 800;
	margin-bottom: 1rem;
}

.service-sheet-points {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.8rem;
}

.service-sheet-points li {
	position: relative;
	padding-left: 1.25rem;
	color: var(--text-soft);
	line-height: 1.55;
}

.service-sheet-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.52rem;
	width: 0.58rem;
	height: 0.58rem;
	border-radius: 999px;
	background: var(--accent);
}

.service-sheet-meta {
	display: grid;
	gap: 0.7rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(19, 34, 56, 0.08);
	color: var(--brand-dark);
	font-size: 0.92rem;
	font-weight: 700;
}

.service-sheet-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.7rem;
	margin-top: 1.1rem;
}

.trust-section {
	padding-top: 0.4rem;
}

.trust-panel,
.quote-card {
	padding: 1.35rem;
}

.trust-points {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: grid;
	gap: 0.7rem;
}

.trust-points li {
	padding-left: 1.55rem;
	position: relative;
}

.trust-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 0.72rem;
	height: 0.72rem;
	border-radius: 999px;
	background: var(--accent);
	box-shadow: 0 0 0 0.3rem rgba(217, 111, 50, 0.14);
}

.quote-card {
	background: linear-gradient(160deg, #0b3f44, #0d5f5c);
	color: #fff;
}

.quote-card p {
	font-size: clamp(1.2rem, 4vw, 1.7rem);
	line-height: 1.32;
	margin-bottom: 1rem;
}

.quote-card span {
	color: rgba(255, 255, 255, 0.74);
}

.section-dark {
	background: linear-gradient(180deg, #0a2533, #071324);
	color: #fff;
}

.steps {
	margin-top: 1.2rem;
	display: grid;
	gap: 0.8rem;
}

.step {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.step span {
	flex-shrink: 0;
	width: 2.1rem;
	height: 2.1rem;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: #fff;
	color: var(--brand-dark);
	font-weight: 800;
}

.policy-grid {
	margin-top: 1.4rem;
}

.policy-card {
	padding: 1.2rem;
}

.contact-section {
	padding-top: 2rem;
}

.contact-wrap {
	padding: 1.6rem;
	border-radius: 1.6rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(246, 238, 230, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: var(--shadow);
}

.footer {
	margin-top: 1rem;
	padding: 2.35rem 0 5.6rem;
	background:
		linear-gradient(180deg, #0a2230 0%, #071324 100%);
	color: #eef5ff;
	border-top: 1px solid rgba(238, 245, 255, 0.08);
	border-radius: 0;
	overflow: hidden;
}

.footer-grid {
	gap: 1.8rem;
	align-items: start;
}

.footer-brand img {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.95rem;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.footer-grid h3 {
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.footer .footer-grid a {
	color: rgba(238, 245, 255, 0.74);
}

.footer-grid a,
.footer-grid p,
.footer-bottom p {
	display: block;
	margin: 0.35rem 0;
	color: rgba(238, 245, 255, 0.74);
}

.footer-brand-block p {
	max-width: 30rem;
	margin-top: 0.85rem;
}

.footer-bottom {
	justify-content: space-between;
	margin-top: 2rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(238, 245, 255, 0.12);
	gap: 0.75rem;
}

.wa-float {
	position: fixed;
	right: 0.95rem;
	bottom: 1rem;
	z-index: 70;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1rem;
	border-radius: 999px;
	background: #16a34a;
	color: #fff;
	font-weight: 800;
	box-shadow: 0 16px 30px rgba(4, 18, 52, 0.28);
}

.wa-float img {
	width: 1.1rem;
	height: 1.1rem;
}

@media (max-width: 759px) {
	body {
		padding-bottom: 5.5rem;
	}

	.container {
		width: min(100% - 1.1rem, 34rem);
	}

	.section {
		padding: 2.6rem 0;
	}

	h1 {
		max-width: none;
		font-size: clamp(2rem, 9vw, 3rem);
		line-height: 1.02;
		letter-spacing: -0.03em;
	}

	.h2,
	h2 {
		font-size: clamp(1.5rem, 6vw, 2.2rem);
		line-height: 1.08;
	}

	.lead,
	.section-intro,
	.coverage-item span,
	.policy-card p,
	.card-body p,
	.trust-points li,
	.brand-card p {
		font-size: 0.98rem;
	}

	.hero-cta,
	.contact-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-cta .btn,
	.contact-actions .btn,
	.drawer-cta .btn {
		width: 100%;
		min-height: 3.2rem;
	}

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

	.cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.slides,
	.slide img,
	.slide video,
	.coverage-map-canvas,
	.map-card {
		min-height: 24rem;
	}

	.slide-copy {
		inset: auto 0.9rem 4.8rem 0.9rem;
	}

	.slide-copy h2 {
		max-width: 11ch;
	}

	.slider-controls {
		inset: auto 0.9rem 0.9rem 0.9rem;
	}

	.slider-btn {
		width: 2.45rem;
		height: 2.45rem;
	}

	.map-tag {
		left: 0.75rem;
		bottom: 0.75rem;
		max-width: calc(100% - 1.5rem);
		font-size: 0.85rem;
	}

	.coverage-map-canvas .leaflet-control-attribution {
		font-size: 0.56rem;
	}

	.brand-card,
	.metric,
	.coverage-item,
	.policy-card,
	.card-body,
	.trust-panel,
	.quote-card,
	.contact-wrap {
		border-radius: 1.1rem;
	}

	.coverage-list {
		gap: 0.55rem;
	}

	.coverage-item {
		padding: 0.72rem 0.8rem;
	}

	.coverage-item strong {
		font-size: 0.88rem;
	}

	.service-card {
		border-radius: 0.95rem;
	}

	.feature-card img {
		aspect-ratio: 16 / 5;
	}

	.service-card-body {
		padding: 0.42rem 0.46rem 0.5rem;
	}

	.service-card-body h3 {
		font-size: 0.74rem;
		line-height: 1.1;
		min-height: 1.62rem;
		margin-bottom: 0.08rem;
	}

	.service-card-body p {
		display: none;
	}

	.service-card-body span,
	.service-card-link {
		font-size: 0.58rem;
	}

	.service-card-link {
		margin-top: 0.04rem;
	}

	.service-sheet-panel {
		width: 100%;
		max-height: 90vh;
		border-radius: 1.5rem 1.5rem 0 0;
	}

	.footer {
		padding-bottom: 6.2rem;
	}

	.wa-float {
		right: 0.7rem;
		left: auto;
		bottom: 0.7rem;
		justify-content: center;
		padding: 0.78rem 0.9rem;
		font-size: 0.9rem;
		min-height: 0;
	}

	.brands-track {
		gap: 0.6rem;
		animation-duration: 14s;
	}

	.brand-card-name {
		min-height: 2.3rem;
		padding: 0.28rem 0.82rem;
		font-size: 0.82rem;
	}
}

@media (min-width: 760px) {
	.container {
		width: min(1180px, calc(100% - 1.2rem));
	}

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

	.cards,
	.coverage-list,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.contact-actions {
		justify-content: flex-start;
	}
}

@media (min-width: 980px) {
	.nav-mobile {
		display: none;
	}

	.nav-desktop {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
	}

	.nav-desktop a:not(.btn) {
		font-weight: 700;
		color: var(--text-soft);
	}

	.drawer,
	.drawer-backdrop {
		display: none;
	}

	.showcase {
		padding-top: 2rem;
	}

	.showcase-grid,
	.coverage-grid,
	.trust-grid,
	.contact-wrap {
		grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
		align-items: center;
	}

	.showcase-copy {
		padding-right: 1rem;
	}

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

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

	#services-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 760px;
	}

	.brands-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

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

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

	.footer {
		padding-bottom: 2.6rem;
	}

	.wa-float {
		display: none;
	}
}

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

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

.policies {
	position: relative;
	overflow: hidden;
	padding: 3rem 0 3.6rem;
	background:
		radial-gradient(circle at top left, rgba(43, 99, 255, 0.1), transparent 26%),
		radial-gradient(circle at right 18%, rgba(13, 95, 92, 0.12), transparent 24%),
		linear-gradient(180deg, #f7f2ea 0%, #ece6df 100%);
	border-top: 1px solid rgba(19, 34, 56, 0.06);
	border-bottom: 1px solid rgba(19, 34, 56, 0.05);
}

.policies::before,
.policies::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(8px);
	opacity: 0.55;
}

.policies::before {
	width: 14rem;
	height: 14rem;
	right: -4rem;
	top: 1.2rem;
	background: radial-gradient(circle, rgba(43, 99, 255, 0.16), rgba(43, 99, 255, 0));
}

.policies::after {
	width: 11rem;
	height: 11rem;
	left: -3rem;
	bottom: -1rem;
	background: radial-gradient(circle, rgba(13, 95, 92, 0.14), rgba(13, 95, 92, 0));
}

.policies .container {
	position: relative;
	z-index: 1;
}

.policies #policies-title {
	max-width: 11ch;
	margin-bottom: 0;
	color: #0f2239;
	letter-spacing: -0.04em;
	line-height: 0.98;
}

.policy-grid {
	position: relative;
	margin-top: 1.55rem;
	gap: 0.95rem;
}

.policy-card {
	position: relative;
	overflow: hidden;
	padding: 1.15rem 1.05rem 1.05rem;
	min-height: 10.8rem;
	display: grid;
	align-content: start;
	gap: 0.45rem;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 233, 0.92));
	border: 1px solid rgba(101, 129, 186, 0.14);
	border-radius: 1.35rem;
	box-shadow:
		0 18px 40px rgba(19, 34, 56, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(10px);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.policy-card::after {
	content: "";
	position: absolute;
	inset: auto -2.6rem -2.6rem auto;
	width: 7rem;
	height: 7rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(43, 99, 255, 0.12), rgba(43, 99, 255, 0));
	pointer-events: none;
}

.policy-card:hover,
.policy-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(43, 99, 255, 0.22);
	box-shadow:
		0 24px 48px rgba(19, 34, 56, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.policy-card h3 {
	margin-bottom: 0;
	font-size: 1.02rem;
	line-height: 1.12;
	color: #10233a;
	letter-spacing: -0.03em;
	max-width: 13ch;
}

.policy-card p {
	margin: 0;
	max-width: 24ch;
	font-size: 0.9rem;
	line-height: 1.58;
	color: #607286;
}

.policy-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.policy-card-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.55rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #d96f32;
}

@media (max-width: 759px) {
	.policies {
		padding: 2.65rem 0 3rem;
	}

	.policies #policies-title {
		max-width: 9ch;
		font-size: 2.25rem;
	}

	.policy-grid {
		gap: 0.8rem;
	}

	.policy-card {
		min-height: 0;
		padding: 1rem 0.92rem 0.92rem;
		border-radius: 1.15rem;
	}

	.policy-card h3 {
		font-size: 0.95rem;
		max-width: 12ch;
	}

	.policy-card p {
		font-size: 0.84rem;
		max-width: 22ch;
	}
}

@media (min-width: 980px) {
	.policies {
		padding: 3.4rem 0 4rem;
	}

	.policies #policies-title {
		max-width: 12ch;
	}

	.policy-grid {
		gap: 1.05rem;
	}

	.policy-card {
		min-height: 12rem;
		padding: 1.3rem 1.18rem 1.15rem;
	}
}

.policy-detail-page {
	background:
		radial-gradient(circle at top left, rgba(83, 148, 255, 0.18), transparent 22%),
		radial-gradient(circle at 85% 12%, rgba(217, 111, 50, 0.08), transparent 20%),
		linear-gradient(180deg, #f8f4ee 0%, #f2ece5 52%, #eee7de 100%);
	color: #10233a;
}

.policy-detail-page .topbar {
	background: rgba(247, 243, 237, 0.88);
	border-bottom: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 24px rgba(19, 34, 56, 0.06);
}

.policy-topbar-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.9rem;
}

.policy-topbar-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	justify-content: flex-end;
}

.policy-hero {
	padding: 2.25rem 0 1.15rem;
}

.policy-hero-shell {
	display: grid;
	gap: 1rem;
}

.policy-hero-head {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 1rem;
}

.policy-hero-copy {
	display: grid;
	gap: 0.72rem;
}

.policy-hero-copy .eyebrow,
.policy-hero-copy h1,
.policy-hero-copy .lead {
	margin-bottom: 0;
}

.policy-hero-icon,
.policy-related-icon {
	display: inline-grid;
	place-items: center;
	flex: none;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #10233a;
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 24px rgba(19, 34, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.policy-hero-icon {
	width: 3.4rem;
	height: 3.4rem;
	border-radius: 1.1rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96));
}

.policy-hero-icon[data-policy-icon="GT"],
.policy-related-icon[data-policy-icon="GT"] {
	background: linear-gradient(180deg, #eff5ff, #d9e7ff);
}

.policy-hero-icon[data-policy-icon="RB"],
.policy-related-icon[data-policy-icon="RB"] {
	background: linear-gradient(180deg, #fff0e8, #ffd9c7);
}

.policy-hero-icon[data-policy-icon="ST"],
.policy-related-icon[data-policy-icon="ST"] {
	background: linear-gradient(180deg, #e8faf7, #c8efe8);
}

.policy-hero-icon[data-policy-icon="CS"],
.policy-related-icon[data-policy-icon="CS"] {
	background: linear-gradient(180deg, #f3eefc, #e2d7fb);
}

.policy-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.82rem;
	font-weight: 700;
	color: #6a7b8f;
}

.policy-breadcrumb a {
	color: #56687c;
	transition: color 180ms ease;
}

.policy-breadcrumb a:hover,
.policy-breadcrumb a:focus-visible {
	color: #10233a;
}

.policy-breadcrumb strong {
	color: #10233a;
}

.policy-hero-shell h1 {
	max-width: 14ch;
	margin-bottom: 0;
	color: #10233a;
	letter-spacing: -0.05em;
}

.policy-hero-shell .lead {
	max-width: 58ch;
	color: #5e6f84;
	font-size: 1.04rem;
}

.policy-layout {
	display: grid;
	gap: 1rem;
}

.policy-reading-card {
	position: relative;
	padding: 1.5rem;
	border-radius: 1.65rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 240, 233, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 28px 60px rgba(19, 34, 56, 0.08);
	overflow: hidden;
}

.policy-reading-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(19, 34, 56, 0.14), transparent);
}

.policy-reading-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.1rem;
}

.policy-meta-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.7rem;
	border-radius: 999px;
	background: rgba(16, 35, 58, 0.05);
	border: 1px solid rgba(16, 35, 58, 0.08);
	font-size: 0.78rem;
	font-weight: 700;
	color: #425367;
}

.policy-reading-sections {
	display: grid;
	gap: 1.05rem;
}

.policy-reading-section {
	position: relative;
	padding: 1.1rem 1.1rem 1.1rem 1.2rem;
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(19, 34, 56, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.policy-reading-section::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1rem;
	bottom: 1rem;
	width: 4px;
	border-radius: 999px;
	background: linear-gradient(180deg, #173cc7, #d96f32);
}

.policy-reading-section h2 {
	margin-bottom: 0.6rem;
	font-size: 1.16rem;
	color: #10233a;
}

.policy-reading-section p {
	margin: 0 0 0.8rem;
	color: #5e6f84;
	line-height: 1.72;
}

.policy-reading-section p:last-child {
	margin-bottom: 0;
}

.policy-reading-list {
	margin: 0;
	padding-left: 1.15rem;
	color: #5e6f84;
	line-height: 1.72;
}

.policy-reading-list li + li {
	margin-top: 0.45rem;
}

.policy-sidebar {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.policy-side-card {
	position: relative;
	padding: 1.2rem;
	border-radius: 1.35rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 232, 0.94));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 18px 38px rgba(19, 34, 56, 0.08);
	overflow: hidden;
}

.policy-side-card-accent {
	background:
		radial-gradient(circle at top right, rgba(83, 148, 255, 0.2), transparent 34%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 237, 229, 0.98));
}

.policy-side-label {
	margin-bottom: 0.55rem;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6c7e93;
}

.policy-side-card h2 {
	margin-bottom: 0.55rem;
	font-size: 1.2rem;
	line-height: 1.05;
	color: #10233a;
}

.policy-side-card p {
	margin: 0;
	color: #5f7084;
	line-height: 1.65;
}

.policy-side-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1rem;
}

.policy-side-tags .policy-meta-chip {
	background: rgba(255, 255, 255, 0.7);
}

.policy-related-list {
	display: grid;
	gap: 0.6rem;
	margin-top: 0.2rem;
}

.policy-related-link {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.7rem;
	padding: 0.9rem 0.95rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(19, 34, 56, 0.06);
	color: inherit;
	text-decoration: none;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.policy-related-link:hover,
.policy-related-link:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(43, 99, 255, 0.18);
	box-shadow: 0 14px 26px rgba(19, 34, 56, 0.08);
}

.policy-related-copy {
	display: grid;
	gap: 0.22rem;
}

.policy-related-link.is-active {
	background: linear-gradient(180deg, rgba(16, 35, 58, 0.95), rgba(11, 22, 37, 0.96));
	border-color: rgba(16, 35, 58, 0.2);
	box-shadow: 0 16px 30px rgba(16, 35, 58, 0.18);
}

.policy-related-link.is-active strong,
.policy-related-link.is-active span {
	color: #f3f7ff;
}

.policy-related-link strong {
	font-size: 0.94rem;
	line-height: 1.16;
	color: #10233a;
}

.policy-related-link span {
	font-size: 0.82rem;
	line-height: 1.45;
	color: #627387;
}

.policy-side-contact {
	background:
		radial-gradient(circle at top right, rgba(217, 111, 50, 0.14), transparent 28%),
		linear-gradient(145deg, #0f4f53, #0c3e44 52%, #0a3138 100%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 42px rgba(7, 31, 38, 0.2);
}

.policy-side-contact .policy-side-label,
.policy-side-contact h2,
.policy-side-contact p {
	color: #f4fbff;
}

.policy-side-contact p {
	color: rgba(244, 251, 255, 0.82);
}

.policy-side-legal {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 237, 229, 0.95));
}

.policy-legal-list {
	display: grid;
	gap: 0.8rem;
}

.policy-legal-item {
	display: grid;
	gap: 0.18rem;
	padding: 0.8rem 0.86rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.68);
	border: 1px solid rgba(19, 34, 56, 0.06);
}

.policy-legal-item strong {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #5e6f84;
}

.policy-legal-item span {
	color: #10233a;
	line-height: 1.55;
}

.policy-side-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1rem;
}

@media (min-width: 980px) {
	.policy-layout {
		grid-template-columns: minmax(0, 1.26fr) minmax(18rem, 0.66fr);
		align-items: start;
	}

	.policy-sidebar {
		position: sticky;
		top: calc(var(--topbar-height) + 1rem);
	}
}

@media (max-width: 759px) {
	.policy-topbar-shell {
		align-items: flex-start;
		flex-direction: column;
		padding-top: 0.7rem;
		padding-bottom: 0.7rem;
	}

	.policy-topbar-actions {
		width: 100%;
	}

	.policy-topbar-actions .btn {
		flex: 1 1 0;
		justify-content: center;
	}

	.policy-reading-card {
		padding: 1rem;
		border-radius: 1.2rem;
	}

	.policy-hero-head {
		grid-template-columns: 1fr;
		gap: 0.8rem;
	}

	.policy-hero-icon {
		width: 3rem;
		height: 3rem;
	}

	.policy-reading-section {
		padding: 0.92rem 0.92rem 0.92rem 1rem;
	}

	.policy-side-card {
		padding: 1rem;
		border-radius: 1.15rem;
	}

	.policy-side-actions .btn {
		flex: 1 1 0;
		justify-content: center;
	}

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

.trust-section {
	position: relative;
	padding: 2.2rem 0 3rem;
	overflow: hidden;
}

.trust-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 14% 18%, rgba(43, 99, 255, 0.08), transparent 24%),
		radial-gradient(circle at 88% 72%, rgba(13, 95, 92, 0.08), transparent 22%);
	pointer-events: none;
}

.trust-grid {
	position: relative;
	z-index: 1;
	gap: 1rem;
	align-items: stretch;
}

.trust-panel,
.quote-card {
	position: relative;
	overflow: hidden;
	padding: 1.45rem 1.2rem;
	border-radius: 1.55rem;
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 18px 40px rgba(19, 34, 56, 0.1);
	backdrop-filter: blur(10px);
}

.trust-panel {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 239, 231, 0.94));
}

.trust-panel::after {
	content: "";
	position: absolute;
	inset: auto -2rem -2rem auto;
	width: 8rem;
	height: 8rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(43, 99, 255, 0.12), rgba(43, 99, 255, 0));
	pointer-events: none;
}

.trust-panel #trust-title {
	max-width: 12ch;
	margin-bottom: 0;
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #10233a;
}

.trust-points {
	margin: 1.1rem 0 0;
	gap: 0.72rem;
}

.trust-points li {
	padding: 0.78rem 0.85rem 0.78rem 2.35rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(19, 34, 56, 0.06);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
	line-height: 1.55;
	color: #627387;
}

.trust-points li::before {
	left: 0.92rem;
	top: 0.98rem;
	width: 0.72rem;
	height: 0.72rem;
	background: linear-gradient(135deg, #ef8d45, #d96f32);
	box-shadow: 0 0 0 0.28rem rgba(217, 111, 50, 0.13);
}

.quote-card {
	background:
		radial-gradient(circle at top right, rgba(83, 148, 255, 0.22), transparent 30%),
		linear-gradient(145deg, #0f4f53, #0b3e43 52%, #0a3138 100%);
	border-color: rgba(255, 255, 255, 0.08);
	box-shadow: 0 22px 44px rgba(7, 31, 38, 0.22);
	color: #ffffff;
	display: grid;
	grid-template-rows: 1fr auto auto;
	align-content: stretch;
	min-height: 15rem;
	justify-items: center;
	text-align: center;
	gap: 0.2rem;
}

.quote-card::before {
	content: "\201C";
	position: absolute;
	top: 0.7rem;
	right: 1rem;
	font-size: 4.5rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.12);
	font-weight: 800;
	pointer-events: none;
}

.quote-card p {
	position: relative;
	z-index: 1;
	font-size: clamp(1.08rem, 4.2vw, 1.55rem);
	line-height: 1.28;
	letter-spacing: -0.03em;
	max-width: 18ch;
	width: 100%;
	align-self: center;
	margin-bottom: 1rem;
	color: #eff8f9;
	margin-inline: auto;
}

.quote-card strong {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	margin-top: 0;
	font-size: 1rem;
	color: #ffffff;
	text-align: center;
}

.quote-card span {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	margin-top: 0.22rem;
	color: rgba(236, 247, 248, 0.78);
	font-size: 0.92rem;
	line-height: 1.45;
	text-align: center;
}

@media (max-width: 759px) {
	.trust-section {
		padding: 1.8rem 0 2.5rem;
	}

	.trust-grid {
		gap: 0.85rem;
	}

	.trust-panel,
	.quote-card {
		padding: 1.15rem 1rem;
		border-radius: 1.2rem;
	}

	.trust-panel #trust-title {
		font-size: 2.05rem;
		max-width: 10ch;
	}

	.trust-points li {
		padding: 0.72rem 0.78rem 0.72rem 2.05rem;
		font-size: 0.92rem;
	}

	.trust-points li::before {
		left: 0.82rem;
		top: 0.94rem;
	}

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


/* Final responsive layout spacing override */
:root {
	--page-gutter: 12px;
}

main,
.topbar,
.showcase,
.section,
.brands-section,
.portfolio-hero,
.trust-section,
.contact-section,
.footer {
	width: 100%;
}

.container {
	width: 100%;
	max-width: none;
	padding-left: var(--page-gutter);
	padding-right: var(--page-gutter);
	margin-left: auto;
	margin-right: auto;
}

#services-list,
.showcase-grid,
.coverage-grid,
.trust-grid,
.contact-wrap,
.footer-grid,
.portfolio-shell,
.portfolio-grid,
.cards,
.policy-grid,
.brands-grid,
.coverage-list,
.metrics {
	width: 100%;
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

.showcase-copy,
.metric,
.brand-card,
.coverage-item,
.map-card,
.card,
.trust-panel,
.quote-card,
.policy-card,
.portfolio-copy,
.portfolio-summary,
.portfolio-card,
.step,
.contact-wrap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.showcase-copy,
.metric,
.brand-card,
.coverage-item,
.trust-panel,
.quote-card,
.policy-card,
.portfolio-copy,
.portfolio-summary,
.portfolio-card,
.step,
.contact-wrap,
.card-body,
.service-card-body {
	padding: 16px;
}

#services-list {
	max-width: none;
}

@media (min-width: 760px) {
	:root {
		--page-gutter: 20px;
	}
}

@media (min-width: 980px) {
	:root {
		--page-gutter: 32px;
	}
}
	.quote-card::before {
		top: 0.45rem;
		right: 0.8rem;
		font-size: 3.6rem;
	}

	.quote-card p {
		max-width: 17ch;
		margin-bottom: 0.9rem;
	}
}

@media (min-width: 980px) {
	.trust-grid {
		grid-template-columns: minmax(0, 1.08fr) minmax(19rem, 0.92fr);
		gap: 1.05rem;
	}

	.trust-panel,
	.quote-card {
		padding: 1.55rem 1.35rem;
	}

	.quote-card p {
		max-width: 19ch;
	}
}


.service-sheet-backdrop {
	background: rgba(7, 19, 36, 0.7);
	backdrop-filter: blur(10px);
}

.service-sheet-panel {
	width: min(100%, 37rem);
	max-height: min(92vh, 54rem);
	border-radius: 1.85rem 1.85rem 0 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 240, 232, 0.98));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 -24px 60px rgba(7, 19, 36, 0.28);
	overflow: auto;
}

.service-sheet-close {
	top: 0.95rem;
	margin-right: 1rem;
	width: 2.7rem;
	height: 2.7rem;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 24px rgba(19, 34, 56, 0.12);
	color: #10233a;
}

.service-sheet-media-wrap {
	padding: 0.2rem 1rem 0;
	margin-top: -0.2rem;
}

.service-sheet-media-wrap img {
	aspect-ratio: 16 / 9.2;
	border-radius: 1.35rem;
	box-shadow: 0 18px 34px rgba(19, 34, 56, 0.14);
	background: linear-gradient(135deg, #0c2d72, #173f92);
	border: 1px solid rgba(19, 34, 56, 0.08);
}

.service-sheet-body {
	padding: 1.25rem 1rem 1.35rem;
	display: grid;
	gap: 0.9rem;
}

.service-sheet-body h3 {
	font-size: clamp(1.45rem, 5vw, 2rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #10233a;
	margin-bottom: 0;
}

.service-sheet-lead {
	font-size: 1rem;
	line-height: 1.65;
	color: #627387;
	margin-bottom: 0;
}

.service-sheet-highlight {
	padding: 0.9rem 1rem;
	border-radius: 1.05rem;
	background: linear-gradient(180deg, rgba(13, 95, 92, 0.12), rgba(13, 95, 92, 0.08));
	border: 1px solid rgba(13, 95, 92, 0.12);
	color: #0d5f5c;
	font-weight: 800;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
	margin-bottom: 0;
}

.service-sheet-points {
	gap: 0.72rem;
	margin-top: 0;
}

.service-sheet-points li {
	padding: 0.8rem 0.85rem 0.8rem 2.2rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(19, 34, 56, 0.06);
	color: #607286;
	line-height: 1.58;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-sheet-points li::before {
	left: 0.9rem;
	top: 1rem;
	width: 0.6rem;
	height: 0.6rem;
	background: linear-gradient(135deg, #ef8d45, #d96f32);
	box-shadow: 0 0 0 0.28rem rgba(217, 111, 50, 0.12);
}

.service-sheet-meta {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.72rem;
	margin-top: 0;
	padding-top: 0.2rem;
	border-top: 0;
}

.service-sheet-meta-card {
	padding: 0.82rem 0.85rem 0.88rem;
	border-radius: 1rem;
	background: rgba(235, 241, 255, 0.72);
	border: 1px solid rgba(114, 146, 214, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
	display: grid;
	gap: 0.28rem;
	align-content: start;
}

.service-sheet-meta-card small {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7184a1;
}

.service-sheet-meta span {
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: #10324a;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.5;
	width: auto;
}

.service-sheet-actions {
	grid-template-columns: 1fr;
	gap: 0.72rem;
	margin-top: 0.25rem;
}

.service-sheet-actions .btn {
	min-height: 3.25rem;
	font-size: 0.98rem;
	box-shadow: 0 14px 24px rgba(19, 34, 56, 0.08);
}

@media (max-width: 759px) {
	.service-sheet-panel {
		width: 100%;
		max-height: 92vh;
		border-radius: 1.5rem 1.5rem 0 0;
	}

	.service-sheet-media-wrap {
		padding: 0.15rem 0.85rem 0;
	}

	.service-sheet-media-wrap img {
		aspect-ratio: 16 / 10;
		border-radius: 1.18rem;
	}

	.service-sheet-body {
		padding: 1.05rem 0.9rem 1.2rem;
		gap: 0.82rem;
	}

	.service-sheet-body h3 {
		font-size: 1.5rem;
	}

	.service-sheet-lead {
		font-size: 0.96rem;
	}

	.service-sheet-meta {
		grid-template-columns: 1fr;
	}

	.service-sheet-meta-card {
		padding: 0.78rem 0.78rem 0.82rem;
	}
}

#servicios .container {
	width: 100%;
	max-width: none;
	padding-left: 12px;
	padding-right: 12px;
}

#services-list {
	width: 100%;
	max-width: none;
	margin-inline: 0;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 12px;
	column-gap: 10px;
}

#services-list .service-card {
	height: 100%;
	border-radius: 0.95rem;
	overflow: hidden;
}

#services-list .service-card-button {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

#services-list .feature-card img {
	height: 170px;
	aspect-ratio: auto;
	object-fit: cover;
}

#services-list .card-body,
#services-list .service-card-body {
	padding: 10px 10px;
	gap: 6px;
}

#services-list .service-card-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

#services-list .service-card-body h3 {
	font-size: 14px;
	line-height: 1.18;
	min-height: 0;
	margin: 0;
	letter-spacing: -0.01em;
}

#services-list .service-card-body span {
	padding: 3px 6px;
	font-size: 11px;
	line-height: 1.2;
	margin: 0;
}

#services-list .service-card-link {
	margin-top: 0;
	font-size: 12px;
	line-height: 1.2;
	letter-spacing: 0.03em;
}

@media (max-width: 759px) {
	#services-list .feature-card img {
		height: 160px;
	}

	#services-list .service-card-body h3 {
		font-size: 14px;
	}
}

@media (min-width: 760px) {
	#servicios .container {
		padding-left: 16px;
		padding-right: 16px;
	}

	#services-list {
		max-width: none;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 14px;
		column-gap: 12px;
	}

	#services-list .feature-card img {
		height: 180px;
	}

	#services-list .service-card-body h3 {
		font-size: 15px;
	}
	}

.topbar {
	position: sticky;
	top: 0;
	z-index: 80;
	backdrop-filter: blur(18px);
	background: rgba(255, 249, 242, 0.92);
	border-bottom: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 12px 32px rgba(19, 34, 56, 0.08);
}

.nav-shell {
	min-height: 5.15rem;
	gap: 0.65rem;
}

.nav-mobile {
	grid-template-columns: 3rem minmax(0, 1fr) 2.5rem;
	gap: 0.75rem;
	align-items: center;
}

.brand {
	gap: 0.72rem;
	min-width: 0;
	justify-self: center;
	width: 100%;
	justify-content: center;
}

.brand-mark {
	position: relative;
	flex: none;
	width: 2.78rem;
	height: 2.78rem;
	display: inline-grid;
	place-items: center;
	border-radius: 0.92rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 231, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 24px rgba(19, 34, 56, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.7);
	overflow: hidden;
}

.brand-mark::after {
	content: "";
	position: absolute;
	inset: 0.4rem;
	border-radius: 0.7rem;
	background:
		linear-gradient(90deg, #0b3d91 0 46%, transparent 46% 54%, #ce1126 54% 100%),
		linear-gradient(180deg, #ffffff 0 46%, transparent 46% 54%, #ffffff 54% 100%),
		#ffffff;
	box-shadow: inset 0 0 0 1px rgba(19, 34, 56, 0.08);
	}

.brand-mark-flag {
	position: relative;
	z-index: 1;
	width: 0.82rem;
	height: 0.82rem;
	border-radius: 0.28rem;
	background: #ffffff;
	border: 0.08rem solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 2px 6px rgba(19, 34, 56, 0.12);
	}

.brand-copy strong {
	font-size: 1rem;
	letter-spacing: 0.08em;
	color: #10233a;
	}

.brand-copy small {
	font-size: 0.74rem;
	color: #617286;
	margin-top: 0.16rem;
	}

.topbar-chip {
	flex: none;
	min-width: 2.9rem;
	height: 2.9rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.82rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffffff, #efe9e0);
	border: 1px solid rgba(19, 34, 56, 0.1);
	color: #0b3d91;
	font-size: 0.84rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	box-shadow: 0 12px 22px rgba(19, 34, 56, 0.08);
	}

.menu-toggle {
	font-size: 0.96rem;
	letter-spacing: 0.11em;
	background: linear-gradient(180deg, #ffffff, #f1ebe4);
	text-align: center;
	border: 1px solid rgba(19, 34, 56, 0.12);
	box-shadow: 0 12px 24px rgba(19, 34, 56, 0.1);
	}


.menu-toggle-box span,
	text-align: center;
.menu-toggle span {
	background: #111111;
	}

	width: 2.42rem;
	height: 2.42rem;
	}

.showcase-copy {
	border-radius: 1.55rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 235, 226, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 22px rgba(19, 34, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
	justify-self: end;
	border-color: rgba(232, 119, 46, 0.18);

.topbar-flag {
	width: 1.58rem;
	height: 1.58rem;
	border-radius: 999px;
	background:
		linear-gradient(90deg, #0b3d91 0 44%, transparent 44% 56%, #ce1126 56% 100%),
		linear-gradient(180deg, transparent 0 44%, #ffffff 44% 56%, transparent 56% 100%),
		#ffffff;
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 4px 10px rgba(19, 34, 56, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.48);
	position: relative;
}

.topbar-flag::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.32rem;
	height: 0.32rem;
	border-radius: 999px;
	background: #f3d25a;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 0 0.08rem rgba(255, 255, 255, 0.88);
}
	color: #cb6326;
	font-size: 0.72rem;
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 0.98rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 22px rgba(19, 34, 56, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	justify-self: start;
	transform-origin: center;
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
	font-size: clamp(2.05rem, 8vw, 4.2rem);
	line-height: 0.98;

.menu-toggle-box {
	width: 1.28rem;
	height: 0.94rem;
	}

	color: #10233a;
	letter-spacing: -0.04em;
	margin-bottom: 0.8rem;
	}

.menu-toggle-box span {
	height: 0.16rem;
	border-radius: 999px;
	}

.menu-toggle-box span:nth-child(2) {
	width: 78%;
	left: 11%;
	}

.menu-toggle:hover,
.menu-toggle:focus-visible {
	transform: translateY(-1px) scale(1.02);
	background: linear-gradient(180deg, #ffffff, #f7f2eb);
	border-color: rgba(19, 34, 56, 0.14);
	box-shadow: 0 14px 28px rgba(19, 34, 56, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
	}

.menu-toggle[aria-expanded="true"] {
	background: linear-gradient(180deg, #fbfbfb, #f2ece5);
	}

.lead {
	font-size: 1rem;
	line-height: 1.62;
	color: #58697d;
	max-width: 34ch;
	margin-bottom: 0;
	}

.hero-cta {
	margin-top: 1rem;
	gap: 0.72rem;
	}

.btn {
	min-height: 3.15rem;
	font-size: 0.98rem;
	}

.btn-solid {
	background: linear-gradient(135deg, #e98239, #d96f32);
	box-shadow: 0 16px 30px rgba(217, 111, 50, 0.24);
	}

.btn-outline {
	background: #ffffff;
	border-color: rgba(19, 34, 56, 0.1);
	color: #0d5f5c;
	}

.metrics {
	margin-top: 1rem;
	gap: 0.72rem;
	}

.metric {
	padding: 0.92rem 0.95rem;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 14px 28px rgba(19, 34, 56, 0.08);
	display: grid;
	gap: 0.18rem;
	align-content: start;
	}

.metric strong {
	font-size: 1rem;
	color: #10233a;
	margin-bottom: 0.18rem;
	line-height: 1;
	letter-spacing: -0.02em;
	}

.metric span {
	color: #607286;
	font-size: 0.84rem;
	line-height: 1.4;
	max-width: 24ch;
	}

.slider {
	border-radius: 1.55rem;
	background: linear-gradient(180deg, #11357e, #0a2262);
	box-shadow: 0 20px 44px rgba(10, 34, 98, 0.18);
	}

.slides,
.slide img,
.slide video {
	min-height: 17.8rem;
	}

.slide::after {
	background: linear-gradient(180deg, rgba(7, 19, 36, 0.02), rgba(7, 19, 36, 0.34));
	}

.slide-copy {
	inset: auto 0.9rem 4.2rem 0.9rem;
	padding: 0.8rem 0.88rem;
	border-radius: 1.15rem;
	background: linear-gradient(180deg, rgba(10, 22, 46, 0.74), rgba(10, 22, 46, 0.6));
	backdrop-filter: blur(8px);
	box-shadow: 0 10px 26px rgba(5, 12, 28, 0.16);
	}

.slide-copy p {
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	margin-bottom: 0.3rem;
	}

.slide-copy h2 {
	font-size: 1.85rem;
	line-height: 0.98;
	max-width: 10ch;
	}

.slider-controls {
	inset: auto 0.9rem 0.9rem 0.9rem;
	}

.slider-btn {
	width: 2.55rem;
	height: 2.55rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	backdrop-filter: blur(8px);
	}

@media (max-width: 759px) {
	.hero-cta,
	.contact-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-cta .btn,
	.contact-actions .btn,
	.drawer-cta .btn {
		width: 100%;
	}

	.showcase-grid {
		gap: 1.05rem;
	}

	.showcase-copy {
		padding: 1rem;
	}

	.h1,
	.showcase-copy h1 {
		font-size: 2.25rem;
	}

	.metric {
		border-radius: 1rem;
	}
}

@media (min-width: 980px) {
	.topbar {
		background: rgba(255, 249, 242, 0.9);
	}

	.showcase {
		padding-top: 1.6rem;
	}

	.showcase-grid {
		grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
		align-items: stretch;
	}

	.showcase-copy {
		padding: 1.6rem;
	}
}

/* Final hero contrast refresh */
.showcase {
	background:
		radial-gradient(circle at 16% 14%, rgba(83, 148, 255, 0.16), transparent 22%),
		radial-gradient(circle at 88% 18%, rgba(217, 111, 50, 0.1), transparent 20%),
		linear-gradient(180deg, #f7f3ed 0%, #efe8df 100%);
}

.showcase-copy {
	position: relative;
	padding: 1.18rem;
	border-radius: 1.55rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 229, 0.97));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 18px 40px rgba(19, 34, 56, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	color: #10233a;
}

.showcase-copy::after {
	content: "";
	position: absolute;
	inset: auto -2.5rem -2.8rem auto;
	width: 9rem;
	height: 9rem;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(217, 111, 50, 0.12), rgba(217, 111, 50, 0));
	pointer-events: none;
}

#hero-eyebrow,
.showcase-copy .eyebrow {
	background: rgba(255, 255, 255, 0.96);
	color: #d96f32;
	border: 1px solid rgba(217, 111, 50, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 20px rgba(19, 34, 56, 0.06);
	letter-spacing: 0.05em;
}

#hero-title,
.showcase-copy h1 {
	color: #10233a;
	text-shadow: none;
	letter-spacing: -0.05em;
	line-height: 0.96;
	max-width: 10ch;
}

#hero-lead,
.showcase-copy .lead {
	color: #5f7084;
	max-width: 28ch;
	line-height: 1.65;
}

.hero-cta {
	margin-top: 1rem;
	gap: 0.78rem;
}

.hero-cta .btn {
	width: 100%;
	min-height: 3.2rem;
	font-size: 0.98rem;
	font-weight: 800;
}

.btn-solid {
	background: linear-gradient(135deg, #ea853a, #d96f32);
	color: #fff;
	box-shadow: 0 16px 30px rgba(217, 111, 50, 0.24);
}

.btn-solid:hover,
.btn-solid:focus-visible {
	background: linear-gradient(135deg, #f0914b, #de7a39);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.94);
	border-color: rgba(19, 34, 56, 0.1);
	color: #0d5f5c;
	box-shadow: 0 10px 20px rgba(19, 34, 56, 0.06);
}

.btn-outline:hover,
.btn-outline:focus-visible {
	background: #ffffff;
	border-color: rgba(13, 95, 92, 0.2);
}

.metrics {
	margin-top: 1rem;
	gap: 0.72rem;
}

.metric {
	padding: 1rem;
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 14px 28px rgba(19, 34, 56, 0.08);
}

.metric strong {
	color: #10233a;
	font-size: 1.08rem;
	letter-spacing: -0.03em;
}

.metric span {
	color: #617286;
	font-size: 0.88rem;
	line-height: 1.45;
}

@media (max-width: 759px) {
	.showcase {
		padding: 0.95rem 0 1.45rem;
	}

	.showcase-grid {
		gap: 1rem;
	}

	.showcase-copy {
		padding: 1.1rem;
		border-radius: 1.45rem;
	}

	#hero-title,
	.showcase-copy h1 {
		font-size: clamp(2.15rem, 9vw, 3rem);
	}

	#hero-lead,
	.showcase-copy .lead {
		font-size: 0.98rem;
		max-width: none;
	}

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

@media (min-width: 760px) {
	.showcase-copy {
		padding: 1.45rem;
	}

	#hero-lead,
	.showcase-copy .lead {
		max-width: 40ch;
	}

	.hero-cta .btn {
		width: auto;
	}
}

/* Premium mobile system override */
html,
body {
	background-color: #04060c;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

main {
	flex: 1 0 auto;
}

.topbar {
	backdrop-filter: blur(14px);
	background: rgba(255, 250, 244, 0.9);
	box-shadow: 0 8px 22px rgba(19, 34, 56, 0.06);
}

.nav-shell {
	min-height: 4.25rem;
}

.nav-mobile {
	grid-template-columns: 2.8rem minmax(0, 1fr) 2.25rem;
	gap: 0.65rem;
}

.mobile-brand-logo {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.85rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 20px rgba(19, 34, 56, 0.08);
	padding: 0.16rem;
	object-fit: cover;
	object-position: center;
}

.brand {
	gap: 0.6rem;
}

.brand-copy strong {
	font-size: 0.92rem;
	letter-spacing: 0.1em;
	line-height: 1;
}

.brand-copy small {
	font-size: 0.68rem;
	margin-top: 0.08rem;
	line-height: 1.05;
}

.menu-toggle {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 0.95rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 8px 18px rgba(19, 34, 56, 0.08);
}

.menu-toggle-box span {
	background: #101820;
	height: 0.15rem;
}

.topbar-chip {
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	box-shadow: 0 8px 18px rgba(19, 34, 56, 0.06);
}

.topbar-flag {
	width: 1.46rem;
	height: 1.46rem;
}

.showcase {
	padding: 0.7rem 0 1.05rem;
}

.showcase-grid {
	gap: 0.9rem;
}

.showcase-copy {
	padding: 1rem;
	border-radius: 1.32rem;
	box-shadow: 0 14px 30px rgba(19, 34, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

#hero-eyebrow,
.showcase-copy .eyebrow {
	padding: 0.34rem 0.72rem;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	margin-bottom: 0.72rem;
}

#hero-title,
.showcase-copy h1 {
	font-size: clamp(1.95rem, 8.2vw, 2.7rem);
	line-height: 0.94;
	max-width: 9ch;
	margin-bottom: 0.72rem;
	text-wrap: balance;
}

#hero-lead,
.showcase-copy .lead {
	font-size: 0.96rem;
	line-height: 1.58;
	max-width: 31ch;
}

.hero-cta {
	margin-top: 0.88rem;
	gap: 0.62rem;
}

.hero-cta .btn {
	min-height: 3.05rem;
	font-size: 0.95rem;
	border-radius: 1rem;
}

.metrics {
	margin-top: 0.9rem;
	gap: 0.6rem;
}

.metric {
	padding: 0.88rem 0.9rem;
	border-radius: 1rem;
}

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

.metric span {
	font-size: 0.82rem;
	line-height: 1.38;
}

.slider {
	border-radius: 1.32rem;
	overflow: hidden;
}

.slides,
.slide img,
.slide video {
	min-height: 16.2rem;
}

.slide-copy {
	inset: auto 0.8rem 3.8rem 0.8rem;
	padding: 0.72rem 0.8rem;
	border-radius: 1rem;
}

.slide-copy h2 {
	font-size: 1.55rem;
	max-width: 11ch;
}

.slider-controls {
	inset: auto 0.8rem 0.8rem 0.8rem;
}

.brands-section {
	padding-top: 1.1rem;
	padding-bottom: 1.2rem;
}

.brands-intro-line {
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	margin-bottom: 0.75rem;
	color: #6a7b8f;
}

.brands-grid {
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0.15rem 0 0.45rem;
	scroll-snap-type: x proximity;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.brands-grid::-webkit-scrollbar {
	display: none;
}

.brands-row {
	display: flex;
	gap: 0.65rem;
	min-width: max-content;
	padding-right: 0.25rem;
}

.brand-card {
	flex: 0 0 auto;
	scroll-snap-align: start;
}

.brand-card-name {
	min-height: 2.45rem;
	padding: 0.35rem 0.86rem;
	font-size: 0.8rem;
	white-space: nowrap;
}

.coverage-grid {
	gap: 0.9rem;
}

.map-card {
	padding: 0.78rem;
	border-radius: 1.28rem;
}

.coverage-map-canvas,
.coverage-map-fallback {
	min-height: 15.2rem;
	border-radius: 1rem;
}

.map-tag {
	margin-top: 0.72rem;
	font-size: 0.82rem;
	padding: 0.62rem 0.82rem;
}

.map-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.58rem;
	min-height: 2.8rem;
	padding: 0.72rem 0.95rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(127, 161, 235, 0.14);
	color: #e8f0ff;
	font-weight: 800;
	font-size: 0.9rem;
}

.map-action:hover,
.map-action:focus-visible {
	background: rgba(255, 255, 255, 0.12);
}

.contact-wrap,
.trust-panel,
.quote-card,
.policy-card,
.coverage-item,
.step {
	border-radius: 1.2rem;
}

.footer {
	margin-top: 0;
	padding: 1.35rem 0 calc(7.4rem + env(safe-area-inset-bottom, 0px));
	background: linear-gradient(180deg, #07111d 0%, #04060c 100%);
	border-top: 1px solid rgba(117, 151, 222, 0.08);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.footer-grid {
	gap: 1.2rem;
	padding-top: 1rem;
}

.footer-grid h3 {
	margin-bottom: 0.55rem;
	font-size: 0.82rem;
	letter-spacing: 0.11em;
}

.footer-grid a,
.footer-grid p {
	font-size: 0.92rem;
	line-height: 1.5;
}

.footer-bottom {
	padding-top: 1rem;
	margin-top: 1.15rem;
	gap: 0.32rem;
	color: rgba(217, 228, 245, 0.64);
}

.wa-float {
	right: 0.75rem;
	bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
	padding: 0.78rem 0.9rem;
	border-radius: 1rem;
	font-size: 0.88rem;
	box-shadow: 0 18px 38px rgba(5, 12, 28, 0.32);
}

.wa-float span {
	white-space: nowrap;
}

@media (max-width: 759px) {
	.coverage-map-canvas {
		pointer-events: none;
	}
}

@media (min-width: 760px) {
	.nav-shell {
		min-height: 4.65rem;
	}

	.brands-grid {
		overflow: visible;
		padding-bottom: 0;
		scroll-snap-type: none;
	}

	.brands-row {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		min-width: 0;
	}

	.coverage-map-canvas {
		pointer-events: none;
	}
}

@media (min-width: 980px) {
	.coverage-map-canvas {
		pointer-events: auto;
	}
}

/* Final footer and mobile logo visibility fix */
html {
	background: var(--bg) !important;
	background-color: var(--bg) !important;
}

body {
	background:
		radial-gradient(circle at top left, rgba(83, 148, 255, 0.24), transparent 24%),
		radial-gradient(circle at 85% 18%, rgba(43, 99, 255, 0.22), transparent 18%),
		radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 20%),
		linear-gradient(180deg, #0a1221 0%, var(--bg) 35%, #05070d 100%) !important;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1 0 auto;
}

.footer {
	margin-top: 0 !important;
	padding-bottom: calc(8.2rem + env(safe-area-inset-bottom, 0px)) !important;
	background: #04060c !important;
	background-color: #04060c !important;
	border-top: 0 !important;
	box-shadow: none !important;
	flex-shrink: 0;
}

.footer-bottom {
	padding-bottom: 0.35rem;
}

.mobile-brand-logo,
.brand-drawer .mobile-brand-logo {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 2.5rem !important;
	height: 2.5rem !important;
	padding: 0.18rem !important;
	border-radius: 0.9rem !important;
	background: linear-gradient(135deg, #0d5f5c, #173cc7) !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	box-shadow: 0 10px 22px rgba(19, 34, 56, 0.18) !important;
	object-fit: contain !important;
	object-position: center !important;
}

.brand-drawer .mobile-brand-logo {
	width: 2.35rem !important;
	height: 2.35rem !important;
}

@media (max-width: 759px) {
	.brands-grid {
		display: block !important;
		width: 100% !important;
		max-width: 100% !important;
		overflow: hidden !important;
		overflow-x: hidden !important;
		padding: 0.2rem 0 0.55rem !important;
		min-height: 3rem;
	}

	.brands-track {
		display: flex !important;
		align-items: center !important;
		gap: 0.65rem !important;
		width: max-content !important;
		min-width: max-content !important;
		animation: brands-mobile-marquee 26s linear infinite !important;
	}

	.brands-grid .brand-card {
		display: block !important;
		flex: 0 0 auto !important;
		width: auto !important;
		min-width: max-content !important;
		margin: 0 !important;
	}

	.brands-grid .brand-card-name {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		white-space: nowrap !important;
		min-width: fit-content;
		padding: 0.42rem 0.92rem !important;
		font-size: 0.84rem !important;
	}
}

/* Final brands mobile slider fix */
.brands-grid {
	overflow: hidden;
	position: relative;
	padding: 0.2rem 0;
}

.brands-grid::before,
.brands-grid::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1.2rem;
	z-index: 2;
	pointer-events: none;
}

.brands-grid::before {
	left: 0;
	background: linear-gradient(90deg, rgba(10, 18, 33, 0.96) 0%, rgba(10, 18, 33, 0) 100%);
}

.brands-grid::after {
	right: 0;
	background: linear-gradient(270deg, rgba(10, 18, 33, 0.96) 0%, rgba(10, 18, 33, 0) 100%);
}

.brands-track {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	width: max-content;
	will-change: transform;
	animation: brands-mobile-marquee 24s linear infinite;
}

.brands-track:hover {
	animation-play-state: paused;
}

.brand-card {
	flex: 0 0 auto;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.brand-card-name {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.35rem;
	padding: 0.35rem 0.88rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96));
	border: 1px solid rgba(19, 34, 56, 0.08);
	box-shadow: 0 10px 20px rgba(19, 34, 56, 0.06);
	white-space: nowrap;
	font-size: 0.84rem;
	font-weight: 800;
	color: #17364f;
}

@keyframes brands-mobile-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-50% - 0.325rem));
	}
}

@media (max-width: 759px) {
	.brands-grid {
		margin-top: 0.7rem;
		min-height: 2.8rem;
	}

	.brands-track {
		animation-duration: 28s;
	}
}

@media (min-width: 760px) {
	.brands-grid {
		overflow: hidden;
	}

	.brands-track {
		gap: 0.8rem;
		animation-duration: 34s;
	}
}

/* Final premium consistency pass */
:root {
	--premium-bg: #050b16;
	--premium-bg-soft: #0a1426;
	--premium-surface: rgba(10, 19, 37, 0.9);
	--premium-surface-strong: rgba(14, 24, 45, 0.96);
	--premium-surface-soft: rgba(18, 31, 58, 0.82);
	--premium-line: rgba(122, 154, 226, 0.16);
	--premium-line-strong: rgba(122, 154, 226, 0.28);
	--premium-text: #edf4ff;
	--premium-text-soft: #9caecc;
	--premium-accent: #5a8dff;
	--premium-accent-strong: #2f66ff;
	--premium-shadow: 0 22px 50px rgba(2, 8, 20, 0.34);
}

.topbar,
.policy-detail-page .topbar {
	background: rgba(7, 13, 24, 0.78);
	border-bottom: 1px solid var(--premium-line);
	box-shadow: 0 16px 34px rgba(2, 8, 20, 0.22);
	backdrop-filter: blur(16px);
}

.brand-copy strong,
.brand-copy small,
.nav-desktop,
.nav-desktop a:not(.btn) {
	color: var(--premium-text-soft);
}

.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn):focus-visible,
.brand-copy strong {
	color: var(--premium-text);
}

.menu-toggle,
.topbar-chip,
.mobile-brand-logo,
.brand-drawer .mobile-brand-logo {
	background: linear-gradient(180deg, rgba(19, 33, 61, 0.96), rgba(9, 16, 30, 0.98)) !important;
	border: 1px solid var(--premium-line-strong) !important;
	box-shadow: 0 14px 28px rgba(2, 8, 20, 0.28) !important;
}

.menu-toggle-box span {
	background: #f5f8ff;
}

.topbar-chip {
	background: linear-gradient(180deg, rgba(21, 36, 66, 0.96), rgba(10, 17, 31, 0.98));
}

.showcase {
	background:
		radial-gradient(circle at 14% 16%, rgba(90, 141, 255, 0.22), transparent 24%),
		radial-gradient(circle at 82% 20%, rgba(62, 110, 231, 0.14), transparent 22%),
		linear-gradient(180deg, #07111f 0%, #050b16 100%);
}

.showcase-copy {
	background: linear-gradient(180deg, rgba(13, 24, 45, 0.96), rgba(8, 14, 27, 0.98));
	border: 1px solid var(--premium-line);
	box-shadow: var(--premium-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
	color: var(--premium-text);
}

.showcase-copy::after {
	background: radial-gradient(circle, rgba(90, 141, 255, 0.14), rgba(90, 141, 255, 0));
}

#hero-eyebrow,
.showcase-copy .eyebrow,
.eyebrow-dark {
	background: rgba(18, 31, 58, 0.72);
	color: #d9e8ff;
	border: 1px solid rgba(122, 154, 226, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#hero-title,
.showcase-copy h1,
.showcase-copy h2,
.card-body h3,
.policy-card h3,
.coverage-item strong,
.contact-wrap h2,
.trust-panel h2,
.section h2,
.section-dark h2,
.quote-card strong,
.policy-hero-shell h1,
.policy-side-card h2,
.policy-reading-section h2,
.policy-legal-item span,
.policy-related-link strong {
	color: var(--premium-text);
}

#hero-lead,
.showcase-copy .lead,
.section-intro,
.card-body p,
.policy-card p,
.coverage-item span,
.trust-points li,
.quote-card span,
.contact-wrap p,
.policy-hero-shell .lead,
.policy-side-card p,
.policy-reading-section p,
.policy-reading-list,
.policy-related-link span,
.policy-legal-item strong,
.policy-breadcrumb,
.policy-breadcrumb a {
	color: var(--premium-text-soft);
}

.btn-solid {
	background: linear-gradient(135deg, var(--premium-accent), var(--premium-accent-strong));
	color: #ffffff;
	box-shadow: 0 16px 32px rgba(47, 102, 255, 0.24);
}

.btn-solid:hover,
.btn-solid:focus-visible {
	background: linear-gradient(135deg, #6b99ff, #3a72ff);
}

.btn-outline {
	background: rgba(18, 31, 58, 0.62);
	border-color: var(--premium-line);
	color: #e7f0ff;
	box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
	background: rgba(22, 38, 69, 0.82);
	border-color: var(--premium-line-strong);
}

.slider,
.map-card,
.coverage-item,
.policy-card,
.trust-panel,
.quote-card,
.contact-wrap,
.step,
.card,
.service-sheet-panel,
.drawer-panel,
.policy-reading-card,
.policy-side-card,
.policy-reading-section,
.policy-related-link,
.policy-side-legal {
	background: linear-gradient(180deg, rgba(14, 24, 45, 0.96), rgba(8, 14, 27, 0.98));
	border: 1px solid var(--premium-line);
	box-shadow: var(--premium-shadow);
}

.slider,
.map-card,
.policy-reading-card,
.service-sheet-panel,
.drawer-panel {
	overflow: hidden;
}

.slide-copy,
.service-sheet-highlight,
.service-sheet-meta span,
.card-body span,
.map-tag,
.policy-meta-chip,
.policy-side-tags .policy-meta-chip {
	background: rgba(18, 31, 58, 0.7);
	border: 1px solid var(--premium-line);
	color: #dce9ff;
	box-shadow: none;
}

.slide-copy {
	backdrop-filter: blur(10px);
	background: linear-gradient(180deg, rgba(8, 16, 31, 0.78), rgba(8, 16, 31, 0.64));
}

.metric {
	background: linear-gradient(180deg, rgba(17, 30, 56, 0.9), rgba(9, 16, 30, 0.96));
	border: 1px solid var(--premium-line);
	box-shadow: 0 14px 30px rgba(2, 8, 20, 0.22);
}

.metric strong,
.metric span {
	color: var(--premium-text);
}

.metric span {
	color: var(--premium-text-soft);
}

.brands-section,
.coverage,
.policies,
.contact-section,
.trust-section,
.section-dark {
	position: relative;
	background: transparent;
}

.brands-intro-line {
	color: var(--premium-text-soft);
}

.brand-card-name {
	background: linear-gradient(180deg, rgba(16, 29, 55, 0.98), rgba(9, 15, 28, 0.98));
	border: 1px solid var(--premium-line);
	box-shadow: 0 12px 24px rgba(2, 8, 20, 0.18);
	color: #dde9ff;
}

.brands-grid::before {
	background: linear-gradient(90deg, rgba(5, 11, 22, 0.98) 0%, rgba(5, 11, 22, 0) 100%);
}

.brands-grid::after {
	background: linear-gradient(270deg, rgba(5, 11, 22, 0.98) 0%, rgba(5, 11, 22, 0) 100%);
}

.map-action {
	background: linear-gradient(135deg, rgba(28, 53, 101, 0.78), rgba(18, 33, 61, 0.84));
	border: 1px solid var(--premium-line-strong);
	color: #f2f7ff;
}

.map-action:hover,
.map-action:focus-visible {
	background: linear-gradient(135deg, rgba(36, 66, 122, 0.9), rgba(21, 38, 70, 0.94));
}

.service-card-link,
.policy-card-cta {
	color: #a9c4ff;
}

.service-card-link:hover,
.service-card-link:focus-visible,
.policy-card-link:hover .policy-card-cta,
.policy-card-link:focus-visible .policy-card-cta {
	color: #d9e7ff;
}

.policy-card::after,
.card::after,
.coverage-item::after,
.contact-wrap::before,
.policy-reading-card::before {
	opacity: 0.45;
}

.policy-detail-page {
	background:
		radial-gradient(circle at top left, rgba(90, 141, 255, 0.16), transparent 22%),
		radial-gradient(circle at 80% 14%, rgba(45, 102, 255, 0.12), transparent 18%),
		linear-gradient(180deg, #08111f 0%, #050b16 100%);
	color: var(--premium-text);
}

.policy-breadcrumb strong,
.policy-breadcrumb a:hover,
.policy-breadcrumb a:focus-visible {
	color: var(--premium-text);
}

.policy-hero-icon,
.policy-related-icon {
	color: #eaf2ff;
	border: 1px solid var(--premium-line-strong);
	box-shadow: none;
	background: linear-gradient(180deg, rgba(22, 39, 73, 0.98), rgba(10, 18, 33, 0.98));
}

.policy-hero-icon[data-policy-icon="GT"],
.policy-related-icon[data-policy-icon="GT"],
.policy-hero-icon[data-policy-icon="RB"],
.policy-related-icon[data-policy-icon="RB"],
.policy-hero-icon[data-policy-icon="ST"],
.policy-related-icon[data-policy-icon="ST"],
.policy-hero-icon[data-policy-icon="CS"],
.policy-related-icon[data-policy-icon="CS"] {
	background: linear-gradient(180deg, rgba(24, 42, 80, 0.98), rgba(10, 18, 33, 0.98));
}

.policy-reading-section::before {
	background: linear-gradient(180deg, #7aa6ff, #2f66ff);
}

.policy-side-contact {
	background:
		radial-gradient(circle at top right, rgba(90, 141, 255, 0.16), transparent 28%),
		linear-gradient(180deg, rgba(14, 28, 53, 0.98), rgba(8, 14, 27, 0.98));
	border-color: var(--premium-line-strong);
	box-shadow: var(--premium-shadow);
}

.footer {
	background: linear-gradient(180deg, #07101d 0%, #04060c 100%) !important;
	border-top: 1px solid rgba(122, 154, 226, 0.12) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.footer-grid h3,
.footer-grid a:hover,
.footer-grid a:focus-visible {
	color: var(--premium-text);
}

.footer-grid a,
.footer-grid p,
.footer-bottom {
	color: var(--premium-text-soft);
}

@media (max-width: 759px) {
	.showcase-copy,
	.slider,
	.map-card,
	.card,
	.policy-card,
	.trust-panel,
	.quote-card,
	.contact-wrap,
	.step,
	.policy-reading-card,
	.policy-side-card,
	.policy-reading-section {
		border-radius: 1.18rem;
	}

	.hero-cta .btn,
	.contact-actions .btn,
	.drawer-cta .btn,
	.policy-side-actions .btn {
		border-radius: 1rem;
	}

	#hero-title,
	.showcase-copy h1 {
		max-width: 10ch;
	}

	#hero-lead,
	.showcase-copy .lead,
	.policy-hero-shell .lead {
		max-width: none;
	}

	.wa-float {
		background: linear-gradient(135deg, #2f66ff, #5a8dff);
	}
	}

/* Final light premium override */
:root {
	--light-page: #f7f4ee;
	--light-page-soft: #efe8de;
	--light-surface: rgba(255, 255, 255, 0.94);
	--light-surface-strong: rgba(255, 255, 255, 0.98);
	--light-surface-soft: rgba(245, 239, 230, 0.92);
	--light-line: rgba(20, 42, 78, 0.08);
	--light-line-strong: rgba(44, 87, 168, 0.16);
	--light-text: #13253d;
	--light-text-soft: #62748a;
	--light-accent: #2f66ff;
	--light-accent-soft: #5d8fff;
	--light-shadow: 0 18px 44px rgba(19, 37, 61, 0.1);
}

html {
	background: var(--light-page) !important;
	background-color: var(--light-page) !important;
}

body,
.policy-detail-page {
	background:
		radial-gradient(circle at 12% 10%, rgba(93, 143, 255, 0.12), transparent 22%),
		radial-gradient(circle at 88% 14%, rgba(214, 230, 255, 0.72), transparent 20%),
		linear-gradient(180deg, #fcfaf6 0%, #f5efe6 55%, #eee7dc 100%) !important;
	color: var(--light-text) !important;
}

.topbar,
.policy-detail-page .topbar {
	background: rgba(252, 249, 244, 0.86) !important;
	border-bottom: 1px solid var(--light-line) !important;
	box-shadow: 0 12px 30px rgba(19, 37, 61, 0.08) !important;
	backdrop-filter: blur(16px);
}

.brand-copy strong,
.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn):focus-visible,
.policy-breadcrumb strong,
.policy-breadcrumb a:hover,
.policy-breadcrumb a:focus-visible {
	color: var(--light-text) !important;
}

.brand-copy small,
.nav-desktop,
.nav-desktop a:not(.btn),
.section-intro,
.policy-breadcrumb,
.policy-breadcrumb a,
.policy-reading-section p,
.policy-reading-list,
.policy-side-card p,
.policy-related-link span,
.footer-grid a,
.footer-grid p,
.footer-bottom {
	color: var(--light-text-soft) !important;
}

.menu-toggle,
.topbar-chip,
.mobile-brand-logo,
.brand-drawer .mobile-brand-logo {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.98)) !important;
	border: 1px solid var(--light-line-strong) !important;
	box-shadow: 0 10px 24px rgba(19, 37, 61, 0.1) !important;
}

.menu-toggle-box span {
	background: #13253d !important;
}

.showcase {
	background:
		radial-gradient(circle at 14% 12%, rgba(93, 143, 255, 0.16), transparent 24%),
		radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.82), transparent 22%),
		linear-gradient(180deg, #f9f6f1 0%, #f2eadf 100%) !important;
}

.showcase-copy,
.slider,
.map-card,
.coverage-item,
.policy-card,
.trust-panel,
.quote-card,
.contact-wrap,
.step,
.card,
.service-sheet-panel,
.drawer-panel,
.policy-reading-card,
.policy-side-card,
.policy-reading-section,
.policy-related-link,
.policy-side-legal {
	background: linear-gradient(180deg, var(--light-surface-strong), var(--light-surface-soft)) !important;
	border: 1px solid var(--light-line) !important;
	box-shadow: var(--light-shadow) !important;
	color: var(--light-text) !important;
}

.showcase-copy::after {
	background: radial-gradient(circle, rgba(93, 143, 255, 0.16), rgba(93, 143, 255, 0)) !important;
}

#hero-eyebrow,
.showcase-copy .eyebrow,
.eyebrow-dark,
.policy-meta-chip,
.policy-side-tags .policy-meta-chip,
.slide-copy,
.service-sheet-highlight,
.service-sheet-meta span,
.card-body span,
.map-tag {
	background: rgba(236, 243, 255, 0.9) !important;
	color: #36527a !important;
	border: 1px solid rgba(93, 143, 255, 0.18) !important;
	box-shadow: none !important;
}

#hero-title,
.showcase-copy h1,
.showcase-copy h2,
.card-body h3,
.policy-card h3,
.coverage-item strong,
.contact-wrap h2,
.trust-panel h2,
.section h2,
.section-dark h2,
.quote-card strong,
.policy-hero-shell h1,
.policy-side-card h2,
.policy-reading-section h2,
.policy-legal-item span,
.policy-related-link strong,
.metric strong,
.metric span {
	color: var(--light-text) !important;
}

#hero-lead,
.showcase-copy .lead,
.card-body p,
.policy-card p,
.coverage-item span,
.trust-points li,
.quote-card span,
.contact-wrap p,
.policy-hero-shell .lead,
.policy-legal-item strong {
	color: var(--light-text-soft) !important;
}

.btn-solid,
.map-action,
.wa-float {
	background: linear-gradient(135deg, var(--light-accent), var(--light-accent-soft)) !important;
	color: #ffffff !important;
	border: 1px solid rgba(47, 102, 255, 0.1) !important;
	box-shadow: 0 16px 32px rgba(47, 102, 255, 0.18) !important;
}

.btn-solid:hover,
.btn-solid:focus-visible,
.map-action:hover,
.map-action:focus-visible,
.wa-float:hover,
.wa-float:focus-visible {
	background: linear-gradient(135deg, #3c73ff, #709dff) !important;
}

.btn-outline {
	background: rgba(255, 255, 255, 0.92) !important;
	color: var(--light-text) !important;
	border-color: var(--light-line-strong) !important;
	box-shadow: 0 10px 24px rgba(19, 37, 61, 0.06) !important;
}

.btn-outline:hover,
.btn-outline:focus-visible {
	background: #ffffff !important;
	border-color: rgba(47, 102, 255, 0.24) !important;
}

.metric {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 238, 230, 0.96)) !important;
	border: 1px solid var(--light-line) !important;
	box-shadow: 0 14px 28px rgba(19, 37, 61, 0.08) !important;
}

.brand-card-name {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96)) !important;
	border: 1px solid var(--light-line) !important;
	box-shadow: 0 10px 20px rgba(19, 37, 61, 0.06) !important;
	color: #244166 !important;
}

.brands-grid::before {
	background: linear-gradient(90deg, rgba(249, 246, 241, 0.96) 0%, rgba(249, 246, 241, 0) 100%) !important;
}

.brands-grid::after {
	background: linear-gradient(270deg, rgba(249, 246, 241, 0.96) 0%, rgba(249, 246, 241, 0) 100%) !important;
}

.policy-hero-icon,
.policy-related-icon {
	color: #244166 !important;
	border: 1px solid rgba(93, 143, 255, 0.16) !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 243, 255, 0.94)) !important;
	box-shadow: 0 10px 22px rgba(19, 37, 61, 0.07) !important;
}

.policy-reading-section::before {
	background: linear-gradient(180deg, #5d8fff, #2f66ff) !important;
}

.policy-side-contact {
	background:
		radial-gradient(circle at top right, rgba(93, 143, 255, 0.14), transparent 28%),
		linear-gradient(180deg, rgba(240, 247, 255, 0.98), rgba(229, 239, 255, 0.96)) !important;
	border-color: rgba(93, 143, 255, 0.18) !important;
}

.policy-side-contact .policy-side-label,
.policy-side-contact h2,
.policy-side-contact p {
	color: var(--light-text) !important;
}

.footer {
	background: linear-gradient(180deg, #070a12 0%, #04060c 100%) !important;
	border-top: 1px solid rgba(125, 157, 226, 0.12) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
}

.footer::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
	pointer-events: none;
}

.footer-grid h3,
.footer-grid a:hover,
.footer-grid a:focus-visible {
	color: #f5f8ff !important;
}

.footer-grid a,
.footer-grid p,
.footer-bottom {
	color: rgba(233, 241, 255, 0.78) !important;
}

.footer-brand img {
	filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.footer-bottom {
	border-top: 1px solid rgba(125, 157, 226, 0.12) !important;
}

/* Final quote card readability fix */
.quote-card {
	position: relative;
	background:
		radial-gradient(circle at 82% 18%, rgba(93, 143, 255, 0.14), transparent 20%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 237, 229, 0.96)) !important;
	border: 1px solid rgba(20, 42, 78, 0.08) !important;
	box-shadow: 0 18px 40px rgba(19, 37, 61, 0.08) !important;
	align-content: center;
	justify-items: center;
	text-align: center;
	min-height: 15rem;
}

.quote-card::before {
	color: rgba(47, 102, 255, 0.09) !important;
	top: 1rem;
	right: 1rem;
}

.quote-card p {
	max-width: 15ch;
	margin-inline: auto;
	margin-bottom: 1rem;
	color: #223a59 !important;
	font-size: clamp(1.18rem, 4.6vw, 1.62rem);
	line-height: 1.2;
	letter-spacing: -0.035em;
	text-wrap: balance;
	text-shadow: none;
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 1;
}

.quote-card strong {
	color: #1a2d47 !important;
	font-size: 1.02rem;
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}

.quote-card span {
	color: #62748a !important;
	font-size: 0.94rem;
	line-height: 1.45;
	max-width: 22ch;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

@media (max-width: 759px) {
	.quote-card {
		min-height: 13.5rem;
		padding-top: 1.35rem;
		padding-bottom: 1.1rem;
	}

	.quote-card p {
		max-width: 13ch;
		font-size: clamp(1.06rem, 6vw, 1.42rem);
	}

	.quote-card span {
		font-size: 0.9rem;
	}
	}

@media (max-width: 759px) {
	.wa-float {
		background: linear-gradient(135deg, #2f66ff, #5d8fff) !important;
	}

	.showcase {
		padding-top: 0.8rem;
	}
	}
