@charset "UTF-8";

:root {
	--ink: #101114;
	--ink-soft: #1a1f2a;
	--charcoal: #252a35;
	--gold: #f7b500;
	--gold-strong: #ffbf1f;
	--gold-soft: #ffe199;
	--cream: #faf6ec;
	--white: #ffffff;
	--line: rgba(16, 17, 20, 0.08);
	--muted: #677083;
	--shadow-xl: 0 30px 80px rgba(15, 16, 22, 0.18);
	--shadow-lg: 0 22px 50px rgba(15, 16, 22, 0.12);
	--shadow-sm: 0 12px 24px rgba(15, 16, 22, 0.08);
	--radius-xl: 36px;
	--radius-lg: 28px;
	--radius-md: 20px;
	--radius-sm: 14px;
	--container: min(1240px, calc(100% - 32px));
	--transition: 220ms ease;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: clamp(16px, 0.22vw + 15px, 18px);
	line-height: 1.72;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition), opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a:hover {
	color: var(--gold);
}

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

button {
	cursor: pointer;
}

svg {
	display: block;
	width: 100%;
	height: 100%;
}

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

.screen-reader-text:focus {
	position: fixed;
	top: 18px;
	left: 18px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;
	background: var(--white);
	color: var(--ink);
	clip: auto;
	border-radius: 12px;
	box-shadow: var(--shadow-sm);
}

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

.section-space {
	padding: 110px 0;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--gold);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-kicker::before {
	content: "";
	width: 28px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 16px;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.04em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.95rem, 5vw, 5rem);
	line-height: 1.02;
}

h2 {
	font-size: clamp(2.15rem, 3.6vw, 3.45rem);
}

h3 {
	font-size: clamp(1.28rem, 1.6vw, 1.72rem);
}

p {
	margin: 0 0 16px;
	color: var(--muted);
	text-wrap: pretty;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	line-height: 1;
}

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

.button--solid {
	background: linear-gradient(135deg, var(--gold), var(--gold-strong));
	color: var(--ink);
	box-shadow: 0 18px 36px rgba(247, 181, 0, 0.28);
}

.button--solid:hover {
	color: var(--ink);
}

.button--ghost {
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	backdrop-filter: blur(14px);
}

.button--ghost:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--white);
}

.button--dark {
	background: var(--ink);
	color: var(--white);
	box-shadow: var(--shadow-sm);
}

.button--dark:hover {
	color: var(--white);
}

.button--light {
	background: var(--white);
	color: var(--ink);
	border-color: rgba(255, 255, 255, 0.4);
}

.button--light:hover {
	color: var(--ink);
}

.site {
	position: relative;
	overflow: clip;
}

.topbar {
	position: relative;
	z-index: 20;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(11, 13, 17, 0.82);
	backdrop-filter: blur(18px);
}

.topbar__inner,
.topbar__links,
.nav-shell__inner,
.hero-actions,
.cta-band__actions,
.footer-brand {
	display: flex;
	align-items: center;
}

.topbar__inner {
	justify-content: space-between;
	gap: 16px;
	min-height: 50px;
}

.topbar__message {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.95rem;
}

.topbar__links {
	gap: 20px;
	font-size: 0.95rem;
	font-weight: 700;
}

.topbar__links a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--white);
}

.topbar__links a:last-child {
	color: var(--gold-soft);
}

.nav-shell {
	position: sticky;
	top: 0;
	z-index: 25;
	padding: 18px 0 0;
}

.nav-shell__inner {
	justify-content: space-between;
	gap: 24px;
	padding: 14px 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--shadow-lg);
}

body.is-scrolled .nav-shell__inner {
	box-shadow: 0 16px 40px rgba(15, 16, 22, 0.14);
}

.brand-link,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--gold), var(--gold-strong));
	color: var(--ink);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	box-shadow: 0 16px 30px rgba(247, 181, 0, 0.24);
}

.brand-copy {
	display: grid;
}

.brand-copy strong {
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.3rem;
	line-height: 1;
}

.brand-copy small {
	margin-top: 4px;
	color: var(--muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: 28px;
}

.primary-navigation a {
	font-weight: 700;
	color: var(--ink);
}

.menu-toggle {
	display: none;
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 16px;
	background: var(--cream);
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 999px;
	background: var(--ink);
	transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.desktop-cta {
	flex: 0 0 auto;
}

.site-main > section:first-child.hero-section {
	margin-top: -150px;
	padding-top: 240px;
}

.hero-section {
	position: relative;
	background:
		radial-gradient(circle at 18% 18%, rgba(247, 181, 0, 0.18), transparent 28%),
		linear-gradient(135deg, rgba(10, 11, 15, 0.92), rgba(15, 18, 27, 0.94)),
		url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center / cover;
	color: var(--white);
}

.hero-section::before,
.hero-section::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	filter: blur(10px);
}

.hero-section::before {
	top: 120px;
	right: 10%;
	width: 380px;
	height: 380px;
	background: rgba(247, 181, 0, 0.18);
}

.hero-section::after {
	left: -140px;
	bottom: 70px;
	width: 320px;
	height: 320px;
	background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 44px;
	align-items: center;
	padding-bottom: 118px;
}

.hero-copy h1 {
	max-width: 10.5ch;
}

.hero-copy__lead {
	max-width: 620px;
	font-size: clamp(1.08rem, 1vw + 0.92rem, 1.28rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.78);
}

.hero-points {
	display: grid;
	gap: 14px;
	margin: 34px 0 34px;
}

.hero-points li {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
}

.hero-points .icon-wrap {
	width: 36px;
	height: 36px;
	padding: 9px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--gold);
}

.hero-actions {
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 36px;
}

.quote-form {
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-lg);
}

.quote-form__header {
	margin-bottom: 18px;
}

.quote-form__header h2 {
	margin-bottom: 8px;
	font-size: 1.45rem;
}

.quote-form__header p {
	color: rgba(255, 255, 255, 0.72);
}

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

.quote-form label {
	display: grid;
	gap: 9px;
}

.quote-form label span {
	font-size: 0.92rem;
	font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
	width: 100%;
	padding: 15px 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
	outline: none;
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
	box-sizing: border-box;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
	border-color: rgba(247, 181, 0, 0.7);
	box-shadow: 0 0 0 4px rgba(247, 181, 0, 0.16);
}

.quote-form__wide {
	margin-top: 14px;
}

.quote-form__submit {
	width: 100%;
	margin-top: 18px;
}

.hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 700px;
}

.phone-mockup {
	position: relative;
	z-index: 2;
	width: min(350px, 74vw);
	padding: 14px;
	border-radius: 46px;
	background: linear-gradient(160deg, #11141b, #2a3140);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
	transform: rotate(7deg);
}

.phone-mockup__notch {
	width: 42%;
	height: 22px;
	margin: 0 auto 8px;
	border-radius: 0 0 16px 16px;
	background: #06070a;
}

.phone-mockup__screen {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 224, 0.96)),
		linear-gradient(135deg, rgba(247, 181, 0, 0.08), transparent 35%);
}

.mockup-route {
	position: absolute;
	inset: 0 0 42% 0;
	background:
		linear-gradient(transparent 95%, rgba(17, 17, 17, 0.05) 95%) 0 0 / 48px 48px,
		linear-gradient(90deg, transparent 95%, rgba(17, 17, 17, 0.05) 95%) 0 0 / 48px 48px,
		linear-gradient(180deg, rgba(247, 181, 0, 0.08), transparent 70%);
}

.mockup-line {
	position: absolute;
	background: var(--gold);
	box-shadow: 0 0 0 8px rgba(247, 181, 0, 0.15);
}

.mockup-line--one {
	top: 34%;
	left: 27%;
	width: 44%;
	height: 4px;
	transform: rotate(-32deg);
}

.mockup-line--two {
	top: 49%;
	left: 43%;
	width: 21%;
	height: 4px;
	transform: rotate(90deg);
}

.mockup-pin {
	position: absolute;
	width: 18px;
	height: 18px;
	border: 5px solid var(--white);
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 6px rgba(247, 181, 0, 0.18);
}

.mockup-pin--start {
	top: 28%;
	left: 22%;
}

.mockup-pin--end {
	top: 56%;
	right: 24%;
}

.mockup-card {
	position: absolute;
	right: 16px;
	bottom: 18px;
	left: 16px;
	padding: 20px;
	border-radius: 28px;
	background: rgba(17, 17, 20, 0.94);
	color: var(--white);
	box-shadow: var(--shadow-lg);
}

.mockup-card strong {
	display: block;
	margin-bottom: 14px;
	font-size: 1.1rem;
}

.mockup-card ul {
	display: grid;
	gap: 10px;
}

.mockup-card li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.84);
}

.mockup-card li span {
	width: 18px;
	height: 18px;
	color: var(--gold);
}

.floating-note {
	position: absolute;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 14px;
	max-width: 240px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--ink);
	box-shadow: var(--shadow-sm);
}

.floating-note p {
	margin: 4px 0 0;
	font-size: 0.92rem;
	color: var(--muted);
}

.floating-note .icon-wrap {
	width: 42px;
	height: 42px;
	padding: 10px;
	border-radius: 14px;
	background: rgba(247, 181, 0, 0.14);
	color: var(--gold);
}

.floating-note--top {
	top: 48px;
	left: 10px;
}

.floating-note--bottom {
	right: -10px;
	bottom: 82px;
	display: block;
}

.hero-photo-card {
	position: absolute;
	left: 0;
	bottom: 36px;
	width: min(300px, 44vw);
	overflow: hidden;
	border-radius: 30px;
	box-shadow: var(--shadow-lg);
}

.hero-photo-card::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 54%;
	background: linear-gradient(180deg, transparent, rgba(9, 11, 16, 0.88));
}

.hero-photo-card img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
}

.hero-photo-card figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: grid;
	gap: 6px;
	padding: 22px;
	color: var(--white);
}

.hero-photo-card figcaption strong {
	font-size: 1.08rem;
}

.hero-photo-card figcaption span {
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.94rem;
	line-height: 1.6;
}

.metrics-strip {
	position: relative;
	z-index: 2;
	margin-top: -54px;
}

.metrics-strip__grid,
.services-grid,
.process-grid,
.blog-grid {
	display: grid;
	gap: 20px;
}

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

.metric-card {
	padding: 28px 24px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.metric-card strong {
	display: block;
	margin-bottom: 6px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 2.3rem;
	line-height: 1;
}

.metric-card span {
	color: var(--muted);
	font-weight: 700;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 42px;
}

.section-heading p {
	max-width: 62ch;
	font-size: 1.02rem;
}

.section-heading--split {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

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

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0 28px 28px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: auto -10% -45% auto;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: rgba(247, 181, 0, 0.09);
	filter: blur(12px);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.service-card:nth-child(2n) {
	background: linear-gradient(180deg, #fffdf7, #ffffff);
}

.service-card__media {
	position: relative;
	margin: 0 -28px 24px;
	overflow: hidden;
	aspect-ratio: 1.5;
	background: #ece5d4;
}

.service-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(15, 16, 22, 0.16));
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.service-card:hover .service-card__media img {
	transform: scale(1.04);
}

.service-card__icon {
	display: inline-flex;
	width: 60px;
	height: 60px;
	padding: 15px;
	margin-bottom: 18px;
	border-radius: 18px;
	background: rgba(247, 181, 0, 0.14);
	color: var(--gold);
}

.service-card p {
	margin-bottom: 18px;
	font-size: 0.98rem;
	line-height: 1.72;
}

.service-card ul {
	display: grid;
	gap: 10px;
	margin-top: auto;
}

.service-card li {
	display: flex;
	align-items: start;
	gap: 10px;
	font-size: 0.94rem;
	font-weight: 600;
}

.fleet-section {
	background: linear-gradient(180deg, #fffdf9, #f5efe2);
}

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

.fleet-card {
	overflow: hidden;
	border-radius: 30px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.fleet-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
}

.fleet-card__image {
	aspect-ratio: 1.3;
	overflow: hidden;
}

.fleet-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

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

.fleet-card__body {
	padding: 22px 22px 26px;
}

.fleet-card__body h3 {
	margin-bottom: 10px;
}

.fleet-card__body p {
	font-size: 0.98rem;
	line-height: 1.72;
}

.service-card li .icon-wrap {
	width: 16px;
	height: 16px;
	margin-top: 4px;
	color: var(--gold);
}

.experience-section {
	background: linear-gradient(180deg, #fffdf8, #f6efdf);
}

.experience-grid,
.coverage-grid,
.faq-grid,
.article-layout,
.footer-grid {
	display: grid;
	gap: 30px;
}

.experience-grid {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
	align-items: center;
}

.experience-checklist {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.experience-checklist > div {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	padding: 18px 20px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.84);
	box-shadow: var(--shadow-sm);
}

.experience-checklist .icon-wrap {
	width: 58px;
	height: 58px;
	padding: 16px;
	border-radius: 18px;
	background: var(--ink);
	color: var(--gold);
}

.experience-checklist strong,
.coverage-highlights strong,
.mini-stat strong {
	display: block;
	margin-bottom: 6px;
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.05rem;
}

.experience-panel {
	display: grid;
	gap: 22px;
}

.experience-panel__visual {
	position: relative;
	min-height: 420px;
	padding: 30px;
	border-radius: var(--radius-xl);
	background:
		linear-gradient(135deg, rgba(17, 17, 20, 0.94), rgba(24, 28, 36, 0.92)),
		url("https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=1200&q=80") center / cover;
	box-shadow: var(--shadow-xl);
	overflow: hidden;
}

.experience-glow {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(247, 181, 0, 0.18);
	filter: blur(30px);
}

.experience-mini-card {
	position: relative;
	z-index: 1;
	max-width: 250px;
	margin-top: auto;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(18px);
	color: var(--white);
}

.experience-mini-card ul {
	display: grid;
	gap: 12px;
}

.experience-mini-card li {
	padding-left: 18px;
	position: relative;
}

.experience-mini-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
}

.experience-panel__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mini-stat {
	padding: 22px;
	border-radius: 24px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.coverage-section {
	background: linear-gradient(140deg, #101114, #222733);
	color: var(--white);
}

.coverage-section p {
	color: rgba(255, 255, 255, 0.78);
}

.coverage-grid {
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	align-items: start;
}

.coverage-highlights {
	display: grid;
	gap: 14px;
	margin-top: 24px;
}

.coverage-highlights > div {
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.04);
}

.coverage-highlights span {
	display: block;
	color: rgba(255, 255, 255, 0.7);
}

.district-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: start;
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-xl);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.district-cloud span {
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.95rem;
	font-weight: 700;
}

.process-section {
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.55));
}

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

.process-card {
	position: relative;
	padding: 28px 28px 30px;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.process-card span:first-child {
	display: inline-grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: rgba(247, 181, 0, 0.14);
	color: var(--gold);
	font-family: "Space Grotesk", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
}

.blog-section .button--ghost {
	border-color: var(--line);
	background: transparent;
	color: var(--ink);
}

.fleet-section .button--ghost,
.content-card .button--ghost {
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.82);
	color: var(--ink);
}

.fleet-section .button--ghost:hover,
.content-card .button--ghost:hover {
	color: var(--ink);
	border-color: rgba(16, 17, 20, 0.18);
	background: rgba(255, 255, 255, 0.96);
}

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

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

.post-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.post-card__image {
	display: block;
	aspect-ratio: 1.35;
	overflow: hidden;
	background: #efe8d6;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}

.post-card:hover .post-card__image img {
	transform: scale(1.04);
}

.post-card__body {
	padding: 22px 22px 26px;
}

.post-card__tag {
	display: inline-flex;
	padding: 7px 12px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: rgba(247, 181, 0, 0.14);
	color: var(--gold);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.post-card__body h2,
.post-card__body h3 {
	font-size: 1.42rem;
	line-height: 1.18;
}

.post-card__body p {
	font-size: 0.98rem;
	line-height: 1.72;
}

.faq-grid {
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
	align-items: start;
}

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

.faq-item {
	border: 1px solid var(--line);
	border-radius: 24px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	padding: 20px 22px;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 1.03rem;
	font-weight: 800;
	text-align: left;
}

.faq-item__icon {
	width: 20px;
	height: 20px;
	color: var(--gold);
	transition: transform var(--transition);
}

.faq-item__answer {
	padding: 0 22px 20px;
}

.faq-item.is-open .faq-item__icon,
.faq-item__question[aria-expanded="true"] .faq-item__icon {
	transform: rotate(90deg);
}

.cta-band {
	padding: 38px 0;
	background: linear-gradient(135deg, var(--gold), var(--gold-strong));
	color: var(--ink);
}

.cta-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
}

.cta-band__copy p {
	max-width: 680px;
	color: rgba(16, 17, 20, 0.72);
}

.cta-band__actions {
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.site-footer {
	background: linear-gradient(180deg, #111318, #1b2029);
	color: var(--white);
}

.footer-grid {
	grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
	padding: 72px 0 32px;
}

.footer-card {
	padding: 0 10px 0 0;
}

.footer-card h3 {
	margin-bottom: 18px;
	font-size: 1.2rem;
}

.footer-card p,
.footer-card li,
.footer-card a {
	color: rgba(255, 255, 255, 0.72);
}

.footer-card a:hover {
	color: var(--gold-soft);
}

.footer-links,
.footer-contact {
	display: grid;
	gap: 10px;
}

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

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}

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

.floating-whatsapp {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 35;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	padding: 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #25d366, #10b94f);
	color: var(--white);
	box-shadow: 0 18px 40px rgba(17, 17, 20, 0.28);
}

.floating-whatsapp:hover {
	color: var(--white);
	transform: translateY(-3px);
}

.inner-hero {
	padding: 150px 0 68px;
	background: linear-gradient(135deg, #12151c, #232835);
	color: var(--white);
}

.inner-hero p,
.post-meta,
.archive-description {
	color: rgba(255, 255, 255, 0.74);
}

.content-card {
	padding: 34px;
	border-radius: var(--radius-xl);
	background: var(--white);
	box-shadow: var(--shadow-sm);
}

.content-card > *:last-child {
	margin-bottom: 0;
}

.content-card--centered {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.content-card--article {
	padding: 0;
	overflow: hidden;
}

.content-card--article > :not(.article-cover) {
	padding-inline: 34px;
}

.content-card--article > *:last-child {
	padding-bottom: 34px;
}

.content-card--article h2,
.content-card--article h3,
.content-card--article p,
.content-card--article ul,
.content-card--article ol,
.content-card--article blockquote {
	margin-inline: 0;
}

.content-card--article ul,
.content-card--article ol {
	padding-left: 20px;
	list-style: initial;
}

.article-layout {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
	align-items: start;
}

.article-cover {
	aspect-ratio: 1.7;
}

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

.sidebar-card {
	position: sticky;
	top: 120px;
	padding: 28px;
	border-radius: 28px;
	background: linear-gradient(180deg, #fffdf7, #ffffff);
	box-shadow: var(--shadow-sm);
}

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

.pagination-wrap .nav-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--white);
	box-shadow: var(--shadow-sm);
	font-weight: 700;
}

.pagination-wrap .current {
	background: var(--gold);
	color: var(--ink);
}

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

	.hero-grid,
	.coverage-grid,
	.faq-grid,
	.cta-band__inner,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.experience-grid,
	.article-layout {
		grid-template-columns: 1fr;
	}

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

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

	.experience-panel__stats {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 960px) {
	.topbar__message {
		display: none;
	}

	.nav-shell {
		padding-top: 12px;
	}

	.nav-shell__inner {
		position: relative;
		border-radius: 28px;
	}

	.menu-toggle {
		display: inline-block;
		order: 3;
	}

	.desktop-cta {
		display: none;
	}

	.primary-navigation {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		left: 0;
		padding: 20px;
		border-radius: 28px;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
	}

	body.nav-open .primary-navigation {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.primary-navigation .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

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

	.site-main > section:first-child.hero-section {
		margin-top: -136px;
		padding-top: 210px;
	}

	.hero-grid {
		padding-bottom: 86px;
	}

	.hero-visual {
		min-height: auto;
		padding-top: 12px;
		padding-bottom: 180px;
	}

	.phone-mockup {
		transform: none;
	}

	.hero-photo-card {
		left: 12px;
		bottom: 0;
		width: min(280px, 52vw);
	}

	.floating-note--top {
		left: 0;
	}

	.floating-note--bottom {
		right: 0;
		bottom: 20px;
	}

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

	.footer-bottom {
		flex-direction: column;
		align-items: start;
	}
}

@media (max-width: 720px) {
	.section-space {
		padding: 84px 0;
	}

	.topbar__links {
		width: 100%;
		justify-content: space-between;
		font-size: 0.86rem;
	}

	.nav-shell__inner {
		padding: 12px 16px;
	}

	.brand-copy small {
		display: none;
	}

	.hero-actions,
	.cta-band__actions {
		align-items: stretch;
	}

	.hero-actions .button,
	.cta-band__actions .button {
		width: 100%;
	}

	.quote-form,
	.content-card {
		padding: 24px;
	}

	.quote-form__grid,
	.metrics-strip__grid,
	.services-grid,
	.process-grid,
	.blog-grid,
	.experience-panel__stats,
	.fleet-grid {
		grid-template-columns: 1fr;
	}

	.metric-card {
		text-align: left;
	}

	.experience-checklist > div {
		grid-template-columns: 1fr;
	}

	.district-cloud {
		padding: 24px;
	}

	.content-card--article > :not(.article-cover) {
		padding-inline: 24px;
	}

	.sidebar-card {
		position: static;
	}

	.floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 58px;
		height: 58px;
	}

	.hero-photo-card {
		position: relative;
		left: auto;
		bottom: auto;
		order: 2;
		width: 100%;
		max-width: 420px;
		margin-top: 18px;
	}

	.hero-photo-card img {
		min-height: 300px;
	}
}
