/* =========================================================================
   STICKAWRAP — MAIN STYLESHEET
   Dark, high-contrast, electric-blue accented design system.
   Table of contents:
   1. Custom properties / tokens
   2. Reset & base
   3. Layout utilities
   4. Typography
   5. Buttons
   6. Header / navigation
   7. Overlay menu
   8. Hero
   9. Kicker / section heads
   10. Stats bar
   11. Card grid (solutions / services)
   12. Process steps
   13. Case-study slider
   14. Testimonial
   15. Logo strip
   16. Before / after slider
   17. Coverage map
   18. Contact / quote form
   19. CTA banner
   20. Footer
   21. Motion utilities
   22. Responsive
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Custom properties
   ------------------------------------------------------------------------- */
:root {
	--bg: #060b14;
	--bg-alt: #0a1424;
	--surface: #0d1b2e;
	--surface-2: #101f34;
	--border: rgba(255, 255, 255, 0.09);
	--border-strong: rgba(255, 255, 255, 0.16);
	--text: #ffffff;
	--text-muted: #a7b3c6;
	--text-faint: #6b7994;

	--accent: #1e8bff;
	--accent-2: #4fb3ff;
	--accent-deep: #0b62d6;
	--accent-glow: rgba(30, 139, 255, 0.35);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;

	--font-display: 'Oswald', 'Arial Narrow', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--container: 1280px;
	--container-wide: 1440px;
	--gutter: clamp(20px, 5vw, 64px);
	--section-pad: clamp(64px, 9vw, 140px);

	--ease: cubic-bezier(0.16, 1, 0.3, 1);
	--speed-fast: 0.25s;
	--speed-med: 0.5s;
	--speed-slow: 0.9s;
}

/* -------------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
/* Safety net: any icon SVG used without a sizing wrapper (.stat__icon,
   .icon-feature__icon, etc. all set their own explicit size) still gets a
   sane default instead of the browser's oversized generic replaced-element
   fallback. */
svg.icon { width: 20px; height: 20px; flex-shrink: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button {
	font-family: inherit;
	cursor: pointer;
	/* Neutralize the browser's default button chrome (face color, border,
	   padding) — every button in this theme supplies its own look via a
	   class (.btn, .play-btn, .menu-toggle, .showcase-card__play etc.), and
	   without this reset an unstyled <button> renders an opaque gray box
	   that can hide whatever it's layered over (e.g. a play-button overlay
	   sitting on top of a thumbnail image). */
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;
	padding: 0;
	color: inherit;
}
input, textarea, select { font-family: inherit; }

/* .menu-open = mobile nav overlay open (also drives its visibility below).
   .mockup-open = Instant Wrap Mockup Builder panel open (assets/js/mockup-builder.js).
   Two independent components, each locking body scroll — kept as two
   distinct classes on purpose so opening/closing one can never affect
   the other's visibility or scroll-lock state. */
body.menu-open, body.mockup-open { overflow: hidden; }

::selection { background: var(--accent); color: #fff; }

/* Subtle ambient glow behind sections. `overflow: hidden` here is load-bearing,
   not decorative: the glow's ::before deliberately bleeds -10% past its own
   left/right edges for a soft ambient look, and without a clipping box that
   bleed extends past the section's own boundary with nothing to contain it,
   inflating the page's real scrollWidth by ~10% of the section's width on
   every page that uses this class (confirmed via a Playwright overflow
   sweep — this was a real, measurable horizontal-overflow bug, distinct
   from the earlier showcase-slider overflow fix). Clipping it to the
   section box removes the bug; the gradient already fades to transparent
   well inside the section, so the visible glow is effectively unchanged. */
.glow-field { position: relative; isolation: isolate; overflow: hidden; }
.glow-field::before {
	content: '';
	position: absolute;
	inset: -10% -10% auto -10%;
	height: 60%;
	background: radial-gradient(ellipse at top, var(--accent-glow), transparent 70%);
	opacity: 0.5;
	z-index: -1;
	pointer-events: none;
}

/* -------------------------------------------------------------------------
   3. Layout utilities
   ------------------------------------------------------------------------- */
.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 860px; }

.section { padding-block: var(--section-pad); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 90px); }
.section--border-top { border-top: 1px solid var(--border); }

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap;
}

/* -------------------------------------------------------------------------
   4. Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4,
.h1, .h2, .h3, .h4 {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.05;
	letter-spacing: 0.005em;
	margin: 0 0 0.4em;
	/* A single long word (e.g. "Transformation.") in this display font at its
	   fluid-clamped mobile size can be wider on its own than a 320px screen
	   — text only wraps at word boundaries by default, so with no second
	   word to break before, the heading's own min-content width forced the
	   page itself to overflow horizontally (confirmed via a Playwright
	   breakpoint sweep, worst on a centered .section-head, whose grid item
	   is sized by fit-content and so can't shrink below that min-content
	   width no matter what its container allows). `break-word` alone does
	   NOT fix this — per spec it only affects line-wrapping once a box's
	   width is already resolved, not the min-content size used to size a
	   fit-content/auto grid item in the first place. `anywhere` is the one
	   that actually reduces min-content, with zero visual effect on the
	   vastly more common case of headings that already fit. */
	overflow-wrap: anywhere;
}
h1, .h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); }
h2, .h2 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
h3, .h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4, .h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); max-width: 46ch; }

.text-accent { color: var(--accent-2); }
.text-white { color: var(--text); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* -------------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 30px;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border: 1px solid transparent;
	transition: transform var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
	white-space: nowrap;
	max-width: 100%;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-deep));
	color: #fff;
	box-shadow: 0 8px 24px -8px var(--accent-glow);
}
.btn--primary:hover { box-shadow: 0 14px 32px -8px var(--accent-glow); }

.btn--outline {
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	border-color: var(--border-strong);
	backdrop-filter: blur(6px);
}
.btn--outline:hover { border-color: var(--accent); background: rgba(30, 139, 255, 0.08); }

.btn--sm { padding: 12px 22px; font-size: 0.82rem; }
.btn--lg { padding: 19px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.play-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px; height: 60px;
	border-radius: 50%;
	background: rgba(6, 11, 20, 0.55);
	border: 1.5px solid rgba(255,255,255,0.5);
	backdrop-filter: blur(4px);
	transition: transform var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.play-btn svg { width: 20px; height: 20px; margin-left: 3px; fill: #fff; }
.play-btn:hover { transform: scale(1.08); background: var(--accent); border-color: var(--accent); }
.play-btn--inline { width: 32px; height: 32px; }
.play-btn--inline svg { width: 12px; height: 12px; margin-left: 2px; }

/* -------------------------------------------------------------------------
   6. Header / navigation
   ------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100;
	padding: 22px 0;
	background: linear-gradient(to bottom, rgba(6,11,20,0.85), rgba(6,11,20,0));
	transition: padding var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
	border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
	padding: 14px 0;
	background: rgba(6, 11, 20, 0.85);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--border);
	box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-logo { display: flex; align-items: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase; }
.site-logo img { max-height: 42px; width: auto; }
.site-logo .logo-accent { color: var(--accent-2); margin-left: 0.2em; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 36px; }
.primary-nav a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
	position: relative;
	padding: 6px 0;
}
.primary-nav a::after {
	content: '';
	position: absolute;
	left: 0; right: 100%; bottom: 0;
	height: 2px;
	background: var(--accent);
	transition: right var(--speed-fast) var(--ease);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 18px; }

.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
	width: 42px; height: 42px;
	background: none;
	border: none;
	padding: 0;
}
.menu-toggle span {
	display: block;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all var(--speed-fast) var(--ease);
}
.menu-toggle span:nth-child(1) { width: 28px; }
.menu-toggle span:nth-child(2) { width: 20px; }
.menu-toggle span:nth-child(3) { width: 28px; }
.menu-toggle:hover span { width: 28px; }

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 28px; }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 28px; }

/* -------------------------------------------------------------------------
   7. Overlay menu
   ------------------------------------------------------------------------- */
.nav-overlay {
	position: fixed; inset: 0;
	z-index: 99;
	background: #050a12;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 100px var(--gutter) 60px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-12px);
	transition: opacity var(--speed-med) var(--ease), transform var(--speed-med) var(--ease), visibility 0s linear var(--speed-med);
}
.nav-overlay::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(circle at 85% 15%, var(--accent-glow), transparent 55%);
	opacity: 0.6;
}
.menu-open .nav-overlay {
	opacity: 1; visibility: visible; transform: translateY(0);
	transition: opacity var(--speed-med) var(--ease), transform var(--speed-med) var(--ease), visibility 0s linear 0s;
}
.nav-overlay__grid { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.nav-overlay__links a {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 6vw, 4.2rem);
	text-transform: uppercase;
	line-height: 1.15;
	padding: 6px 0;
	color: var(--text);
	opacity: 0.55;
	transition: opacity var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease), padding var(--speed-fast) var(--ease);
}
.nav-overlay__links a:hover,
.nav-overlay__links .current-menu-item a { opacity: 1; color: var(--accent-2); padding-left: 14px; }
.nav-overlay__side { display: flex; flex-direction: column; justify-content: space-between; }
.nav-overlay__meta { color: var(--text-muted); font-size: 0.95rem; }
.nav-overlay__meta strong { display: block; color: #fff; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; margin-bottom: 10px; }
.nav-overlay__meta a:hover { color: var(--accent-2); }
.nav-overlay__social { display: flex; gap: 14px; margin-top: 24px; }
.nav-overlay__social a { width: 40px; height: 40px; border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-overlay__social a:hover { border-color: var(--accent); background: rgba(30,139,255,0.1); }
.nav-overlay__social svg { width: 16px; height: 16px; }

/* -------------------------------------------------------------------------
   8. Hero
   ------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding-top: 140px;
	padding-bottom: 80px;
	overflow: hidden;
}
.hero--split .hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__media {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/5;
	border: 1px solid var(--border);
	background: var(--surface);
}
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(5,10,18,0.55), transparent 45%);
}
.hero__media-caption {
	position: absolute; left: 20px; right: 20px; bottom: 18px;
	display: flex; justify-content: space-between; align-items: flex-end;
	z-index: 2;
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	color: var(--text-muted);
}

.hero--full { min-height: 100svh; }
.hero--full .hero__bg {
	position: absolute; inset: 0; z-index: 0;
}
.hero--full .hero__bg video, .hero--full .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero--full .hero__bg::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(5,9,16,0.55) 0%, rgba(5,9,16,0.55) 30%, rgba(5,9,16,0.92) 100%);
}
.hero--full .hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero--full .scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 1; }

/* Wordmark reveal placeholder for the eventual "vehicles part to reveal the
   logo" scroll animation (see front-page.php hero comment). Purely an
   opacity fade today, driven by initHeroLogoReveal() in main.js; contained
   entirely inside .hero__bg (which is inset:0 within .hero, itself
   overflow:hidden) so it can never cause horizontal overflow. */
.hero__logo-reveal {
	position: absolute; z-index: 1; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
	font-size: clamp(2.4rem, 7vw, 6rem); letter-spacing: 0.02em;
	opacity: 0; pointer-events: none;
}
.hero__logo-reveal .logo-accent { color: var(--accent-2); margin-left: 0.25em; }
@media (prefers-reduced-motion: reduce) {
	.hero__logo-reveal { display: none; }
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--accent-2);
	margin-bottom: 18px;
}
.kicker::before { content: ''; width: 26px; height: 2px; background: var(--accent-2); }

.hero__title { margin-bottom: 22px; }
.hero__title .line-accent { color: var(--accent-2); }

.scroll-cue { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-muted); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-cue__bar { width: 1px; height: 34px; background: linear-gradient(to bottom, var(--accent-2), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { transform: scaleY(0.2); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0.2); transform-origin: bottom; } }

/* -------------------------------------------------------------------------
   9. Kicker / section heads
   ------------------------------------------------------------------------- */
.section-head { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 32px; align-items: end; margin-bottom: 56px; }
.section-head--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
/* min-width:0 overrides the grid/flex default of min-width:auto (== content's
   min-content size), which is what let a long, non-wrapping side_note label
   (e.g. "Built To Get You Noticed") force its column wider than the
   available track and overflow the page horizontally on narrow viewports
   and on the 2-column desktop layout alike. */
.section-head__main, .section-head__side { min-width: 0; }
.section-head__side { color: var(--text-muted); font-size: 0.95rem; }
.section-head__eyebrow-row { display: flex; align-items: center; gap: 18px; margin-bottom: 4px; min-width: 0; }
.section-head__eyebrow-row .rule { flex: 1; height: 1px; background: var(--border-strong); }
.section-head__eyebrow-row span:not(.rule) { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-faint); }

/* -------------------------------------------------------------------------
   10. Stats bar
   ------------------------------------------------------------------------- */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: 48px; }
.stats-bar__row { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; text-align: center; }
.stat { position: relative; padding-inline: 12px; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; background: var(--border-strong); }
.stat__icon { width: 30px; height: 30px; margin: 0 auto 14px; color: var(--accent-2); }
.stat__icon svg { width: 100%; height: 100%; }
.stat__number { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: #fff; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat__suffix { color: var(--accent-2); }
.stat__label { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* -------------------------------------------------------------------------
   11. Card grid
   ------------------------------------------------------------------------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--asymmetric { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }

.solution-card {
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--surface);
	overflow: hidden;
	transition: transform var(--speed-med) var(--ease), border-color var(--speed-med) var(--ease), box-shadow var(--speed-med) var(--ease);
}
.solution-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 24px 50px -24px rgba(0,0,0,0.6); }
.solution-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.solution-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--speed-slow) var(--ease); }
.solution-card:hover .solution-card__media img { transform: scale(1.06); }
.solution-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(5,9,16,0.85) 100%); }
.solution-card__badge {
	position: absolute; left: 16px; top: 16px; z-index: 2;
	font-family: var(--font-display); font-size: 1.5rem; color: #fff;
	text-transform: none;
}
.solution-card__body { padding: 22px 24px 26px; }
.solution-card__label { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.solution-card__label svg { width: 18px; height: 18px; color: var(--accent-2); transition: transform var(--speed-fast) var(--ease); }
.solution-card:hover .solution-card__label svg { transform: translateX(5px); }
.solution-card__title { font-family: var(--font-body); font-weight: 600; color: var(--text); font-size: 0.98rem; margin-bottom: 4px; }
.solution-card__desc { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* -------------------------------------------------------------------------
   11b. Sign category popovers (Signs page)
   Desktop: an anchored overlay contained inside the card — the card
   already has overflow:hidden (see .solution-card above), so this can
   never push the page wider. Mobile (<640px, see §22 breakpoint reused
   below): the exact same element is repositioned by CSS into a fixed
   bottom drawer — position:fixed ignores its DOM parent's layout, so no
   JS repositioning is needed when the breakpoint changes.
   ------------------------------------------------------------------------- */
.sign-category { position: relative; }
.sign-category:has(.sign-popover.is-open) { transform: none !important; } /* keep :hover lift from creating a containing block under the mobile fixed drawer */
.sign-category__trigger {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 14px; padding: 0; border: none; background: none;
	font-family: var(--font-display); font-size: 0.82rem; text-transform: uppercase;
	letter-spacing: 0.04em; color: var(--accent-2); cursor: pointer;
}
.sign-category__trigger svg { width: 14px; height: 14px; transition: transform var(--speed-fast) var(--ease); }
.sign-category__trigger:hover svg,
.sign-category__trigger:focus-visible svg { transform: translateX(4px); }
.sign-category__trigger:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 2px; }

.sign-popover {
	display: none;
	position: absolute; inset: 0; z-index: 4;
	align-items: center;
	background: rgba(6, 11, 20, 0.94);
	backdrop-filter: blur(6px);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.sign-popover:not([hidden]) { display: flex; }
.sign-popover.is-open { opacity: 1; transform: none; }
.sign-popover__inner { position: relative; width: 100%; padding: 28px 26px; }
.sign-popover__inner h4 { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; color: #fff; margin-bottom: 10px; }
.sign-popover__inner p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.sign-popover__close {
	position: absolute; top: -6px; right: -2px;
	width: 32px; height: 32px; border-radius: 50%;
	border: 1px solid var(--border-strong); background: var(--surface); color: #fff;
	font-size: 1.2rem; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
}
.sign-popover__close:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	.sign-popover, .sign-popover__inner { transition: none !important; }
}

@media (max-width: 640px) {
	.sign-popover {
		position: fixed; inset: 0; z-index: 200;
		align-items: flex-end;
		background: rgba(4, 7, 13, 0.72);
		backdrop-filter: none;
		transform: none;
	}
	.sign-popover__inner {
		background: var(--surface);
		border: 1px solid var(--border-strong); border-bottom: none;
		border-radius: var(--radius-md) var(--radius-md) 0 0;
		padding: 26px 22px calc(22px + env(safe-area-inset-bottom));
		transform: translateY(100%);
		transition: transform var(--speed-fast) var(--ease);
	}
	.sign-popover.is-open .sign-popover__inner { transform: translateY(0); }
	.sign-popover__close { top: 14px; right: 14px; }
}

/* service icon cards (feature lists, no image) */
.icon-feature-grid { display: grid; gap: 32px; }
.icon-feature { display: flex; gap: 18px; align-items: flex-start; }
.icon-feature__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: var(--radius-sm); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; color: var(--accent-2); background: var(--surface); }
.icon-feature__icon svg { width: 24px; height: 24px; }
.icon-feature__icon--sm { width: 36px; height: 36px; border-radius: 50%; }
.icon-feature__icon--sm svg { width: 18px; height: 18px; }
.icon-feature h4 { margin-bottom: 6px; }
.icon-feature p { font-size: 0.92rem; }

/* -------------------------------------------------------------------------
   12. Process steps
   ------------------------------------------------------------------------- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-step__num {
	width: 50px; height: 50px; margin: 0 auto 18px;
	border-radius: 50%; border: 1.5px solid var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); color: var(--accent-2);
	background: var(--bg);
	position: relative; z-index: 2;
}
.process-step__icon { width: 34px; height: 34px; margin: 0 auto 14px; color: var(--accent-2); }
.process-step__icon svg { width: 100%; height: 100%; }
.process-step__connector {
	position: absolute; top: 25px; left: calc(50% + 45px); right: calc(-50% + 45px);
	height: 1px; background: repeating-linear-gradient(to right, var(--border-strong) 0 6px, transparent 6px 12px);
	z-index: 1;
}
.process-step:last-child .process-step__connector { display: none; }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* -------------------------------------------------------------------------
   13. Case-study / example slider (Swiper)
   ------------------------------------------------------------------------- */
.showcase-slider { padding-top: 8px; }
/* NOTE: intentionally not `overflow:visible` here — with loop mode the
   duplicated slides sit at large negative/positive translateX offsets, and
   letting them paint outside the card boundary caused real horizontal
   overflow on every breakpoint (confirmed: body.scrollWidth exceeded
   window.innerWidth by 1000px+ on a live check). The "next card peeks in"
   look already comes from the fractional slidesPerView values in main.js
   (1.15 / 2.1 / 3.2 / 3.6) — overflow:hidden keeps that peek but clips
   everything beyond the section's own edge instead of bleeding into the
   page. */
.showcase-slider .swiper { overflow: hidden; }
.showcase-slider .swiper-wrapper { align-items: stretch; }
.showcase-card {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid var(--border);
	aspect-ratio: 4/5;
	background: var(--surface);
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; }
.showcase-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,9,16,0.9) 100%); }
.showcase-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.showcase-card__duration { position: absolute; right: 14px; bottom: 16px; z-index: 2; font-size: 0.78rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.showcase-card__caption { position: absolute; left: 16px; bottom: 16px; z-index: 2; font-family: var(--font-display); text-transform: uppercase; font-size: 0.95rem; color: #fff; }

.showcase-strip { display: flex; gap: 20px; overflow: hidden; }
.showcase-strip.marquee .showcase-strip__track { display: flex; gap: 20px; animation: marquee 34s linear infinite; }
.showcase-strip.marquee:hover .showcase-strip__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* metric chips row under sliders */
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.metric-chip { text-align: center; }
.metric-chip__icon { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--accent-2); }
.metric-chip__icon svg { width: 100%; height: 100%; }
.metric-chip__value { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.metric-chip__label { font-size: 0.85rem; color: var(--text-muted); }

/* -------------------------------------------------------------------------
   14. Testimonial
   ------------------------------------------------------------------------- */
.testimonial { display: flex; align-items: center; gap: 22px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); }
.testimonial__avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--surface-2); }
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__quote { font-size: 1.02rem; font-style: italic; color: var(--text); margin-bottom: 8px; }
.testimonial__name { font-size: 0.85rem; color: var(--text-muted); font-style: normal; }
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 8px; }
.testimonial__stars svg { width: 16px; height: 16px; color: var(--accent-2); }

/* -------------------------------------------------------------------------
   15. Logo strip
   ------------------------------------------------------------------------- */
.logo-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); opacity: 0.8; }
.logo-strip img { height: 26px; width: auto; filter: grayscale(1) brightness(1.6); opacity: 0.75; transition: opacity var(--speed-fast) var(--ease), filter var(--speed-fast) var(--ease); }
.logo-strip img:hover { opacity: 1; filter: none; }

/* -------------------------------------------------------------------------
   16. Before / after slider
   ------------------------------------------------------------------------- */
.before-after { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/8; user-select: none; }
.before-after__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.before-after__after-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.before-after__after-wrap img { width: 200%; max-width: none; height: 100%; }
.before-after__after-wrap { width: var(--reveal, 50%); }
.before-after__after-wrap img { width: calc(100% / (var(--reveal, 50) / 100)); }
.before-after__handle {
	position: absolute; top: 0; bottom: 0; left: var(--reveal, 50%);
	width: 3px; background: #fff; transform: translateX(-50%);
	cursor: ew-resize; z-index: 3;
}
.before-after__handle::after {
	content: '⇔';
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 46px; height: 46px; border-radius: 50%; background: #fff; color: #05070c;
	display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
	box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.before-after__tag { position: absolute; top: 16px; z-index: 3; font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius-pill); background: rgba(5,9,16,0.7); backdrop-filter: blur(4px); }
.before-after__tag--before { left: 16px; }
.before-after__tag--after { right: 16px; }

/* -------------------------------------------------------------------------
   17. Coverage map
   ------------------------------------------------------------------------- */
.coverage-map { position: relative; max-width: 100%; }
.coverage-map svg { width: 100%; height: auto; display: block; color: var(--accent); }
.coverage-map__land { fill: var(--surface-2); stroke: var(--border-strong); stroke-width: 1.5; }
.coverage-map__inset { fill: var(--surface-2); stroke: var(--border-strong); stroke-width: 1.5; }
.coverage-map__inset-divider { stroke: var(--border); stroke-width: 1; }
.coverage-map .map-dot { fill: var(--accent-2); animation: mappulse 2.4s ease-in-out infinite; }
.coverage-map .map-dot:nth-of-type(odd) { animation-delay: 0.6s; }
.coverage-map .map-dot:nth-of-type(3n) { animation-delay: 1.2s; }
@keyframes mappulse { 0%, 100% { opacity: 0.55; r: 3; } 50% { opacity: 1; r: 5; } }
@media (prefers-reduced-motion: reduce) {
	.coverage-map .map-dot { animation: none; opacity: 0.9; }
}

/* -------------------------------------------------------------------------
   18. Contact / quote form
   ------------------------------------------------------------------------- */
.quote-panel { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); padding: clamp(24px, 4vw, 48px); }
.quote-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.quote-form__col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.quote-form__col-head svg { width: 24px; height: 24px; color: var(--accent-2); }
.quote-form__col-head strong { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 1rem; }
.quote-form__col-head span { display: block; font-size: 0.82rem; color: var(--text-muted); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
	width: 100%;
	background: rgba(255,255,255,0.03);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	padding: 13px 16px;
	color: #fff;
	font-size: 0.95rem;
	transition: border-color var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(30,139,255,0.06); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a7b3c6' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.field-char-count { text-align: right; font-size: 0.75rem; color: var(--text-faint); margin-top: 6px; }

.upload-drop {
	border: 1.5px dashed var(--border-strong);
	border-radius: var(--radius-sm);
	padding: 26px 14px;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.85rem;
	position: relative;
	transition: border-color var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.upload-drop:hover, .upload-drop.is-dragover { border-color: var(--accent); background: rgba(30,139,255,0.05); }
.upload-drop svg { width: 26px; height: 26px; margin: 0 auto 10px; color: var(--accent-2); }
.upload-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-drop small { display: block; margin-top: 6px; color: var(--text-faint); }

/* Anti-spam honeypot field: hidden from real visitors but still present in
   the DOM/tab order for spam bots to auto-fill. Deliberately NOT hidden via
   a large negative left offset (e.g. `left:-9999px`) — that classic pattern
   computes relative to the nearest positioned ancestor rather than the
   viewport, so depending on page layout it can land thousands of pixels off
   *either* edge and inflate `scrollWidth`, causing real horizontal-scroll
   bugs on some pages/widths. This clip-based technique keeps the element at
   its normal in-flow position (zero layout footprint) and only visually
   clips it to 1x1px, so it can never contribute to page overflow. */
.form-honeypot {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.form-status { margin-top: 16px; font-size: 0.9rem; display: none; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-status.is-visible { display: block; }
.form-status--success { background: rgba(34, 197, 94, 0.12); color: #6ee7a0; border: 1px solid rgba(34,197,94,0.35); }
.form-status--error { background: rgba(239, 68, 68, 0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.35); }

.form-lock-note { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-faint); margin-top: 14px; }
.form-lock-note svg { width: 14px; height: 14px; }

/* simpler two-field quote CTA form used inline in banners */
.quote-inline-form { display: flex; gap: 12px; flex-wrap: wrap; }
.quote-inline-form input { flex: 1; min-width: 220px; background: rgba(255,255,255,0.06); border: 1px solid var(--border-strong); border-radius: var(--radius-pill); padding: 15px 22px; color: #fff; }
.quote-inline-form input::placeholder { color: var(--text-faint); }

/* -------------------------------------------------------------------------
   19. CTA banner
   ------------------------------------------------------------------------- */
.cta-banner {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	padding: clamp(36px, 6vw, 64px);
	background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
	border: 1px solid var(--border);
	display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner::before {
	content: '';
	position: absolute; inset: 0;
	background: repeating-linear-gradient(115deg, transparent 0 60px, var(--accent-glow) 60px 64px, transparent 64px 140px);
	opacity: 0.35;
	mask-image: linear-gradient(to right, transparent, black 40%);
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__eyebrow { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; display: block; }
.cta-banner__actions { position: relative; z-index: 1; }
.cta-banner--image { min-height: 260px; align-items: flex-end; }
.cta-banner--image .cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner--image .cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.cta-banner--image .cta-banner__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,9,16,0.95) 20%, rgba(5,9,16,0.4) 100%); }

/* -------------------------------------------------------------------------
   20. Footer
   ------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border); padding-block: 70px 30px; background: var(--bg-alt); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; margin-bottom: 50px; }
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p { max-width: 32ch; }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.12em; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color var(--speed-fast) var(--ease); }
.footer-col a:hover { color: var(--accent-2); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid var(--border-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--accent); background: rgba(30,139,255,0.1); }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--text-faint); flex-wrap: wrap; gap: 12px; }
.footer-bottom a:hover { color: var(--accent-2); }

/* -------------------------------------------------------------------------
   21. Motion utilities (targeted by main.js / GSAP)
   ------------------------------------------------------------------------- */
.reveal, .reveal-up, .reveal-stagger > * { will-change: transform, opacity; }
.parallax-el { will-change: transform; }
.counted { font-variant-numeric: tabular-nums; }

/*
 * PROGRESSIVE ENHANCEMENT — reveal animations
 * ---------------------------------------------------------------------
 * .reveal-up / .reveal-stagger children are fully visible by default —
 * that's the rule directly above this comment (no opacity/transform set
 * here at all). The pre-animation hidden state below only ever applies
 * once main.js has confirmed GSAP + ScrollTrigger actually loaded AND the
 * visitor hasn't asked for reduced motion, at which point it adds
 * `animations-ready` to <html> (see initReveals() / bootstrapMotion()).
 *
 * Why this matters: previously the hidden state was set directly by GSAP
 * (`gsap.set(el, {opacity:0, y:44})`) as soon as the script ran, with a
 * ScrollTrigger deciding when to reveal it again. On mobile, ScrollTrigger's
 * trigger-position math can be off on first paint (browser chrome
 * collapsing, web fonts/images still loading and shifting layout), so a
 * section could get hidden and then never re-triggered until the page was
 * resized/refreshed — exactly the "blank until I scroll down and back up"
 * bug. Gating the hidden state behind a CSS class means: no JS = visible,
 * slow JS = visible until it's actually ready, and a ScrollTrigger
 * miscalculation can only ever affect the reveal *timing*, never leave
 * the section permanently blank (main.js also force-reveals everything
 * after a short failsafe timeout, belt-and-suspenders).
 */
.animations-ready .reveal-up { opacity: 0; transform: translateY(44px); }
.animations-ready .reveal-stagger > * { opacity: 0; transform: translateY(30px); }
.reveal-up.is-revealed,
.reveal-stagger > *.is-revealed { opacity: 1 !important; transform: none !important; }

/* -------------------------------------------------------------------------
   22. Responsive
   ------------------------------------------------------------------------- */
@media (min-width: 960px) {
	.primary-nav { display: block; }
}

@media (max-width: 959px) {
	.hero--split .hero__inner { grid-template-columns: 1fr; }
	.hero__media { order: -1; aspect-ratio: 4/3; }
	.section-head { grid-template-columns: 1fr; }
	.card-grid--3, .card-grid--asymmetric { grid-template-columns: repeat(2, 1fr); }
	.process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
	.process-step__connector { display: none; }
	.icon-feature-grid { grid-template-columns: 1fr; }
	.quote-form { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.metric-row { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
	/* The .grid-2/3/4 utility classes (used throughout the quote form, the
	   mockup builder's step layouts, and several page sections) had no
	   responsive rule at all before this fix, so they stayed a fixed 2/3/4
	   equal columns down to the smallest phone widths — cramming selects,
	   inputs and cards into columns far narrower than their content's
	   min-content size and forcing real horizontal page overflow (confirmed
	   via a Playwright breakpoint sweep at 320-414px on the pages that use
	   them). Collapsing to 2 columns at tablet width here, then 1 column at
	   phone width below, matches every other grid system in this file. */
	.grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.stats-bar__row { grid-auto-flow: row; grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.stat + .stat::before { display: none; }
	.card-grid--3, .card-grid--asymmetric { grid-template-columns: 1fr; }
	.testimonial { flex-direction: column; text-align: center; }
	.footer-top { grid-template-columns: 1fr; }
	.cta-banner { flex-direction: column; align-items: flex-start; }
	.nav-overlay__grid { grid-template-columns: 1fr; gap: 30px; }
	.metric-row { grid-template-columns: 1fr 1fr; }
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

	/* A long button label (e.g. a full-width primary CTA with icon) in the
	   uppercase display font, combined with .btn's white-space:nowrap, can
	   be a hair wider than the button's available space on the narrowest
	   phones — confirmed via a Playwright breakpoint sweep on the Design
	   Studio page's "Start My Design" button at 320px. At this width and
	   below, letting button text wrap (rather than forcing a single
	   unbroken line) removes that overflow; buttons are already centered so
	   a wrapped 2-line label still looks intentional rather than broken. */
	.btn { white-space: normal; text-align: center; }

	/* The header's inline "Get a Quote" pill sits right next to the
	   hamburger at this width, which is exactly the "control positioned so
	   it creates blank space" problem — the sticky bottom bar below takes
	   over that job here instead, so the header keeps just the hamburger. */
	.header-actions .btn--primary { display: none; }
	body { padding-bottom: 70px; }
}

/* -------------------------------------------------------------------------
   23. Mobile sticky Call / Get a Quote bar
   ------------------------------------------------------------------------- */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
	.mobile-cta-bar {
		display: flex;
		position: fixed;
		left: 0; right: 0; bottom: 0;
		z-index: 95;
		background: rgba(6, 11, 20, 0.96);
		backdrop-filter: blur(14px);
		border-top: 1px solid var(--border-strong);
		padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-right));
		gap: 10px;
		transition: transform var(--speed-fast) var(--ease);
	}
	.mobile-cta-bar.is-hidden { transform: translateY(100%); }
}
.mobile-cta-bar__btn {
	flex: 1;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	padding: 13px 12px;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}
.mobile-cta-bar__btn svg { width: 16px; height: 16px; }
.mobile-cta-bar__btn--call { border: 1px solid var(--border-strong); color: #fff; }
.mobile-cta-bar__btn--quote { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }
