/* ==========================================================================
   HighwayCore — main stylesheet
   1. Tokens & reset        8. Pillars (horizontal)   15. FAQ
   2. Typography & layout   9. Services grid          16. Contact / form
   3. Buttons & UI bits    10. Why choose us          17. Footer
   4. Header & navigation  11. Process timeline       18. Inner pages & blog
   5. Hero                 12. Stats                  19. Animation states
   6. Marquee              13. Equipment/industries   20. Responsive
   7. About                14. Testimonials / CTA
   ========================================================================== */

/* 1. Tokens & reset ------------------------------------------------------- */
:root {
	--navy-950: #050b17;
	--navy-900: #0a1628;
	--navy-800: #0f213d;
	--navy-700: #17305a;
	--accent: #ff6b1a;
	--accent-600: #ea580c;
	--accent-100: #fff1e7;
	--ink: #0b1220;
	--text: #475569;
	--muted: #6b7789;
	--line: #e3e8ef;
	--soft: #f4f6fa;
	--white: #fff;
	--green: #22c55e;
	--amber: #f59e0b;
	--blue: #3b82f6;

	--font-head: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 28px;
	--shadow-sm: 0 2px 10px rgba(10, 22, 40, .06);
	--shadow: 0 24px 50px -24px rgba(10, 22, 40, .28);
	--shadow-lg: 0 40px 90px -30px rgba(5, 11, 23, .55);

	--container: 1280px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(80px, 10vw, 140px);
	--header-h: 84px;
	--ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	font-weight: 700;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--accent); color: #fff; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
	position: fixed; top: 12px; left: 12px; z-index: 2000;
	padding: 12px 20px; background: var(--accent); color: #fff; border-radius: 10px; font-weight: 600;
	transform: translateY(-150%); transition: transform .3s var(--ease);
}
.skip-link:focus { transform: none; }
.site-main:focus { outline: none; }

.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }
.text-accent { color: var(--accent); }
.text-right { text-align: right; }

/* 2. Typography & layout ------------------------------------------------- */
.container {
	width: 100%;
	max-width: calc(var(--container) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
/* Full-width header & footer: edge to edge with a comfortable side gutter. */
.container--fluid { max-width: none; padding-inline: clamp(16px, 3.2vw, 56px); }
.section { position: relative; padding-block: var(--section); overflow-x: clip; }
.site-main { overflow-x: clip; }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .72); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-intro { margin-inline: auto; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-size: .8125rem; font-weight: 600;
	letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
	margin-bottom: 18px;
}
.eyebrow::before {
	content: ""; width: 28px; height: 2px; border-radius: 2px;
	background: linear-gradient(90deg, var(--accent), transparent);
}
.section-head--center .eyebrow::after {
	content: ""; width: 28px; height: 2px; border-radius: 2px;
	background: linear-gradient(270deg, var(--accent), transparent);
}
.section-title { font-size: clamp(2rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
.section-intro { font-size: 1.0625rem; color: var(--muted); max-width: 60ch; }
.section--dark .section-intro { color: rgba(255, 255, 255, .62); }
.lead { font-size: 1.125rem; color: var(--text); }

/* 3. Buttons & UI bits --------------------------------------------------- */
.btn {
	--btn-bg: var(--accent); --btn-fg: #fff; --btn-icon-bg: rgba(255, 255, 255, .2); --btn-icon-fg: #fff;
	position: relative; isolation: isolate; overflow: hidden;
	display: inline-flex; align-items: center; gap: 14px;
	padding: 7px 7px 7px 24px; min-height: 52px;
	border-radius: 999px; border: 1px solid transparent;
	background: var(--btn-bg); color: var(--btn-fg);
	font-family: var(--font-head); font-weight: 600; font-size: .9375rem; line-height: 1;
	white-space: nowrap;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
	transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(255, 107, 26, .55); }
.btn:hover::before { transform: translateX(120%); }
.btn__icon {
	display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
	background: var(--btn-icon-bg); color: var(--btn-icon-fg);
	transition: transform .5s var(--ease), background .3s, color .3s;
}
.btn__icon .icon { width: 18px; height: 18px; }
.btn:hover .btn__icon { transform: rotate(45deg); background: #fff; color: var(--accent); }
.btn:hover .icon-arrow-right, .btn:hover .icon-phone { transform: rotate(-45deg); }
.btn .icon { transition: transform .5s var(--ease); }
.btn--lg { min-height: 58px; font-size: 1rem; }
.btn--dark { --btn-bg: var(--navy-900); --btn-icon-bg: var(--accent); }
.btn--dark:hover { box-shadow: 0 16px 30px -12px rgba(10, 22, 40, .5); }
.btn--glass {
	--btn-bg: rgba(255, 255, 255, .08); --btn-icon-bg: rgba(255, 255, 255, .14);
	border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn--glass:hover { --btn-bg: rgba(255, 255, 255, .16); box-shadow: 0 16px 30px -12px rgba(0, 0, 0, .5); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-icon-bg: var(--navy-900); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); box-shadow: var(--shadow); }

.link-arrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-head); font-weight: 600; font-size: .9375rem; color: var(--accent);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.link-arrow:hover .icon { transform: translateX(5px); }

.pulse {
	position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
	background: var(--green); flex-shrink: 0;
}
.pulse::after {
	content: ""; position: absolute; inset: -4px; border-radius: 50%;
	border: 2px solid var(--green); animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.8); opacity: 0; } }

.chip {
	display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
	font-size: .75rem; font-weight: 600; letter-spacing: .02em;
}
.chip--green { background: rgba(34, 197, 94, .15); color: #4ade80; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--green { background: var(--green); } .dot--amber { background: var(--amber); } .dot--blue { background: var(--blue); }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1002; pointer-events: none; }
.scroll-progress span {
	display: block; height: 100%; transform-origin: 0 50%; transform: scaleX(var(--progress, 0));
	background: linear-gradient(90deg, var(--accent), #ffb37a);
}

.admin-hint { text-align: center; }
.admin-hint a { color: var(--accent); font-weight: 600; }

/* 4. Header & navigation ------------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto; z-index: 1000; color: #fff;
	transition: transform .5s var(--ease);
}
.admin-bar .site-header { top: 32px; }
.topbar {
	font-size: .8125rem; color: rgba(255, 255, 255, .72);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	transition: margin .5s var(--ease), opacity .4s;
}
.topbar__inner { display: flex; align-items: center; gap: 24px; min-height: 42px; }
.topbar p { margin: 0; }
.topbar__live { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; }
.topbar__note { color: rgba(255, 255, 255, .55); }
.topbar__contact { margin-left: auto; display: flex; gap: 24px; }
.topbar__contact a { display: inline-flex; align-items: center; gap: 8px; }
.topbar__contact a:hover { color: var(--accent); }
.topbar__contact .icon { width: 15px; height: 15px; color: var(--accent); }

.navbar { transition: background .4s var(--ease), box-shadow .4s, backdrop-filter .4s; }
.navbar__inner { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.site-header.is-scrolled .topbar { margin-top: -43px; opacity: 0; }
.site-header.is-scrolled .navbar,
.header-solid .navbar {
	background: rgba(8, 17, 33, .86);
	backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, .45);
}
.header-solid .site-main { padding-top: calc(var(--header-h) + 42px); }

.logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; flex-shrink: 0; }
.logo__mark { color: var(--accent); transition: transform .6s var(--ease); }
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }
.logo__text { font-family: var(--font-head); font-weight: 700; font-size: 1.375rem; letter-spacing: -.02em; line-height: 1; }
.logo__text b { color: var(--accent); font-weight: 800; }
.logo__text small {
	display: block; margin-top: 5px; font-family: var(--font-body); font-size: .625rem; font-weight: 500;
	letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .55);
}
.custom-logo-link img { max-height: 52px; width: auto; }

.primary-nav { margin-inline: auto; }
.primary-nav .menu {
	display: flex; align-items: center; gap: 2px; padding: 6px;
	border-radius: 999px; background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.primary-nav .menu > li { position: relative; }
.primary-nav .menu > li > a {
	display: flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px;
	font-size: .9063rem; font-weight: 500; color: rgba(255, 255, 255, .85);
	transition: background .3s, color .3s;
}
.primary-nav .menu > li > a:hover,
.primary-nav .menu > .current-menu-item > a:not([href*="#"]) { background: rgba(255, 255, 255, .1); color: #fff; }
.primary-nav .menu-item-has-children > a::after {
	content: ""; width: 7px; height: 7px; margin-top: -3px;
	border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg); transition: transform .3s;
}
.primary-nav .sub-menu {
	position: absolute; top: calc(100% + 14px); left: 50%; min-width: 250px; padding: 10px;
	background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translate(-50%, 10px);
	transition: opacity .3s var(--ease), transform .4s var(--ease), visibility .3s;
}
.primary-nav .sub-menu::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.primary-nav .menu-item-has-children:hover > a::after { transform: rotate(-135deg) translate(-2px, -2px); }
.primary-nav .sub-menu a {
	display: block; padding: 11px 16px; border-radius: 12px; font-size: .9375rem; font-weight: 500; color: var(--ink);
	transition: background .25s, color .25s, padding .3s var(--ease);
}
.primary-nav .sub-menu a:hover { background: var(--accent-100); color: var(--accent-600); padding-left: 22px; }
.primary-nav__mobile-extra { display: none; }

.navbar__actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.navbar__call { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: .9375rem; white-space: nowrap; }
.navbar__call small { display: block; font-family: var(--font-body); font-size: .6875rem; font-weight: 500; color: rgba(255, 255, 255, .55); letter-spacing: .06em; text-transform: uppercase; }
.navbar__call-icon {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .18); color: var(--accent);
	transition: background .3s, color .3s;
}
.navbar__call:hover .navbar__call-icon { background: var(--accent); color: #fff; }

.nav-toggle {
	display: none; width: 48px; height: 48px; border-radius: 50%;
	background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15);
	place-items: center; color: #fff;
}
.nav-toggle__bars { position: relative; display: block; width: 20px; height: 14px; }
.nav-toggle__bars i {
	position: absolute; left: 0; height: 2px; width: 100%; border-radius: 2px; background: currentColor;
	transition: transform .4s var(--ease), opacity .3s, width .3s;
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 6px; width: 70%; }
.nav-toggle__bars i:nth-child(3) { top: 12px; }
.nav-open .nav-toggle__bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle__bars i:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle__bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 5. Hero ---------------------------------------------------------------- */
.hero {
	position: relative; min-height: max(100svh, 760px); display: flex; align-items: center;
	color: rgba(255, 255, 255, .78); background: var(--navy-950); overflow: hidden; isolation: isolate;
}
/* Extra height above and below so the parallax drift can never expose a gap at the top. */
.hero__media { position: absolute; inset: -12% 0; z-index: -3; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; transform-origin: center; }
.hero__overlay {
	position: absolute; inset: 0; z-index: -2;
	background:
		radial-gradient(ellipse at 80% 30%, rgba(255, 107, 26, .18), transparent 55%),
		linear-gradient(90deg, rgba(5, 11, 23, .95) 0%, rgba(5, 11, 23, .78) 42%, rgba(5, 11, 23, .35) 100%),
		linear-gradient(0deg, var(--navy-950) 0%, transparent 35%);
}
.hero__road { position: absolute; inset: auto 0 18% 0; height: 40%; z-index: -1; pointer-events: none; }
.hero__road span {
	position: absolute; left: 0; height: 2px; width: 30%;
	background: linear-gradient(90deg, transparent, rgba(255, 140, 60, .9), transparent);
	filter: blur(.5px); opacity: .6;
	animation: streak 5s linear infinite;
}
.hero__road span:nth-child(1) { top: 20%; animation-duration: 4.2s; }
.hero__road span:nth-child(2) { top: 55%; animation-duration: 6s; animation-delay: -2s; width: 20%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent); }
.hero__road span:nth-child(3) { top: 85%; animation-duration: 3.4s; animation-delay: -1s; }
@keyframes streak { from { transform: translateX(-100%); } to { transform: translateX(420%); } }

.hero__inner {
	display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 80px); align-items: center;
	padding-top: calc(var(--header-h) + 42px + clamp(32px, 6vw, 72px)); padding-bottom: clamp(80px, 9vw, 120px);
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 14px; margin-bottom: 26px;
	border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
	font-size: .8125rem; font-weight: 500; color: #fff; letter-spacing: .02em;
	backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__title {
	font-size: clamp(2.5rem, 5.2vw, 4.9rem); line-height: 1.03; letter-spacing: -.035em; color: #fff;
	margin-bottom: 26px; font-weight: 800;
}
.hero__title .text-accent { display: inline; }
.hero__text { font-size: clamp(1rem, 1.3vw, 1.1875rem); max-width: 56ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: .9375rem; color: #fff; }
.hero__points li { display: flex; align-items: center; gap: 8px; }
.hero__points .icon { color: var(--accent); width: 20px; height: 20px; }

.hero__content { position: relative; z-index: 1; will-change: transform, opacity, filter; }
.hero__visual { position: relative; z-index: 2; will-change: transform; }
.dispatch-card {
	position: relative; padding: 26px; border-radius: 26px;
	/* Opaque "glass" (no backdrop-filter: re-blurring the moving hero image every frame is costly). */
	background: linear-gradient(160deg, rgba(23, 48, 90, .92), rgba(10, 22, 40, .95));
	border: 1px solid rgba(255, 255, 255, .12);
	box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .1);
}
.dispatch-card small { display: block; font-size: .6875rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.dispatch-card strong { font-family: var(--font-head); color: #fff; font-size: 1.0625rem; font-weight: 600; }
.dispatch-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.dispatch-card__live { display: inline-flex; align-items: center; gap: 10px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.dispatch-card__route { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin-bottom: 26px; }
.route-line { position: relative; height: 2px; background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .35) 0 8px, transparent 8px 14px); }
.route-line::before, .route-line::after {
	content: ""; position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%; transform: translateY(-50%);
	border: 2px solid var(--accent); background: var(--navy-900);
}
.route-line::before { left: -4px; } .route-line::after { right: -4px; background: var(--accent); }
.route-line__truck {
	position: absolute; top: 50%; left: 0; display: grid; place-items: center; width: 34px; height: 34px;
	border-radius: 50%; background: var(--accent); color: #fff; box-shadow: 0 0 0 6px rgba(255, 107, 26, .2);
	transform: translate(-50%, -50%); animation: drive 6s var(--ease) infinite;
}
.route-line__truck .icon { width: 17px; height: 17px; }
@keyframes drive { 0% { left: 6%; } 50% { left: 62%; } 100% { left: 94%; } }
.dispatch-card__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.dispatch-card__metrics > div { padding: 14px; border-radius: 14px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .07); }
.dispatch-card__metrics strong { font-size: 1.25rem; }
.dispatch-card__progress { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .08); overflow: hidden; margin-bottom: 20px; }
.dispatch-card__progress span {
	display: block; height: 100%; width: 68%; border-radius: inherit;
	background: linear-gradient(90deg, var(--accent), #ffb37a); animation: grow 3s var(--ease) both .8s;
}
@keyframes grow { from { width: 0; } }
.dispatch-card__loads li {
	display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: .875rem; color: rgba(255, 255, 255, .8);
	border-top: 1px solid rgba(255, 255, 255, .07);
}
.dispatch-card__loads em { margin-left: auto; font-style: normal; font-size: .75rem; color: rgba(255, 255, 255, .5); }

.float-chip {
	position: absolute; display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px;
	border-radius: 18px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg);
	/* Animates "translate", not "transform", so it can drift while GSAP handles transforms. */
	animation: float 7s ease-in-out infinite;
}
.float-chip strong { display: block; font-family: var(--font-head); font-size: 1.125rem; line-height: 1.1; }
.float-chip small { display: block; font-size: .75rem; color: var(--muted); }
.float-chip__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; }
.float-chip__icon--light { background: var(--accent-100); color: var(--accent); }
.float-chip--1 { top: -34px; right: -18px; }
.float-chip--2 { bottom: -30px; left: -40px; animation-delay: -3s; }
@keyframes float { 0%, 100% { translate: -6px 0; } 50% { translate: 6px -14px; } }

/* The dispatch card drifts slowly left and right on its own. */
.dispatch-card { animation: cardDrift 13s ease-in-out infinite; }
@keyframes cardDrift { 0%, 100% { translate: -9px 0; } 50% { translate: 9px 0; } }

.hero__scroll {
	position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
	width: 28px; height: 46px; border-radius: 20px; border: 2px solid rgba(255, 255, 255, .35);
}
.hero__scroll span {
	position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px;
	background: var(--accent); animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* 6. Marquee ------------------------------------------------------------- */
.marquee { padding: clamp(28px, 4vw, 44px) 0; overflow: hidden; background: var(--white); border-bottom: 1px solid var(--line); }
.marquee__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.marquee__group { display: flex; flex-shrink: 0; }
.marquee__group li {
	display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); padding-right: clamp(20px, 3vw, 44px);
	font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 5.5vw, 4.75rem); line-height: 1; letter-spacing: -.03em;
	white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px rgba(10, 22, 40, .28);
}
.marquee__group li:nth-child(odd) { color: var(--ink); -webkit-text-stroke: 0; }
.marquee__sep { display: grid; place-items: center; width: .8em; height: .8em; border-radius: 50%; background: var(--accent); color: #fff; }
.marquee__sep .icon { width: 45%; height: 45%; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 7. About --------------------------------------------------------------- */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 110px); align-items: center; }
.about__media { position: relative; padding: 0 12% 12% 0; }
.about__img { overflow: hidden; border-radius: var(--radius-lg); }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__img:hover img { transform: scale(1.06); }
.about__img--main { aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.about__img--small {
	position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 1;
	border: 8px solid #fff; box-shadow: var(--shadow-lg);
}
.about__badge {
	position: absolute; top: 28px; right: 4%; z-index: 2;
	display: grid; place-content: center; text-align: center; width: 148px; height: 148px; border-radius: 50%;
	background: var(--accent); color: #fff; box-shadow: 0 24px 50px -16px rgba(255, 107, 26, .7);
}
.about__badge strong { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; }
.about__badge span { font-size: .75rem; line-height: 1.3; padding: 6px 18px 0; font-weight: 500; }
.about__ring {
	position: absolute; left: -40px; bottom: 60px; z-index: -1; width: 180px; height: 180px; border-radius: 50%;
	border: 2px dashed rgba(255, 107, 26, .4); animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.about__content .section-head { margin-bottom: 24px; }
.checklist { display: grid; gap: 14px; margin: 30px 0 36px; }
.checklist li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink); font-weight: 500; }
.checklist__icon {
	display: grid; place-items: center; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%; flex-shrink: 0;
	background: var(--accent-100); color: var(--accent);
}
.checklist__icon .icon { width: 15px; height: 15px; stroke-width: 2.5; }
.about__footer { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.about__call { display: flex; align-items: center; gap: 14px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.125rem; }
.about__call small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .8125rem; color: var(--muted); }
.about__call-icon {
	display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
	border: 1px solid var(--line); color: var(--accent); transition: background .3s, color .3s, border-color .3s;
}
.about__call:hover .about__call-icon { background: var(--accent); border-color: var(--accent); color: #fff; }

/* 8. Pillars (horizontal scroll) ---------------------------------------- */
.pillars { position: relative; background: var(--navy-950); color: rgba(255, 255, 255, .7); overflow: clip; }
.pillars .section-title { color: #fff; }
.pillars__pin { padding-block: clamp(80px, 9vw, 120px); }
.pillars__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.pillars__head .section-head { margin-bottom: 44px; }
.pillars__progress { display: flex; align-items: center; gap: 18px; margin-bottom: 56px; flex-shrink: 0; }
.pillars__count { font-family: var(--font-head); font-size: .9375rem; color: rgba(255, 255, 255, .5); }
.pillars__count b { color: #fff; font-size: 1.5rem; }
.pillars__bar { position: relative; width: 160px; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.pillars__bar i { position: absolute; inset: 0; transform-origin: 0 50%; transform: scaleX(.25); background: var(--accent); }
.pillars__viewport {
	overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
	padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.pillars__viewport::-webkit-scrollbar { display: none; }
/* Desktop horizontal scroll: native sticky panel (never leaves its own section). */
.pillars.is-hscroll { overflow: visible; }
.pillars.is-hscroll .pillars__pin {
	position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--navy-950);
	display: flex; flex-direction: column; justify-content: center;
	padding-block: calc(var(--header-h) + 8px) 32px;
}
.pillars.is-hscroll .pillars__viewport { overflow: visible; scroll-snap-type: none; }
.pillars.is-hscroll .pillars__track { will-change: transform; }
.pillars.is-hscroll .section-head { margin-bottom: 28px; }
.pillars.is-hscroll .section-title { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-bottom: 0; }
.pillars.is-hscroll .pillars__progress { margin-bottom: 36px; }
.pillars.is-hscroll .pillar { height: clamp(420px, calc(100vh - 330px), 560px); min-height: 0; }
.pillars.is-hscroll .pillar__body { padding-block: clamp(24px, 3.5vh, 44px); }
.pillars__track { display: flex; gap: clamp(20px, 2.5vw, 36px); width: max-content; }
.pillar {
	display: grid; grid-template-columns: 1.05fr 1fr; width: min(1040px, 80vw); min-height: min(64vh, 560px);
	border-radius: var(--radius-lg); overflow: hidden; scroll-snap-align: start;
	background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
	border: 1px solid rgba(255, 255, 255, .08);
}
.pillar__media { position: relative; overflow: hidden; }
.pillar__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.pillar__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, rgba(10, 22, 40, .6)); }
.pillar:hover .pillar__media img { transform: scale(1.07); }
.pillar__body { display: flex; flex-direction: column; padding: clamp(28px, 4vw, 52px); }
.pillar__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; padding-bottom: 32px; }
.pillar__icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--accent); color: #fff; }
.pillar__icon .icon { width: 30px; height: 30px; }
.pillar__num { font-family: var(--font-head); font-weight: 800; font-size: 4rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255, 255, 255, .18); }
.pillar__title { font-size: clamp(1.6rem, 2.6vw, 2.25rem); color: #fff; }
.pillar ul { display: grid; gap: 10px; margin: 22px 0 30px; }
.pillar li { display: flex; align-items: center; gap: 10px; color: #fff; font-size: .9375rem; }
.pillar li .icon { color: var(--accent); width: 18px; height: 18px; }

/* 9. Services grid ------------------------------------------------------- */
.services { background: var(--soft); overflow: hidden; }
.services__bg {
	position: absolute; inset: 0; pointer-events: none;
	background-image: linear-gradient(rgba(10, 22, 40, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 22, 40, .04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 20%, transparent 70%);
}
.services__head { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 60px); }
.services__head .section-head { margin-bottom: 0; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px; border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.filter-tabs button {
	padding: 10px 18px; border-radius: 999px; font-size: .875rem; font-weight: 600; color: var(--muted);
	transition: background .3s, color .3s;
}
.filter-tabs button:hover { color: var(--ink); }
.filter-tabs button.is-active { background: var(--navy-900); color: #fff; }
.services__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

[data-spotlight] { --mx: 50%; --my: 0%; }
.service-card {
	position: relative; display: flex; flex-direction: column; padding: 34px; border-radius: 24px; overflow: hidden;
	background: #fff; border: 1px solid var(--line); isolation: isolate;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
}
.service-card::before {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s;
	background: radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 107, 26, .1), transparent 45%);
}
.service-card::after {
	content: ""; position: absolute; inset: 0 0 auto; height: 3px;
	background: linear-gradient(90deg, var(--accent), #ffb37a); transform: scaleX(0); transform-origin: 0 50%;
	transition: transform .6s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.service-card__icon {
	display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px;
	background: var(--navy-900); color: var(--accent);
	transition: transform .6s var(--ease), background .4s, color .4s;
}
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card:hover .service-card__icon { background: var(--accent); color: #fff; transform: rotate(-8deg) scale(1.06); }
.service-card__num { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #c3cbd8; }
.service-card__cat { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.service-card__title { font-size: 1.3125rem; margin-bottom: 12px; }
.service-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.service-card p { font-size: .9375rem; color: var(--muted); }
.service-card__list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.service-card__list li { padding: 6px 12px; border-radius: 999px; background: var(--soft); font-size: .78rem; font-weight: 500; color: var(--ink); }
.service-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: .9375rem; color: var(--ink); transition: color .3s, gap .3s; }
.service-card__more .icon { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.service-card:hover .service-card__more { color: var(--accent); gap: 12px; }
.service-card:hover .service-card__more .icon { transform: rotate(45deg); }
.service-card.is-hidden { display: none; }

/* 10. Why choose us ------------------------------------------------------ */
.why { overflow: clip; }
.why__glow {
	position: absolute; width: 700px; height: 700px; right: -200px; top: -200px; border-radius: 50%; pointer-events: none;
	background: radial-gradient(circle, rgba(255, 107, 26, .2), transparent 65%);
}
@keyframes drift { to { transform: translate(-260px, 320px) scale(1.2); } }
.why__grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.why__sticky { position: sticky; top: calc(var(--header-h) + 40px); }
.why__image { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 10; }
.why__image img { width: 100%; height: 100%; object-fit: cover; }
.why__image-tag {
	position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 16px; border-radius: 999px; font-size: .8125rem; font-weight: 600; color: #fff;
	background: rgba(5, 11, 23, .6); border: 1px solid rgba(255, 255, 255, .15);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.why__list { display: grid; gap: 18px; }
.why-card {
	position: relative; display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 30px; border-radius: 22px; overflow: hidden;
	background: rgba(255, 255, 255, .035); border: 1px solid rgba(255, 255, 255, .08);
	transition: background .4s, border-color .4s, transform .5s var(--ease);
}
.why-card::before {
	content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s; pointer-events: none;
	background: radial-gradient(380px circle at var(--mx) var(--my), rgba(255, 107, 26, .14), transparent 50%);
}
.why-card:hover { background: rgba(255, 255, 255, .06); border-color: rgba(255, 107, 26, .35); transform: translateX(8px); }
.why-card:hover::before { opacity: 1; }
.why-card__num { position: absolute; top: 22px; right: 26px; font-family: var(--font-head); font-weight: 700; color: rgba(255, 255, 255, .14); font-size: 1.5rem; }
.why-card__icon {
	display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px; color: #fff;
	background: linear-gradient(135deg, var(--accent), #ff9a52); box-shadow: 0 14px 30px -12px rgba(255, 107, 26, .7);
}
.why-card__icon .icon { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 8px; padding-right: 40px; }
.why-card p { font-size: .9688rem; }

/* 11. Process timeline --------------------------------------------------- */
.timeline { position: relative; max-width: 1080px; margin-inline: auto; }
.timeline__road {
	position: absolute; top: 0; bottom: 0; left: 50%; width: 8px; margin-left: -4px; border-radius: 8px;
	background: var(--soft); box-shadow: inset 0 0 0 1px var(--line);
}
.timeline__road::before {
	content: ""; position: absolute; inset: 0; left: 50%; width: 2px; margin-left: -1px;
	background: repeating-linear-gradient(180deg, #c9d2df 0 12px, transparent 12px 24px);
}
.timeline__fill {
	position: absolute; top: 0; left: 0; right: 0; height: 100%; border-radius: inherit; transform-origin: 50% 0;
	transform: scaleY(var(--fill, 1)); background: linear-gradient(180deg, var(--accent), #ffb37a);
}
.timeline__truck {
	position: absolute; left: 50%; top: var(--truck, 0%); z-index: 2; display: grid; place-items: center;
	width: 56px; height: 56px; margin: -28px 0 0 -28px; border-radius: 50%;
	background: var(--navy-900); color: var(--accent); box-shadow: 0 0 0 8px rgba(255, 107, 26, .15), var(--shadow);
}
.timeline__truck .icon { width: 26px; height: 26px; transform: rotate(90deg); }
.timeline__steps { display: grid; gap: 28px; counter-reset: none; }
.timeline__step { position: relative; width: 50%; padding-right: 72px; }
.timeline__step:nth-child(even) { margin-left: 50%; padding: 0 0 0 72px; }
.timeline__dot {
	position: absolute; top: 28px; right: -22px; z-index: 1; display: grid; place-items: center;
	width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2px solid var(--line);
	font-family: var(--font-head); font-weight: 700; font-size: .875rem; color: var(--ink);
	transition: background .4s, color .4s, border-color .4s, transform .4s var(--ease);
}
.timeline__step:nth-child(even) .timeline__dot { right: auto; left: -22px; }
.timeline__step.is-active .timeline__dot { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.1); }
.timeline__card {
	padding: 30px 32px; border-radius: 22px; background: #fff; border: 1px solid var(--line);
	transition: box-shadow .5s var(--ease), transform .5s var(--ease), border-color .4s;
}
.timeline__step:nth-child(odd) .timeline__card { text-align: right; }
.timeline__step.is-active .timeline__card, .timeline__card:hover { box-shadow: var(--shadow); border-color: transparent; }
.timeline__card:hover { transform: translateY(-4px); }
.timeline__label { display: inline-block; margin-bottom: 8px; font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.timeline__card h3 { font-size: 1.3125rem; margin-bottom: 8px; }
.timeline__card p { font-size: .9688rem; color: var(--muted); }
.process__cta {
	display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px 28px; margin-top: 64px;
	font-family: var(--font-head); font-weight: 600; font-size: 1.125rem; color: var(--ink);
}
.process__cta p { margin: 0; }

/* 12. Stats -------------------------------------------------------------- */
.stats { position: relative; padding-block: clamp(90px, 11vw, 150px); overflow: hidden; isolation: isolate; }
.stats__media { position: absolute; inset: -20% 0; z-index: -2; }
.stats__media img { width: 100%; height: 100%; object-fit: cover; }
.stats__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(5, 11, 23, .93), rgba(10, 22, 40, .82) 60%, rgba(255, 107, 26, .35)); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { position: relative; padding: 10px clamp(16px, 3vw, 40px); text-align: center; color: rgba(255, 255, 255, .7); }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: linear-gradient(transparent, rgba(255, 255, 255, .22), transparent); }
.stat__icon { display: inline-grid; place-items: center; width: 60px; height: 60px; margin-bottom: 18px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); color: var(--accent); }
.stat__icon .icon { width: 26px; height: 26px; }
.stat__value { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4.8vw, 4.2rem); line-height: 1; letter-spacing: -.03em; color: #fff; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.stat__label { font-size: .9375rem; letter-spacing: .04em; }

/* 13. Equipment & industries -------------------------------------------- */
.equipment__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.equip-card {
	position: relative; padding: 30px 26px; border-radius: 22px; border: 1px solid var(--line); background: #fff; overflow: hidden; isolation: isolate;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .45s, border-color .45s;
}
.equip-card::before {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .45s;
	background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255, 107, 26, .3), transparent 50%), var(--navy-900);
}
.equip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.equip-card:hover::before { opacity: 1; }
.equip-card__icon {
	display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 22px; border-radius: 18px;
	background: var(--accent-100); color: var(--accent); transition: background .45s, color .45s, transform .6s var(--ease);
}
.equip-card__icon .icon { width: 28px; height: 28px; }
.equip-card h3 { font-size: 1.1875rem; margin-bottom: 8px; transition: color .45s; }
.equip-card p { font-size: .9063rem; color: var(--muted); transition: color .45s; }
.equip-card__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.equip-card__specs li { padding: 5px 10px; border-radius: 8px; font-size: .75rem; font-weight: 600; background: var(--soft); color: var(--ink); transition: background .45s, color .45s; }
.equip-card:hover h3 { color: #fff; }
.equip-card:hover p { color: rgba(255, 255, 255, .7); }
.equip-card:hover .equip-card__icon { background: var(--accent); color: #fff; transform: translateY(-4px) rotate(-6deg); }
.equip-card:hover .equip-card__specs li { background: rgba(255, 255, 255, .1); color: #fff; }

.industries {
	margin-top: clamp(48px, 6vw, 80px); padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg); text-align: center;
	background: radial-gradient(ellipse at top, rgba(255, 107, 26, .18), transparent 60%), var(--navy-900);
}
.industries__title { color: #fff; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 28px; }
.industries__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.industries__list li {
	display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px;
	background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); color: #fff; font-weight: 500; font-size: .9375rem;
	transition: transform .4s var(--ease), background .3s, border-color .3s;
}
.industries__list li:hover { transform: translateY(-4px); background: rgba(255, 107, 26, .15); border-color: rgba(255, 107, 26, .5); }
.industries__list .icon { color: var(--accent); width: 20px; height: 20px; }

/* 14. Testimonials & CTA ------------------------------------------------- */
.testimonials { background: var(--soft); overflow: hidden; }
.testimonials__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.slider-nav { display: flex; gap: 10px; margin-bottom: clamp(40px, 5vw, 64px); }
.slider-btn {
	display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
	border: 1px solid var(--line); background: #fff; color: var(--ink);
	transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.slider-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.06); }
.slider-btn:disabled { opacity: .4; pointer-events: none; }
.slider__track {
	display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none;
	padding: 10px max(var(--gutter), calc((100vw - var(--container)) / 2)) 40px;
	scroll-padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2));
}
.slider__track::-webkit-scrollbar { display: none; }
.testi-card {
	flex: 0 0 clamp(290px, 34vw, 440px); scroll-snap-align: start; margin: 0; display: flex; flex-direction: column;
	padding: 36px; border-radius: 26px; background: #fff; border: 1px solid var(--line);
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.stars { display: flex; gap: 3px; color: var(--accent); }
.stars .icon { width: 18px; height: 18px; }
.testi-card__quote .icon { width: 44px; height: 44px; color: var(--accent-100); fill: var(--accent-100); }
.testi-card blockquote { margin: 0 0 22px; font-size: 1.0625rem; line-height: 1.7; color: var(--ink); }
.testi-card__metric { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(34, 197, 94, .1); color: #15803d; font-size: .8125rem; font-weight: 600; margin-bottom: 26px; }
.testi-card__metric .icon { width: 16px; height: 16px; }
.testi-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.testi-card figcaption strong { display: block; font-family: var(--font-head); color: var(--ink); }
.testi-card figcaption small { color: var(--muted); font-size: .8125rem; }
.avatar {
	display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
	background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: #fff; font-family: var(--font-head); font-weight: 700;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

.cta-band { padding-block: 0 var(--section); background: var(--soft); }
.testimonials + .cta-band { margin-top: -1px; }
.cta-band__box {
	position: relative; display: flex; align-items: center; min-height: 440px; border-radius: 32px; overflow: hidden; isolation: isolate;
	background: var(--navy-900);
}
.cta-band__media { position: absolute; inset: -15% 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 11, 23, .95) 20%, rgba(5, 11, 23, .55) 65%, rgba(255, 107, 26, .35)); }
.cta-band__content { max-width: 680px; padding: clamp(36px, 6vw, 72px); color: rgba(255, 255, 255, .75); }
.cta-band__content h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 3.1rem); margin-bottom: 18px; }
.cta-band__content p { font-size: 1.0625rem; margin-bottom: 32px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-band__truck {
	position: absolute; bottom: 26px; left: 0; color: rgba(255, 255, 255, .12); pointer-events: none;
	animation: cross 14s linear infinite;
}
.cta-band__truck .icon { width: 90px; height: 90px; stroke-width: 1; }
@keyframes cross { from { transform: translateX(-120px); } to { transform: translateX(1400px); } }

/* 15. FAQ ---------------------------------------------------------------- */
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-h) + 40px); }
.faq__help { display: flex; align-items: center; gap: 16px; padding: 20px; border-radius: 20px; background: var(--soft); border: 1px solid var(--line); max-width: 380px; }
.faq__help strong { display: block; font-family: var(--font-head); color: var(--ink); }
.faq__help a { color: var(--accent); font-weight: 600; }
.faq__help-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--accent); color: #fff; flex-shrink: 0; }
.accordion { display: grid; gap: 14px; }
.accordion__item { border-radius: 20px; background: #fff; border: 1px solid var(--line); transition: box-shadow .4s var(--ease), border-color .4s; }
.accordion__item[open] { box-shadow: var(--shadow); border-color: rgba(255, 107, 26, .3); }
.accordion__item summary {
	display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; cursor: pointer; list-style: none;
	font-family: var(--font-head); font-weight: 600; font-size: 1.0938rem; color: var(--ink); line-height: 1.4;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary:hover { color: var(--accent-600); }
.accordion__icon {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
	background: var(--soft); color: var(--ink); transition: transform .5s var(--ease), background .3s, color .3s;
}
.accordion__icon .icon { width: 18px; height: 18px; }
.accordion__item[open] .accordion__icon { transform: rotate(135deg); background: var(--accent); color: #fff; }
.accordion__body { color: var(--muted); overflow: hidden; }
.accordion__inner { padding: 0 26px 24px; }

/* 16. Contact / form ----------------------------------------------------- */
.contact { background: var(--navy-950); overflow: hidden; }
.contact__grid-bg {
	position: absolute; inset: 0; pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse at 20% 50%, #000 10%, transparent 65%);
	-webkit-mask-image: radial-gradient(ellipse at 20% 50%, #000 10%, transparent 65%);
}
.contact__grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.contact-list { display: grid; gap: 22px; margin-bottom: 36px; }
.contact-list li { display: flex; align-items: center; gap: 18px; color: #fff; font-weight: 500; }
.contact-list small { display: block; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); font-weight: 500; }
.contact-list a:hover { color: var(--accent); }
.contact-list__icon {
	display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; flex-shrink: 0;
	background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); color: var(--accent);
}
.contact__trust { display: flex; flex-wrap: wrap; gap: 10px; }
.contact__trust span {
	display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
	background: rgba(255, 107, 26, .12); color: #ffc9a6; font-size: .8438rem; font-weight: 600;
}
.contact__trust .icon { width: 16px; height: 16px; color: var(--accent); }
.contact__form-card { padding: clamp(26px, 4vw, 44px); border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); color: var(--text); }
.contact__form-title { font-size: 1.5rem; margin-bottom: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; font-size: .8125rem; font-weight: 600; color: var(--ink); }
.field label span { color: var(--accent); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
	width: 100%; min-height: 52px; padding: 13px 16px; border-radius: 14px; border: 1.5px solid var(--line);
	background: #f8fafc; color: var(--ink); font-size: .9375rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field select {
	appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230b1220' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(255, 107, 26, .14); }
.field input::placeholder, .field textarea::placeholder { color: #9aa5b5; }
.field .is-invalid, .field input:user-invalid { border-color: #ef4444; }
.field--check { display: flex; align-items: flex-start; gap: 12px; }
.field--check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex-shrink: 0; }
.field--check label { margin: 0; font-weight: 500; color: var(--muted); }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; }
.form-note { display: inline-flex; align-items: center; gap: 8px; margin: 0; font-size: .8438rem; color: var(--muted); }
.form-note .icon { color: var(--green); width: 18px; height: 18px; }
.form-status:empty { display: none; }
.form-status p { margin-top: 18px; padding: 14px 18px; border-radius: 14px; font-weight: 500; font-size: .9375rem; }
.form-status .is-success { background: #ecfdf3; color: #067647; border: 1px solid #abefc6; }
.form-status .is-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.quote-form.is-loading button[type="submit"] { opacity: .7; pointer-events: none; }

/* 17. Footer ------------------------------------------------------------- */
.site-footer { position: relative; background: var(--navy-950); color: rgba(255, 255, 255, .62); overflow: hidden; isolation: isolate; font-size: .9375rem; }
.footer-glow { position: absolute; left: 50%; top: -300px; width: 900px; height: 500px; margin-left: -450px; z-index: -1; border-radius: 50%; background: radial-gradient(ellipse, rgba(255, 107, 26, .16), transparent 70%); }
.contact + .site-footer, .section--dark + .site-footer { border-top: 1px solid rgba(255, 255, 255, .06); }
.footer-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 28px; padding: clamp(48px, 6vw, 72px) 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-cta .eyebrow { margin-bottom: 12px; }
.footer-cta__title { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.9rem); margin: 0; }
.footer-cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.footer-cta__phone { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem); color: #fff; }
.footer-cta__phone .icon { color: var(--accent); }
.footer-cta__phone:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(32px, 4vw, 56px); padding: clamp(48px, 6vw, 72px) 0; }
.footer-col--brand p { margin: 22px 0 26px; max-width: 36ch; }
.footer-title { font-size: 1.0625rem; color: #fff; margin-bottom: 22px; }
.footer-menu { display: grid; gap: 12px; }
.footer-menu a { position: relative; display: inline-block; transition: color .3s, transform .35s var(--ease); }
.footer-menu a:hover { color: var(--accent); transform: translateX(6px); }
.footer-contact { display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { color: var(--accent); width: 20px; height: 20px; margin-top: 3px; }
.footer-contact a:hover { color: var(--accent); }
.social { display: flex; gap: 10px; }
.social a {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .14); color: #fff; transition: background .3s, border-color .3s, transform .35s var(--ease);
}
.social a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-4px); }
.social .icon { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .875rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--accent); }
.to-top {
	margin-left: auto; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
	background: var(--accent); color: #fff; transition: transform .35s var(--ease);
}
.to-top:hover { transform: translateY(-4px); }
.footer-wordmark {
	font-family: var(--font-head); font-weight: 800; font-size: clamp(2.5rem, 11.2vw, 11rem); line-height: .78; letter-spacing: -.05em;
	text-align: center; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
	margin-bottom: -.06em; user-select: none;
	background: linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 80%); -webkit-background-clip: text; background-clip: text;
}

/* 18. Inner pages & blog ------------------------------------------------- */
.page-hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; background: var(--navy-950); color: rgba(255, 255, 255, .75); }
.page-hero__media { position: absolute; inset: -15% 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 11, 23, .94), rgba(5, 11, 23, .6)), linear-gradient(0deg, rgba(5, 11, 23, .8), transparent 50%); }
.page-hero__inner { padding-top: calc(var(--header-h) + 42px + 64px); padding-bottom: clamp(48px, 6vw, 80px); }
.page-hero__title { color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); max-width: 20ch; margin-bottom: 14px; }
.page-hero__sub { max-width: 60ch; font-size: 1.0625rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; font-size: .875rem; color: rgba(255, 255, 255, .55); }
.breadcrumbs a { color: #fff; }
.breadcrumbs a:hover { color: var(--accent); }
/* Regular blocks inside full-width pages get a readable container; theme sections & alignfull stay edge-to-edge. */
.builder-content > :not(section):not(.alignfull):not(.elementor) {
	max-width: calc(900px + var(--gutter) * 2); margin: clamp(48px, 7vw, 96px) auto; padding-inline: var(--gutter);
}
.builder-content > .alignwide:not(section) { max-width: calc(var(--container) + var(--gutter) * 2); }
.builder-content > p.has-large-font-size, .entry-content .has-large-font-size { font-size: clamp(1.25rem, 2.1vw, 1.65rem); line-height: 1.55; color: var(--ink); font-family: var(--font-head); font-weight: 500; letter-spacing: -.01em; }
.builder-content > section + section:not(.section--dark):not(.stats):not(.cta-band) { border-top: 1px solid var(--line); }

/* --- Blog banner extras --- */
.page-hero--blog { min-height: 520px; }
.page-hero__terms { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip--accent { background: rgba(255, 107, 26, .18); color: #ffb488; border: 1px solid rgba(255, 107, 26, .35); transition: background .3s, color .3s; }
.chip--accent:hover { background: var(--accent); color: #fff; }
.page-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; font-size: .9375rem; color: rgba(255, 255, 255, .72); }
.page-hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__meta .icon { width: 18px; height: 18px; color: var(--accent); }
.page-hero__search { margin-top: 30px; }
.page-hero__search .search-form { margin: 0; max-width: 460px; }
.page-hero__search .search-field { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .22); color: #fff; }
.page-hero__search .search-field::placeholder { color: rgba(255, 255, 255, .5); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { position: relative; display: flex; flex-direction: column; border-radius: 24px; overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__placeholder { display: grid; place-items: center; height: 100%; color: var(--accent); }
.post-card__placeholder .icon { width: 64px; height: 64px; stroke-width: 1.2; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.post-card__meta { font-size: .8125rem; color: var(--muted); margin-bottom: 10px; }
.post-card__title { font-size: 1.25rem; }
.post-card__title a::after { content: ""; position: absolute; inset: 0; }
.post-card__body > p:not(.post-card__meta) { font-size: .9375rem; color: var(--muted); }
.post-card .link-arrow { margin-top: auto; padding-top: 14px; }
/* Category label on the image */
.post-card__media { position: relative; }
.post-card__tag {
	position: absolute; left: 16px; top: 16px; z-index: 1; padding: 7px 14px; border-radius: 999px;
	background: rgba(5, 11, 23, .72); color: #fff; font-size: .75rem; font-weight: 600; letter-spacing: .03em;
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.post-card__title a { color: var(--ink); transition: color .3s; }
.post-card:hover .post-card__title a { color: var(--accent-600); }
/* Featured first post: image left, text right, full width of the grid */
.post-card--feature { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.post-card--feature .post-card__media { flex: 0 0 54%; aspect-ratio: auto; }
.post-card--feature .post-card__body { justify-content: center; padding: clamp(28px, 3.4vw, 48px); }
.post-card--feature .post-card__title { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.post-card--feature .post-card__body > p:not(.post-card__meta) { font-size: 1rem; }

/* --- Single post: share, next/previous, related --- */
.entry-thumb { margin: 0 0 clamp(28px, 4vw, 44px); border-radius: 24px; overflow: hidden; }
.entry-thumb img { display: block; width: 100%; height: auto; }
.share { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.share__label { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.share__links { display: flex; gap: 10px; }
.share__links a {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	border: 1px solid var(--line); color: var(--ink); transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.share__links a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.share__links .icon { width: 19px; height: 19px; }

.post-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.post-nav__link {
	display: grid; gap: 8px; padding: 24px 26px; border-radius: 20px; background: var(--soft);
	border: 1px solid transparent; transition: border-color .3s, background .3s, transform .4s var(--ease);
}
.post-nav__link:hover { background: #fff; border-color: var(--line); transform: translateY(-3px); }
.post-nav__link span { display: inline-flex; align-items: center; gap: 8px; font-size: .8125rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.post-nav__link strong { font-family: var(--font-head); color: var(--ink); line-height: 1.35; }
.post-nav__link .icon { width: 16px; height: 16px; color: var(--accent); }
.post-nav__link--next { text-align: right; }
.post-nav__link--next span { justify-content: flex-end; }
.post-nav__link:only-child { grid-column: 1 / -1; }

.related { background: var(--soft); }
.aside-links em { font-style: normal; font-size: .8125rem; color: var(--muted); }
.error-404__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 8px; }
.error-404__code .icon { width: .62em; height: .62em; color: var(--accent); }
.pagination { margin-top: 56px; }
.pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 48px; height: 48px; padding: 0 10px; border-radius: 14px; border: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.pagination .page-numbers.current, .pagination a.page-numbers:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.pagination .icon { width: 18px; height: 18px; }

.single-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(40px, 5vw, 72px); align-items: start; }
.single-aside { position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 24px; }
.aside-card { padding: 30px; border-radius: 24px; background: var(--soft); border: 1px solid var(--line); }
.aside-card h3 { font-size: 1.25rem; }
.aside-card--dark { background: radial-gradient(ellipse at top right, rgba(255, 107, 26, .25), transparent 60%), var(--navy-900); border: 0; color: rgba(255, 255, 255, .7); }
.aside-card--dark h3 { color: #fff; }
.aside-card--dark .btn { margin: 8px 0 18px; }
.aside-card__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 16px; background: var(--accent); color: #fff; }
.aside-card__phone { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--font-head); font-weight: 600; }
.aside-card__phone .icon { color: var(--accent); }
.aside-links { display: grid; gap: 4px; }
.aside-links a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px; font-weight: 500; color: var(--ink); font-size: .9375rem; transition: background .3s, color .3s; }
.aside-links .icon { width: 16px; height: 16px; opacity: .5; }
.aside-links a:hover, .aside-links .is-current a { background: #fff; color: var(--accent-600); }

.entry-content { font-size: 1.0625rem; color: var(--text); }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 1.8em; }
.entry-content h3 { font-size: 1.4rem; margin-top: 1.6em; }
.entry-content a:not(.btn):not(.wp-block-button__link) { color: var(--accent-600); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul:not(.checklist), .entry-content ol { padding-left: 1.4em; }
.entry-content ul:not(.checklist) { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content img { border-radius: 18px; }
.entry-content blockquote { margin: 1.6em 0; padding: 24px 28px; border-left: 4px solid var(--accent); background: var(--soft); border-radius: 0 18px 18px 0; font-size: 1.125rem; color: var(--ink); }
.entry-content .wp-block-button__link { border-radius: 999px; background: var(--accent); padding: 14px 28px; font-weight: 600; }
.alignwide { max-width: 1100px; margin-inline: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.tags a { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--soft); font-size: .8125rem; margin: 0 6px 6px 0; }
.widget { margin-bottom: 24px; padding: 28px; border-radius: 24px; background: var(--soft); }
.widget-title { font-size: 1.125rem; }

.search-form { position: relative; display: flex; max-width: 480px; margin: 24px auto 0; }
.search-field { width: 100%; min-height: 56px; padding: 0 60px 0 22px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; }
.search-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 107, 26, .14); }
.search-submit { position: absolute; right: 6px; top: 6px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; }
.empty-state { text-align: center; padding: 40px 0; }

.error-404 { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 80px) 0 80px; background: radial-gradient(ellipse at top, rgba(255, 107, 26, .18), transparent 55%), var(--navy-950); color: rgba(255, 255, 255, .7); }
.error-404 h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.error-404__code { display: flex; justify-content: center; align-items: center; gap: .1em; font-family: var(--font-head); font-weight: 800; font-size: clamp(6rem, 18vw, 12rem); line-height: 1; color: #fff; margin-bottom: 20px; }
.error-404__code span { display: grid; place-items: center; width: .9em; height: .9em; border-radius: 50%; background: var(--accent); animation: float 4s ease-in-out infinite; }
.error-404__code .icon { width: 50%; height: 50%; }
.error-404__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.error-404 .btn--outline { --btn-fg: #fff; border-color: rgba(255, 255, 255, .25); }

.comments-area { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.comment-list { display: grid; gap: 24px; margin-bottom: 40px; }
.comment-list .children { margin: 20px 0 0 32px; display: grid; gap: 20px; }
.comment-body { padding: 24px; border-radius: 18px; background: var(--soft); }
.comment-form input:not([type="submit"]):not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--line); }
.comment-form .submit { padding: 14px 28px; border-radius: 999px; border: 0; background: var(--accent); color: #fff; font-weight: 600; cursor: pointer; }

/* 19. Animation initial states (only when JS + GSAP will run) ------------ */
.js:not(.no-anim) [data-anim]:not(.anim-done),
.js:not(.no-anim) [data-stagger] > *:not(.anim-done),
.js:not(.no-anim) [data-hero-item],
.js:not(.no-anim) [data-hero-card],
.js:not(.no-anim) .float-chip,
.js:not(.no-anim) [data-split]:not(.is-split) { opacity: 0; }
.js:not(.no-anim) [data-reveal]:not(.anim-done) { clip-path: inset(100% 0 0 0); }
.js:not(.no-anim) .hero__title:not(.is-split) { opacity: 0; }
.split-line { display: inline-block; vertical-align: top; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.split-word { display: inline-block; will-change: transform; }
.no-animations [data-anim], .no-animations [data-stagger] > *, .no-animations [data-hero-item], .no-animations [data-hero-card],
.no-animations .float-chip, .no-animations [data-split], .no-animations .hero__title { opacity: 1 !important; clip-path: none !important; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	.js [data-anim], .js [data-stagger] > *, .js [data-hero-item], .js [data-hero-card], .js .float-chip, .js [data-split], .js .hero__title { opacity: 1 !important; transform: none !important; translate: none !important; }
	.js [data-reveal] { clip-path: none !important; }
	.marquee__track { animation: none; }
}

/* 20. Responsive --------------------------------------------------------- */
@media (max-width: 1440px) {
	.navbar__call { display: none; }
}

@media (max-width: 1280px) {
	.primary-nav .menu > li > a { padding: 10px 12px; }
}

@media (max-width: 1100px) {
	:root { --header-h: 76px; }
	.nav-toggle { display: grid; }
	.navbar__actions > .btn { display: none; }
	.primary-nav {
		position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: flex-start;
		padding: calc(var(--header-h) + 24px) var(--gutter) 40px; overflow-y: auto; overscroll-behavior: contain;
		background: radial-gradient(ellipse at top right, rgba(255, 107, 26, .2), transparent 55%), var(--navy-950);
		clip-path: circle(0% at calc(100% - 44px) 40px); visibility: hidden;
		transition: clip-path .7s var(--ease), visibility .7s;
	}
	.nav-open .primary-nav { clip-path: circle(150% at calc(100% - 44px) 40px); visibility: visible; }
	.nav-open { overflow: hidden; }
	.nav-open .site-header .topbar { margin-top: -43px; opacity: 0; }
	.nav-open .site-header { transform: none; }
	.nav-open .navbar { background: transparent !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
	.primary-nav .menu { flex-direction: column; align-items: stretch; gap: 0; padding: 0; background: none; border: 0; backdrop-filter: none; -webkit-backdrop-filter: none; }
	.primary-nav .menu > li { border-bottom: 1px solid rgba(255, 255, 255, .08); opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .6s var(--ease); }
	.nav-open .primary-nav .menu > li { opacity: 1; transform: none; }
	.nav-open .primary-nav .menu > li:nth-child(1) { transition-delay: .15s; }
	.nav-open .primary-nav .menu > li:nth-child(2) { transition-delay: .2s; }
	.nav-open .primary-nav .menu > li:nth-child(3) { transition-delay: .25s; }
	.nav-open .primary-nav .menu > li:nth-child(4) { transition-delay: .3s; }
	.nav-open .primary-nav .menu > li:nth-child(5) { transition-delay: .35s; }
	.nav-open .primary-nav .menu > li:nth-child(6) { transition-delay: .4s; }
	.nav-open .primary-nav .menu > li:nth-child(7) { transition-delay: .45s; }
	.nav-open .primary-nav .menu > li:nth-child(n+8) { transition-delay: .5s; }
	.primary-nav .menu > li > a { padding: 16px 0; border-radius: 0; font-family: var(--font-head); font-size: clamp(1.4rem, 5vw, 2rem); font-weight: 600; justify-content: space-between; }
	.primary-nav .menu > li > a:hover { background: none; color: var(--accent); }
	.primary-nav .sub-menu { position: static; min-width: 0; padding: 0 0 14px 14px; background: none; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
	.primary-nav .sub-menu a { color: rgba(255, 255, 255, .7); padding: 8px 0; }
	.primary-nav .sub-menu a:hover { background: none; color: var(--accent); padding-left: 6px; }
	.primary-nav .menu-item-has-children > a::after { display: none; }
	.primary-nav__mobile-extra { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 36px; }
	.nav-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; }
	.nav-phone .icon { color: var(--accent); }

	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 560px; }
	.float-chip--1 { right: 0; }
	.float-chip--2 { left: auto; right: 10%; }
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.equipment__grid { grid-template-columns: repeat(2, 1fr); }
	.why__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
	.why__sticky, .faq__intro { position: static; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.post-grid { grid-template-columns: repeat(2, 1fr); }
	.single-layout { grid-template-columns: 1fr; }
	.single-aside { position: static; }
	.single-aside { grid-template-columns: repeat(2, 1fr); }
	.aside-card--dark { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.about__grid { grid-template-columns: 1fr; }
	.about__media { max-width: 560px; }
	.pillars__head { flex-direction: column; align-items: flex-start; gap: 0; }
	.pillars__progress { margin-bottom: 32px; }
	.pillar { grid-template-columns: 1fr; width: 84vw; min-height: 0; }
	.pillar__media { aspect-ratio: 16 / 10; }
	.pillar__media::after { background: linear-gradient(0deg, rgba(10, 22, 40, .5), transparent 50%); }
	.pillar__top { margin-bottom: 0; padding-bottom: 22px; }
	.pillar__num { font-size: 3rem; }
	.stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
	.stat:nth-child(3)::before { display: none; }
	.testimonials__head { flex-direction: column; align-items: flex-start; }
	.testimonials__head .section-head { margin-bottom: 24px; }
	.timeline__road { left: 22px; }
	.timeline__step, .timeline__step:nth-child(even) { width: 100%; margin-left: 0; padding: 0 0 0 68px; }
	.timeline__dot, .timeline__step:nth-child(even) .timeline__dot { left: 0; right: auto; }
	.timeline__step:nth-child(odd) .timeline__card { text-align: left; }
	.timeline__truck { left: 26px; width: 46px; height: 46px; margin: -23px 0 0 -23px; }
	.timeline__truck .icon { width: 22px; height: 22px; }
}

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

@media (max-width: 767px) {
	.topbar { display: none; }
	.site-header.is-scrolled .topbar { margin-top: 0; }
	.hero__inner { padding-top: calc(var(--header-h) + 48px); }
	.page-hero__inner { padding-top: calc(var(--header-h) + 56px); }
	.header-solid .site-main { padding-top: var(--header-h); }
	.hero__actions .btn { flex: 1 1 auto; justify-content: space-between; }
	.dispatch-card { padding: 20px; }
	.dispatch-card__metrics { grid-template-columns: 1fr 1fr; }
	.dispatch-card__metrics > div:last-child { grid-column: 1 / -1; }
	.float-chip { display: none; }
	.hero__scroll { display: none; }
	.services__grid, .equipment__grid, .post-grid { grid-template-columns: 1fr; }
	.post-card--feature { flex-direction: column; }
	.post-card--feature .post-card__media { flex: none; aspect-ratio: 16 / 10; }
	.post-nav { grid-template-columns: 1fr; }
	.post-nav__link--next { text-align: left; }
	.post-nav__link--next span { justify-content: flex-start; }
	.single-aside { grid-template-columns: 1fr; }
	.filter-tabs { border-radius: 20px; }
	.form-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; }
	.about__badge { width: 118px; height: 118px; top: 12px; }
	.about__badge strong { font-size: 2rem; }
	.about__badge span { padding: 4px 12px 0; font-size: .6875rem; }
	.why-card { grid-template-columns: 1fr; padding: 26px; }
	.cta-band__box { min-height: 0; }
	.cta-band__overlay { background: linear-gradient(0deg, rgba(5, 11, 23, .95), rgba(5, 11, 23, .7)); }
	.footer-cta { flex-direction: column; align-items: flex-start; }
	.to-top { margin-left: 0; }
}

@media (max-width: 480px) {
	.stats__grid { grid-template-columns: 1fr; }
	.stat::before { display: none; }
	.dispatch-card__route { grid-template-columns: 1fr; gap: 12px; }
	.dispatch-card__route .text-right { text-align: left; }
	.route-line { margin: 10px 0; }
}

/* Performance: pillars as a simple grid when the pinned horizontal scroll is switched off. */
.pillars--grid .pillars__viewport { overflow: visible; padding-inline: 0; }
.pillars--grid .pillars__track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: auto; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.pillars--grid .pillar { width: auto; grid-template-columns: 1fr; min-height: 0; }
.pillars--grid .pillar__media { aspect-ratio: 16 / 9; }
.pillars--grid .pillars__progress { display: none; }
@media (max-width: 900px) { .pillars--grid .pillars__track { grid-template-columns: 1fr; } }

/* Performance: lighter header blur and GPU hints for continuously animated elements. */
.site-header.is-scrolled .navbar, .header-solid .navbar { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.marquee__track, .route-line__truck, .hero__road span, .float-chip, .cta-band__truck { will-change: transform; }
@media (max-width: 767px) { .hero__road, .cta-band__truck { display: none; } }
/* ==========================================================================
   Animations OFF / scripts not loaded (.no-anim): keep the full design
   ========================================================================== */
/* Pillars: without the pinned horizontal scroll, show a 2-column grid on desktop instead of a cut-off strip. */
@media (min-width: 1024px) {
	.pillars:not(.is-hscroll) .pillars__viewport { overflow: visible; padding-inline: 0; scroll-snap-type: none; }
	.pillars:not(.is-hscroll) .pillars__track {
		display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: auto;
		max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter);
	}
	.pillars:not(.is-hscroll) .pillar { width: auto; grid-template-columns: 1fr; min-height: 0; }
	.pillars:not(.is-hscroll) .pillar__media { aspect-ratio: 16 / 9; }
	.pillars:not(.is-hscroll) .pillars__progress { display: none; }
}
/* Process timeline: full road, no floating truck, every step highlighted. */
.no-anim .timeline__truck { display: none; }
.no-anim .timeline__fill { transform: none; }
.no-anim .timeline__step .timeline__dot { background: var(--accent); border-color: var(--accent); color: #fff; }
/* Never leave anything hidden or offset. */
.no-anim [data-anim], .no-anim [data-stagger] > *, .no-anim [data-hero-item], .no-anim [data-hero-card],
.no-anim .float-chip, .no-anim [data-split], .no-anim .hero__title { opacity: 1 !important; transform: none !important; }
.no-anim [data-reveal], .no-anim .hc-reveal { clip-path: none !important; }