/* ==================================================================
   CW Backflow theme styles
   Design tokens pulled directly from the brand logo files.
   ================================================================== */

:root {
	/* Brand colors (sampled from logo) */
	--navy-deep: #101D2E;   /* dark logo background */
	--navy: #1C3048;        /* logo text and icon */
	--navy-mid: #22374F;    /* panels on navy */
	--blue: #2C8FC8;        /* accent blue (valve stem, arrow) */
	--blue-hover: #3AA0DB;
	--steel: #94A3BA;       /* gray arrow */
	--light: #F1F5F9;       /* light section background */
	--white: #F9FAFC;       /* logo light background */
	--pure-white: #FFFFFF;
	--text: #24303E;
	--text-dim: #5B6B7D;

	/* Typography */
	--font-display: 'Montserrat', sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;

	/* Layout */
	--nav-h: 104px;
	--max-w: 1200px;
	--radius: 10px;
	--radius-pill: 25px;
	--shadow: 0 8px 30px rgba(16, 29, 46, 0.10);
	--shadow-lift: 0 16px 44px rgba(16, 29, 46, 0.16);
	--transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--pure-white);
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--navy);
	line-height: 1.18;
	margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1.1em; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }
.center { text-align: center; }

.section { padding: 64px 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy-deep); }
.section-navy h2, .on-dark { color: var(--white); }
.section-intro { max-width: 680px; margin: 0 auto 2.2em; color: var(--steel); }

.eyebrow {
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 0.9em;
}
.eyebrow.on-dark { color: var(--blue); }

/* ----------------------------- Buttons --------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 30px;
	border-radius: var(--radius-pill);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn-primary {
	background: var(--blue);
	color: var(--pure-white);
	box-shadow: 0 6px 20px rgba(44, 143, 200, 0.35);
}
.btn-primary:hover {
	background: var(--blue-hover);
	color: var(--pure-white);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(44, 143, 200, 0.45);
}
.btn-ghost {
	background: rgba(249, 250, 252, 0.06);
	color: var(--white);
	border-color: rgba(249, 250, 252, 0.55);
	backdrop-filter: blur(3px);
}
.btn-ghost:hover { background: rgba(249, 250, 252, 0.14); color: var(--pure-white); border-color: var(--pure-white); }
.btn-full { width: 100%; justify-content: center; }

/* --------------------------- Navigation -------------------------- */
.site-nav {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: var(--nav-h);
	background: rgba(16, 29, 46, 0.92);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 100;
	transition: box-shadow var(--transition), background var(--transition);
}
.site-nav.scrolled { background: rgba(16, 29, 46, 0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.35); }

.nav-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	height: 100%;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* Brand: client logo image (transparent PNG from media library) */
.brand { display: flex; align-items: center; color: var(--white); }
.brand:hover { color: var(--white); }
.brand-img { height: 84px; width: auto; display: block; }
.brand-img-footer { height: 48px; margin-bottom: 10px; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
	color: rgba(249, 250, 252, 0.85);
	font-weight: 500;
	font-size: 0.95rem;
	transition: color var(--transition);
}
.nav-links a:hover { color: var(--pure-white); }
.nav-links .nav-cta {
	padding: 9px 20px;
	border-radius: var(--radius-pill);
	border: 1.5px solid var(--blue);
	color: var(--pure-white);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.85rem;
}
.nav-links .nav-cta:hover { background: var(--blue); }
.nav-links .nav-phone {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--blue);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
}
.nav-links .nav-phone:hover { color: var(--blue-hover); }

.nav-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: none;
	border-radius: 8px;
	padding: 10px;
	cursor: pointer;
	z-index: 201;
}
.nav-hamburger span {
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--white);
	transition: transform var(--transition), opacity var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ----------------------------- */
.hero {
	position: relative;
	height: 100vh;
	height: 100svh;
	min-height: 620px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--navy-deep);
}
.hero-parallax {
	position: absolute;
	inset: -12% 0;
	background: radial-gradient(ellipse at 30% 20%, #1B3352 0%, var(--navy-deep) 55%),
				var(--navy-deep);
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.hero-parallax.has-photo { background-size: cover; background-position: center; }
.hero-pattern { position: absolute; inset: 0; width: 100%; height: 100%; }

.flow-path { stroke-dasharray: 6 14; animation: flowmove 9s linear infinite; }
.fp-2 { animation-duration: 12s; animation-delay: -3s; }
.fp-3 { animation-duration: 10s; animation-delay: -6s; }
.fp-4 { animation-duration: 14s; animation-delay: -2s; }
@keyframes flowmove { to { stroke-dashoffset: -200; } }

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16,29,46,0.55) 0%, rgba(16,29,46,0.35) 45%, rgba(16,29,46,0.82) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 880px;
	padding: 0 24px;
	text-align: center;
}
.hero-eyebrow {
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 1.2em;
}
.hero h1 { color: var(--pure-white); margin-bottom: 0.5em; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
	color: rgba(249, 250, 252, 0.82);
	font-size: 1.12rem;
	max-width: 660px;
	margin: 0 auto 2em;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6em; }
.hero-urgent {
	color: var(--steel);
	font-size: 0.92rem;
	font-weight: 500;
}

.hero-scroll {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 24px;
	height: 40px;
	border: 2px solid rgba(148, 163, 186, 0.6);
	border-radius: 14px;
}
.hero-scroll span {
	position: absolute;
	top: 7px; left: 50%;
	width: 4px; height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: var(--blue);
	animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
	0%, 100% { transform: translateY(0); opacity: 1; }
	60% { transform: translateY(12px); opacity: 0.2; }
}

/* ---------------------------- Stat bar --------------------------- */
.stat-bar { background: var(--navy); padding: 34px 0; }
.stat-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.stat-big {
	display: block;
	font-family: var(--font-display);
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--blue);
	line-height: 1.1;
}
.stat-label {
	display: block;
	color: rgba(249, 250, 252, 0.75);
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-top: 4px;
}

/* ---------------------------- AWWA mark --------------------------- */
.awwa-mark { display: inline-block; }
.awwa-stat {
	height: 44px;
	width: auto;
	color: #00ACEC; /* AWWA official brand cyan */
	margin-bottom: 2px;
}
.stat-awwa { display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.awwa-contact { height: 46px; width: auto; color: #00ACEC; flex-shrink: 0; }
.cert-badge { display: flex; align-items: center; gap: 16px; }
.cert-badge p { margin-bottom: 0; }
.awwa-footer {
	height: 20px;
	width: auto;
	color: #00ACEC;
	vertical-align: -4px;
	margin-right: 8px;
}

/* --------------------------- Split layout ------------------------ */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 0 0 1.8em; }
.check-list li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 12px;
	font-weight: 500;
}
.check-list li::before {
	content: '';
	position: absolute;
	left: 0; top: 3px;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: var(--blue);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1.2 14.6l-4.2-4.2 1.7-1.7 2.5 2.5 5.5-5.5 1.7 1.7-7.2 7.2z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 100 20 10 10 0 000-20zm-1.2 14.6l-4.2-4.2 1.7-1.7 2.5 2.5 5.5-5.5 1.7 1.7-7.2 7.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* -------------------------- Valve diagram ------------------------ */
.valve-diagram {
	width: 100%;
	background: linear-gradient(160deg, #F4F8FB 0%, #E8EFF6 100%);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 18px;
}
.diagram-label {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	fill: var(--navy);
}
.diagram-label-dim { fill: var(--text-dim); }
.diagram-caption {
	font-size: 0.9rem;
	color: var(--text-dim);
	margin-top: 14px;
	text-align: center;
}
.flow-forward line { stroke-dasharray: 8 10; animation: flowmove 3.5s linear infinite; }
.valve-flap { transform-origin: 226px 170px; animation: flapopen 5s ease-in-out infinite; }
.valve-flap-2 { transform-origin: 294px 170px; animation-delay: 0.4s; }
@keyframes flapopen {
	0%, 15% { transform: rotate(0deg); }
	35%, 75% { transform: rotate(16deg); }
	95%, 100% { transform: rotate(0deg); }
}
.flow-blocked { animation: blockpulse 5s ease-in-out infinite; }
@keyframes blockpulse {
	0%, 55% { opacity: 0.45; }
	70%, 85% { opacity: 1; }
	100% { opacity: 0.45; }
}

/* ----------------------------- Cards ----------------------------- */
.card-grid {
	display: grid;
	gap: 26px;
	margin-top: 2.4em;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
	background: var(--pure-white);
	border-radius: var(--radius);
	padding: 34px 28px;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card h3 { margin-bottom: 0.5em; }
.card p { margin: 0; font-size: 0.96rem; color: var(--text-dim); }

.card-icon {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: rgba(44, 143, 200, 0.12);
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.card-icon svg { width: 32px; height: 32px; }

.card-dark {
	background: var(--navy-mid);
	border: 1px solid rgba(44, 143, 200, 0.25);
	box-shadow: none;
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: var(--steel); }
.card-dark:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }

/* -------------------------- Parallax bands ----------------------- */
.band {
	position: relative;
	padding: 96px 24px;
	overflow: hidden;
	background: var(--navy-deep);
	text-align: center;
}
.band-parallax {
	position: absolute;
	inset: -18% 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.band-1 .band-parallax { background-image: linear-gradient(120deg, #16293F 0%, #101D2E 60%, #1B3352 100%); }
.band-2 .band-parallax { background-image: linear-gradient(300deg, #16293F 0%, #101D2E 60%, #1B3352 100%); }
.band.has-photo .band-parallax { background-image: none; } /* inline style supplies the photo */
.band-overlay { position: absolute; inset: 0; background: rgba(16, 29, 46, 0.72); }
.band-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.band-content h2 { color: var(--pure-white); }
.band-content p { color: rgba(249, 250, 252, 0.82); margin-bottom: 1.6em; }

/* ------------------------------ Steps ---------------------------- */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	margin-top: 2.6em;
	counter-reset: step;
}
.step { position: relative; padding-top: 8px; }
.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--navy);
	color: var(--blue);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: 18px;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: 0.94rem; color: var(--text-dim); margin: 0; }

/* ------------------------------- FAQ ------------------------------ */
.faq-item {
	background: var(--pure-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-top: 14px;
	overflow: hidden;
}
.faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 56px 20px 24px;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--navy);
	position: relative;
	transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '';
	position: absolute;
	right: 22px;
	top: 50%;
	width: 12px;
	height: 12px;
	margin-top: -8px;
	border-right: 2.5px solid var(--blue);
	border-bottom: 2.5px solid var(--blue);
	transform: rotate(45deg);
	transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq-item summary:hover { color: var(--blue); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; color: var(--text-dim); }

/* ------------------------------ Team ------------------------------ */
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 420px));
	gap: 40px;
	justify-content: center;
	margin-top: 2.6em;
}
.team-card {
	background: var(--pure-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 36px 32px;
	text-align: center;
	transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.team-photo { width: 140px; height: 140px; margin: 0 auto 22px; border-radius: 50%; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-placeholder {
	width: 100%; height: 100%;
	background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.team-placeholder span {
	font-family: var(--font-display);
	font-size: 3rem;
	font-weight: 800;
	color: var(--blue);
}
.team-role {
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 1em;
}
.team-card > p:last-child { margin: 0; color: var(--text-dim); font-size: 0.96rem; }

/* ----------------------------- Contact ---------------------------- */
.section-contact { background: var(--light); }
.section-contact .split { align-items: start; }

.contact-phone-big {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 800;
	color: var(--navy);
	margin: 6px 0 26px;
}
.contact-phone-big:hover { color: var(--blue); }
.contact-phone-big svg { color: var(--blue); }

.contact-details p { margin-bottom: 1.1em; color: var(--text-dim); }
.contact-details strong { color: var(--navy); }

.split-form {
	background: var(--pure-white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 36px;
}
.contact-form label {
	display: block;
	font-family: var(--font-display);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--text);
	background: var(--white);
	border: 1.5px solid #D7E0EA;
	border-radius: 8px;
	transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(44, 143, 200, 0.18);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.form-notice {
	padding: 14px 18px;
	border-radius: 8px;
	font-weight: 500;
	margin-bottom: 20px;
}
.form-success { background: #E5F5EC; color: #1E6B43; border: 1px solid #9FD8B8; }
.form-error { background: #FBEAEA; color: #93342C; border: 1px solid #EBB5B0; }

/* ------------------------------ Footer ---------------------------- */
.site-footer { background: var(--navy-deep); color: var(--steel); }
.footer-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 56px 24px 40px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.3fr;
	gap: 44px;
}
.footer-tag { margin: 14px 0 4px; font-size: 0.9rem; }
.footer-area { font-size: 0.9rem; margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--steel); font-size: 0.95rem; }
.footer-links a:hover { color: var(--white); }
.footer-phone {
	display: inline-block;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 6px;
}
.footer-phone:hover { color: var(--blue); }
.footer-email { display: inline-block; margin-bottom: 14px; }
.footer-note { font-size: 0.88rem; margin: 0; }
.footer-bottom {
	border-top: 1px solid rgba(148, 163, 186, 0.18);
	padding: 20px 24px;
	text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; }

/* ------------------------ Reveal animations ----------------------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.flow-path, .flow-forward line, .valve-flap, .flow-blocked, .hero-scroll span { animation: none !important; }
	html { scroll-behavior: auto; }
}

/* --------------------------- Default page ------------------------- */
.page-default { padding: calc(var(--nav-h) + 48px) 0 64px; }
.page-default .entry-content { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ============================ Responsive ========================== */

@media (max-width: 1024px) {
	/* Nav collapses to hamburger below tablet landscape */
	.nav-links {
		position: fixed;
		inset: 0;
		background: rgba(16, 29, 46, 0.98);
		backdrop-filter: blur(12px);
		flex-direction: column;
		justify-content: center;
		gap: 30px;
		opacity: 0;
		pointer-events: none;
		transition: opacity var(--transition);
		z-index: 200;
	}
	.nav-links.mobile-open { opacity: 1; pointer-events: auto; }
	.nav-links a { font-size: 1.2rem; }
	.nav-hamburger { display: flex; }

	.cards-4 { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.split { gap: 44px; }
}

@media (max-width: 768px) {
	:root { --nav-h: 88px; }
	.section { padding: 48px 0; }

	.split { grid-template-columns: 1fr; }
	.cards-3 { grid-template-columns: 1fr; }
	.stat-inner { grid-template-columns: repeat(2, 1fr); gap: 26px; }
	.team-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; gap: 0; }
	.footer-inner { grid-template-columns: 1fr; gap: 32px; }
	.band { padding: 72px 24px; }

	/* Parallax off on mobile */
	.hero-parallax, .band-parallax {
		inset: 0;
		transform: none !important;
		will-change: auto;
		transition: none;
	}
}

@media (max-width: 560px) {
	.cards-4 { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.hero-ctas { flex-direction: column; align-items: stretch; }
	.hero-ctas .btn { justify-content: center; }
	.brand-img { height: 64px; }
	.split-form { padding: 26px 20px; }
}

@media (max-width: 480px) {
	:root { --nav-h: 80px; }
	body { font-size: 16px; }
	.stat-inner { grid-template-columns: repeat(2, 1fr); }
	.stat-big { font-size: 1.5rem; }
	.brand-img { height: 56px; }
}
