/* ==========================================================================
   Schoonvermogen — Homepage Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
	--primary: #010242;
	--primary-light: #0b1a5c;
	--accent: #16C5EB;
	--accent-dark: #0FA7C9;
	--white: #FFFFFF;
	--grey-light: #F5F7FA;
	--grey-border: #E4E9F0;
	--text-body: #4B5468;
	--text-muted: #8890A3;
	--text-light: rgba(255, 255, 255, 0.72);
	--text-light-strong: rgba(255, 255, 255, 0.9);

	--radius-large: 28px;
	--radius-medium: 20px;
	--radius-small: 14px;
	--radius-pill: 999px;

	--shadow-soft: 0 4px 20px rgba(1, 2, 66, 0.06);
	--shadow-medium: 0 12px 40px rgba(1, 2, 66, 0.10);
	--shadow-strong: 0 20px 60px rgba(1, 2, 66, 0.18);

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

	--container-width: 1240px;
	--section-pad: clamp(64px, 8vw, 120px);

	--ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text-body);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4, p { margin: 0; }

button { font: inherit; cursor: pointer; border: none; background: none; }

input { font: inherit; }

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 40px);
}

.text-accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent-dark);
	margin-bottom: 14px;
}

.eyebrow--light { color: var(--accent); }

.section-title {
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--primary);
}

.section-title--light { color: var(--white); }

.section-header { margin-bottom: clamp(32px, 5vw, 56px); }

.section-header--center { text-align: center; max-width: 640px; margin-inline: auto; }

.section-header--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}

.btn--sm { padding: 12px 22px; font-size: 14px; }

.btn--accent {
	background: var(--accent);
	color: var(--primary);
	box-shadow: 0 8px 24px rgba(22, 197, 235, 0.35);
}

.btn--accent:hover {
	background: var(--accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(22, 197, 235, 0.45);
}

.btn--outline-light {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}

.btn--icon-only {
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	background: var(--primary);
	color: var(--white);
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.btn--icon-only:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn__icon { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .btn__icon { transform: translateX(3px); }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 15px;
	color: var(--primary);
	transition: gap 0.2s var(--ease);
}

.link-arrow:hover { gap: 12px; }
.link-arrow--light { color: var(--white); }
.link-arrow--accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(1, 2, 66, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	transition: box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(1, 2, 66, 0.25); }

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

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.site-logo__text {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--white);
}

.site-logo__text strong { font-weight: 800; }

.site-nav { display: flex; }

.nav-menu {
	display: flex;
	align-items: center;
	gap: 36px;
}

.nav-menu__item a,
.nav-menu li a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--text-light);
	transition: color 0.2s var(--ease);
}

.nav-menu__item a:hover,
.nav-menu li a:hover { color: var(--white); }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 6px;
}

.nav-toggle span {
	width: 22px;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: var(--primary);
	padding: 8px 20px 24px;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile .nav-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
.nav-mobile .nav-menu li { width: 100%; }
.nav-mobile .nav-menu a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }
.nav-mobile__cta { margin-top: 16px; align-self: flex-start; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
	background: linear-gradient(160deg, var(--primary) 0%, #061759 55%, #0a2a7a 100%);
	padding-block: clamp(48px, 7vw, 88px);
	overflow: hidden;
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(32px, 5vw, 64px);
}

.hero__title {
	font-size: clamp(34px, 4.6vw, 52px);
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -0.015em;
	color: var(--white);
	margin-bottom: 22px;
}

.hero__subtitle {
	font-size: 16.5px;
	line-height: 1.65;
	color: var(--text-light);
	max-width: 460px;
	margin-bottom: 34px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--white);
	font-size: 13.5px;
	font-weight: 500;
}

.hero-badge__icon { color: var(--accent); display: inline-flex; }

.hero__media {
	border-radius: var(--radius-large);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------------------
   7. Trust bar
   -------------------------------------------------------------------------- */
.trust-bar {
	background: var(--white);
	border-bottom: 1px solid var(--grey-border);
	padding-block: 28px;
}

.trust-bar__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 24px;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1 1 180px;
}

.trust-item__icon {
	color: var(--accent-dark);
	flex-shrink: 0;
	display: inline-flex;
}

.trust-item__text { display: flex; flex-direction: column; gap: 2px; }
.trust-item__text strong { font-size: 14px; color: var(--primary); font-weight: 700; }
.trust-item__text span { font-size: 12.5px; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   8. Problem
   -------------------------------------------------------------------------- */
.problem { background: var(--grey-light); }

.problem__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: stretch;
	min-height: clamp(420px, 42vw, 560px);
}

.problem__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 72px);
}

.checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }

.checklist__item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--primary);
}

.checklist__icon { color: var(--accent-dark); display: inline-flex; flex-shrink: 0; }

.checklist--compact .checklist__item { font-weight: 500; color: var(--text-body); font-size: 14.5px; }

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

/* --------------------------------------------------------------------------
   9. Solution
   -------------------------------------------------------------------------- */
.solution { padding-block: var(--section-pad); }

.solution__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.card {
	background: var(--white);
	border: 1px solid var(--grey-border);
	border-radius: var(--radius-medium);
	padding: 30px 26px;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--radius-small);
	background: rgba(22, 197, 235, 0.1);
	color: var(--accent-dark);
	margin-bottom: 20px;
}

.card__title { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.card__text { font-size: 14.5px; line-height: 1.6; color: var(--text-body); }

/* --------------------------------------------------------------------------
   10. Robots
   -------------------------------------------------------------------------- */
.robots {
	background: var(--primary);
	padding-block: var(--section-pad);
}

.robots__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.robot-card {
	background: linear-gradient(155deg, #061759 0%, #0a2166 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-large);
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 0;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.robot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }

.robot-card__media { flex: 1 1 45%; align-self: stretch; }
.robot-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }

.robot-card__content { flex: 1 1 55%; padding: 32px; }

.robot-card__title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.robot-card__text { font-size: 14.5px; line-height: 1.65; color: var(--text-light); margin-bottom: 20px; }

/* --------------------------------------------------------------------------
   11. Lease (Kopen / Leasen)
   -------------------------------------------------------------------------- */
.lease { padding-block: var(--section-pad); background: var(--grey-light); }

.lease__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.lease-card {
	background: var(--white);
	border: 1px solid var(--grey-border);
	border-radius: var(--radius-large);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.lease-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }

.lease-card__body { padding: 32px 32px 0; position: relative; }
.lease-card__title { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.lease-card__text { font-size: 14.5px; line-height: 1.6; color: var(--text-body); margin-bottom: 22px; max-width: 90%; }

.lease-card__body .btn--icon-only { position: absolute; top: 32px; right: 32px; }

.lease-card__media { margin-top: 24px; }
.lease-card__media img { width: 100%; height: 220px; object-fit: cover; }

/* --------------------------------------------------------------------------
   12. Process
   -------------------------------------------------------------------------- */
.process { padding-block: var(--section-pad); }

.process__steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	counter-reset: step;
}

.process-step {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.process-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--white);
	border: 1.5px solid var(--grey-border);
	color: var(--primary);
	box-shadow: var(--shadow-soft);
}

.process-step__number {
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--accent-dark);
}

.process-step__title { font-size: 16px; font-weight: 700; color: var(--primary); }
.process-step__text { font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }

.process-step__connector {
	position: absolute;
	top: 28px;
	left: calc(100% - 10px + 10px);
	width: calc(100% - 36px);
	height: 1.5px;
	background: repeating-linear-gradient(90deg, var(--grey-border) 0 6px, transparent 6px 12px);
	left: 56px;
}

/* --------------------------------------------------------------------------
   13. Why Schoonvermogen
   -------------------------------------------------------------------------- */
.why { padding-block: var(--section-pad); background: var(--grey-light); }

.why__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.why-card__media {
	position: relative;
	border-radius: var(--radius-medium);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	margin-bottom: 16px;
}

.why-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.why-card:hover .why-card__media img { transform: scale(1.05); }

.why-card__icon {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(1, 2, 66, 0.75);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	color: var(--accent);
}

.why-card__title { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.why-card__text { font-size: 13px; line-height: 1.5; color: var(--text-muted); }

/* --------------------------------------------------------------------------
   14. Clean water impact
   -------------------------------------------------------------------------- */
.water {
	position: relative;
	background: var(--primary);
	overflow: hidden;
	padding-block: var(--section-pad);
}

.water__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.water__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }

.water::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(1,2,66,0.96) 20%, rgba(1,2,66,0.55) 65%, rgba(1,2,66,0.25) 100%);
	z-index: 0;
}

.water__content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	align-items: center;
	gap: 40px;
}

.water__description {
	font-size: 15.5px;
	line-height: 1.7;
	color: var(--text-light);
	max-width: 460px;
	margin-block: 20px 30px;
}

.water__card {
	background: rgba(6, 23, 89, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-large);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	backdrop-filter: blur(6px);
	margin-left: auto;
	max-width: 320px;
}

.water-stat {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--white);
	font-size: 14.5px;
	font-weight: 600;
}

.water-stat__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(22, 197, 235, 0.15);
	color: var(--accent);
	flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. Final CTA
   -------------------------------------------------------------------------- */
.final-cta {
	background: linear-gradient(160deg, var(--primary) 0%, #061759 100%);
	padding-block: clamp(56px, 7vw, 96px);
}

.final-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.final-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--primary);
	padding-top: clamp(48px, 6vw, 72px);
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr) 1.2fr;
	gap: 32px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col__title {
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 18px;
}

.footer-col__list { display: flex; flex-direction: column; gap: 12px; }
.footer-col__list a,
.footer-col__list span { font-size: 13.5px; color: var(--text-light); }
.footer-col__list a:hover { color: var(--accent); }

.footer-col__list--contact li { display: flex; align-items: center; gap: 10px; }
.footer-col__icon { color: var(--accent); display: inline-flex; flex-shrink: 0; }

.footer-col__tagline {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--text-light);
	margin-top: 14px;
	max-width: 240px;
}

.footer-col__text { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }

.site-logo--footer .site-logo__text { color: var(--white); }

.newsletter-form {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-pill);
	padding: 5px 5px 5px 16px;
}

.newsletter-form input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--white);
	font-size: 13.5px;
	padding: 8px 0;
}

.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { outline: none; }

.newsletter-form button {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background-color 0.2s var(--ease);
}

.newsletter-form button:hover { background: var(--accent-dark); }

.footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding-block: 24px;
	font-size: 12.5px;
	color: var(--text-muted);
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer__social a:hover { border-color: var(--accent); color: var(--accent); }

.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--white); }

/* --------------------------------------------------------------------------
   17. Scroll-reveal animation hooks (see home.js)
   -------------------------------------------------------------------------- */
[data-animate] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="fade-in"] { transform: none; }

[data-animate].is-visible {
	opacity: 1;
	transform: none;
}

/* --------------------------------------------------------------------------
   18. Responsive — Tablet (≤ 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__media { order: -1; }
	.hero__subtitle { max-width: none; }

	.solution__grid { grid-template-columns: repeat(2, 1fr); }
	.robots__grid { grid-template-columns: 1fr; }
	.robot-card { flex-direction: column; }
	.robot-card__media { width: 100%; }
	.robot-card__media img { min-height: 260px; }

	.lease__grid { grid-template-columns: 1fr; }
	.process__steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
	.process-step__connector { display: none; }
	.why__grid { grid-template-columns: repeat(3, 1fr); }

	.problem__grid { grid-template-columns: 1fr; }
	.problem__media img { aspect-ratio: 16/9; }

	.water__content { grid-template-columns: 1fr; }
	.water__card { margin-left: 0; max-width: none; }

	.footer__grid { grid-template-columns: repeat(3, 1fr); }
	.footer-col--brand { grid-column: 1 / -1; }
	.footer-col--newsletter { grid-column: 1 / -1; }

	.site-nav { display: none; }
	.nav-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   19. Responsive — Mobile (≤ 640px)
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
	.trust-bar__inner { flex-direction: column; align-items: flex-start; gap: 18px; }

	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { justify-content: center; }

	.solution__grid { grid-template-columns: 1fr; }
	.why__grid { grid-template-columns: repeat(2, 1fr); }
	.process__steps { grid-template-columns: 1fr 1fr; }

	.lease-card__body { padding: 26px 22px 0; }
	.lease-card__body .btn--icon-only { position: static; margin-bottom: 22px; }
	.lease-card__text { max-width: 100%; }

	.section-header--split { flex-direction: column; align-items: flex-start; }

	.final-cta__inner { flex-direction: column; align-items: flex-start; text-align: left; }
	.final-cta__actions { width: 100%; }
	.final-cta__actions .btn { flex: 1 1 auto; justify-content: center; }

	.footer__grid { grid-template-columns: 1fr 1fr; }
	.footer-col--brand { grid-column: 1 / -1; }
	.footer-col--newsletter { grid-column: 1 / -1; }

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

@media (max-width: 420px) {
	.why__grid { grid-template-columns: 1fr 1fr; }
	.process__steps { grid-template-columns: 1fr 1fr; }
	.footer__grid { grid-template-columns: 1fr; }
}
