/* =========================================================
   AskImmi — main stylesheet
   Modern app-marketing design system
   ========================================================= */

:root {
	--color-primary: #1447e6;
	--color-primary-dark: #0f2f9e;
	--color-primary-light: #eaefff;
	--color-accent: #14b8a6;
	--color-accent-light: #e3faf6;
	--color-ink: #10172a;
	--color-body: #3f4657;
	--color-muted: #6b7280;
	--color-line: #e6e9f2;
	--color-surface: #ffffff;
	--color-surface-alt: #f6f8fc;
	--color-surface-dark: #0d1330;

	--font-heading: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-full: 999px;

	--shadow-sm: 0 1px 2px rgba(16, 23, 42, 0.06);
	--shadow-md: 0 8px 24px rgba(16, 23, 42, 0.08);
	--shadow-lg: 0 20px 48px rgba(16, 23, 42, 0.14);

	--container-w: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-body);
	background: var(--color-surface);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
ul, ol { padding-left: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-ink);
	line-height: 1.2;
	margin: 0 0 16px;
	font-weight: 700;
	letter-spacing: -0.01em;
}
p { margin: 0 0 16px; }
.container {
	max-width: var(--container-w);
	margin: 0 auto;
	padding: 0 24px;
}
section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--alt { background: var(--color-surface-alt); }
.section--dark { background: var(--color-surface-dark); color: #cfd6ee; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #ffffff; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	border-radius: var(--radius-full);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
	border: 2px solid transparent;
	cursor: pointer;
}
.btn--primary {
	background: var(--color-primary);
	color: #fff;
	box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); color: #fff; }
.btn--secondary {
	background: var(--color-surface);
	color: var(--color-primary);
	border-color: var(--color-line);
}
.btn--secondary:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.btn--ghost {
	background: transparent;
	color: var(--color-ink);
	border-color: currentColor;
	opacity: 0.9;
}
.btn--ghost:hover { opacity: 1; transform: translateY(-2px); }
.site-footer .btn--ghost { color: #dfe4f5; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn[data-icon]::before {
	content: '';
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	display: inline-block;
}
.btn[data-icon="apple"]::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M16.365 1.43c0 1.14-.417 2.15-1.25 3.03-.833.88-1.844 1.393-3.033 1.34-.09-1.09.417-2.19 1.24-3.06.87-.9 2.09-1.42 3.043-1.31zM20.9 17.02c-.55 1.28-1.22 2.55-2.13 3.7-.83 1.03-1.7 2.06-3.02 2.08-1.28.03-1.7-.75-3.17-.75-1.47 0-1.94.73-3.15.78-1.27.05-2.25-1.12-3.09-2.14-1.68-2.05-3-5.8-1.25-8.35.87-1.27 2.24-2.06 3.72-2.09 1.24-.02 2.4.83 3.16.83.75 0 2.16-1.02 3.63-.87.62.03 2.36.25 3.48 1.87-.09.05-2.08 1.2-2.06 3.62.02 2.9 2.54 3.86 2.57 3.87z'/%3E%3C/svg%3E");
}
.btn--secondary[data-icon="apple"]::before,
.btn--ghost[data-icon="apple"]::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310172a'%3E%3Cpath d='M16.365 1.43c0 1.14-.417 2.15-1.25 3.03-.833.88-1.844 1.393-3.033 1.34-.09-1.09.417-2.19 1.24-3.06.87-.9 2.09-1.42 3.043-1.31zM20.9 17.02c-.55 1.28-1.22 2.55-2.13 3.7-.83 1.03-1.7 2.06-3.02 2.08-1.28.03-1.7-.75-3.17-.75-1.47 0-1.94.73-3.15.78-1.27.05-2.25-1.12-3.09-2.14-1.68-2.05-3-5.8-1.25-8.35.87-1.27 2.24-2.06 3.72-2.09 1.24-.02 2.4.83 3.16.83.75 0 2.16-1.02 3.63-.87.62.03 2.36.25 3.48 1.87-.09.05-2.08 1.2-2.06 3.62.02 2.9 2.54 3.86 2.57 3.87z'/%3E%3C/svg%3E");
}
.site-footer .btn--ghost[data-icon="apple"]::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M16.365 1.43c0 1.14-.417 2.15-1.25 3.03-.833.88-1.844 1.393-3.033 1.34-.09-1.09.417-2.19 1.24-3.06.87-.9 2.09-1.42 3.043-1.31zM20.9 17.02c-.55 1.28-1.22 2.55-2.13 3.7-.83 1.03-1.7 2.06-3.02 2.08-1.28.03-1.7-.75-3.17-.75-1.47 0-1.94.73-3.15.78-1.27.05-2.25-1.12-3.09-2.14-1.68-2.05-3-5.8-1.25-8.35.87-1.27 2.24-2.06 3.72-2.09 1.24-.02 2.4.83 3.16.83.75 0 2.16-1.02 3.63-.87.62.03 2.36.25 3.48 1.87-.09.05-2.08 1.2-2.06 3.62.02 2.9 2.54 3.86 2.57 3.87z'/%3E%3C/svg%3E");
}
.btn[data-icon="google"]::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2334A853' d='M3.6 2.7 14 12l3-3L4.7 2c-.4-.2-.8 0-1.1.7Z'/%3E%3Cpath fill='%23EA4335' d='M3.6 2.7 3.5 3v18l.1.3L14 12 3.6 2.7Z'/%3E%3Cpath fill='%23FBBC05' d='M14 12 3.6 21.3c.3.7.7.9 1.1.7l12.3-7-3-3Z'/%3E%3Cpath fill='%234285F4' d='m20.8 10.7-3.8-2.2-3 3.5 3 3.5 3.8-2.2c1-.6 1-1.9 0-2.6Z'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--color-line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 88px;
}
.site-branding { display: flex; align-items: center; flex: none; }
.askimmi-brand-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.askimmi-brand-logo {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}
.askimmi-brand-logo--header {
	width: 112px;
	max-height: 70px;
}
.askimmi-brand-logo--footer {
	width: 150px;
	max-height: 94px;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: 28px;
}
.primary-menu, .footer-menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	flex-wrap: wrap;
}
.primary-menu a {
	color: var(--color-ink);
	font-weight: 600;
	font-size: 15px;
}
.primary-menu a:hover { color: var(--color-primary); }
.primary-menu li.current-menu-item > a { color: var(--color-primary); }

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--color-line);
	background: #fff;
	cursor: pointer;
}
.menu-toggle__bar {
	width: 20px;
	height: 2px;
	background: var(--color-ink);
	margin: 0 auto;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
	padding: 88px 0 72px;
	background:
		radial-gradient(1100px 460px at 85% -10%, rgba(20, 71, 230, 0.10), transparent 60%),
		radial-gradient(700px 400px at 5% 10%, rgba(20, 184, 166, 0.12), transparent 60%),
		var(--color-surface);
	overflow: hidden;
}
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 56px;
	align-items: center;
}
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--color-primary-light);
	color: var(--color-primary);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: var(--radius-full);
	margin-bottom: 20px;
}
.hero h1 {
	font-size: clamp(34px, 4.4vw, 52px);
	margin-bottom: 20px;
}
.hero p.lead {
	font-size: 19px;
	color: var(--color-body);
	max-width: 560px;
}
.hero__actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-top: 28px;
}
.hero__visual {
	position: relative;
	display: flex;
	justify-content: center;
}
.phone-mock {
	width: 280px;
	max-width: 100%;
	border-radius: 40px;
	background: linear-gradient(160deg, var(--color-surface-dark), #1c2452);
	padding: 18px;
	box-shadow: var(--shadow-lg);
	color: #fff;
	position: relative;
}
.phone-mock::before {
	content: '';
	position: absolute;
	top: 12px; left: 50%;
	transform: translateX(-50%);
	width: 60px; height: 6px;
	border-radius: 4px;
	background: rgba(255,255,255,0.25);
}
.phone-mock__screen {
	margin-top: 22px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 22px;
	padding: 18px;
}
.phone-mock__card {
	background: rgba(255,255,255,0.08);
	border-radius: 14px;
	padding: 12px 14px;
	margin-bottom: 10px;
	font-size: 13px;
}
.phone-mock__card strong { display: block; font-size: 12.5px; color: #9fd8ff; margin-bottom: 3px; }
.phone-mock__badge {
	position: absolute;
	background: #fff;
	color: var(--color-ink);
	border-radius: 14px;
	padding: 10px 14px;
	box-shadow: var(--shadow-md);
	font-size: 13px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
}
.phone-mock__badge--one { top: 8%; left: -12%; }
.phone-mock__badge--two { bottom: 10%; right: -14%; }
.phone-mock__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-accent); }

/* ---------- Eyebrow / section headers ---------- */
.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

/* ---------- Feature grid ---------- */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.feature-card {
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 28px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--color-primary-light);
	color: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--color-muted); margin-bottom: 0; font-size: 15.5px; }

/* ---------- Two-up content blocks ---------- */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.split--reverse .split__visual { order: 2; }

/* ---------- Check / topic lists ---------- */
.check-list, .topic-list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 20px;
	margin: 0;
}
.check-list li, .topic-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15.5px;
	color: var(--color-body);
}
.check-list li::before, .topic-list li::before {
	content: '';
	flex: none;
	width: 20px; height: 20px;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--color-accent-light);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2314b8a6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5l3 3 7-7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px;
}
.topic-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
}
.topic-pills li {
	background: var(--color-surface-alt);
	border: 1px solid var(--color-line);
	color: var(--color-ink);
	font-size: 14px;
	font-weight: 600;
	padding: 9px 16px;
	border-radius: var(--radius-full);
}

/* ---------- Numbered steps ---------- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 24px;
	padding: 32px 0;
	border-top: 1px solid var(--color-line);
}
.step:last-child { border-bottom: 1px solid var(--color-line); }
.step__num {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 18px;
}
.step h3 { margin-bottom: 8px; font-size: 20px; }
.step .quote-list { display: grid; gap: 10px; margin-top: 16px; }
.quote-card {
	background: var(--color-surface-alt);
	border-left: 3px solid var(--color-primary);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	padding: 12px 16px;
	font-weight: 600;
	color: var(--color-ink);
	font-size: 15px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
	background: linear-gradient(135deg, var(--color-primary), #3a63f0 60%, var(--color-accent));
	border-radius: var(--radius-lg);
	color: #fff;
	padding: 56px;
	text-align: center;
}
.cta-banner h2, .cta-banner h1 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .hero__actions { justify-content: center; }
.cta-banner .btn--primary { background: #fff; color: var(--color-primary); }
.cta-banner .btn--primary:hover { background: #eef1ff; }
.cta-banner .btn--secondary { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }

/* ---------- Guide / app-guide sections ---------- */
.guide-card {
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 32px;
	margin-bottom: 24px;
}
.guide-card h2, .guide-card h3 { margin-bottom: 10px; }
.guide-card .eyebrow-soft {
	color: var(--color-muted);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	margin-bottom: 6px;
	display: block;
}
.numbered-list { counter-reset: step; list-style: none; display: grid; gap: 14px; margin: 16px 0; }
.numbered-list li {
	counter-increment: step;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 15.5px;
}
.numbered-list li::before {
	content: "Step " counter(step);
	flex: none;
	min-width: 58px;
	height: 26px;
	padding: 0 9px;
	border-radius: var(--radius-full);
	background: var(--color-primary-light);
	color: var(--color-primary);
	font-weight: 800;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Video placeholders */
.video-embed { margin: 18px 0 8px; }
.video-embed--placeholder .video-embed__frame {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--color-surface-dark);
	color: #fff;
	border-radius: var(--radius-md);
	padding: 16px 20px;
	position: relative;
	overflow: hidden;
}
.video-embed--placeholder .video-embed__frame:hover { opacity: 0.92; }
.video-embed__play {
	flex: none;
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
}
.video-embed__content { display: flex; flex-direction: column; min-width: 0; }
.video-embed__label { font-weight: 700; font-size: 15px; display: block; }
.video-embed__note { display: block; font-size: 12.5px; color: #a9b2d6; margin-top: 2px; }

/* ---------- Contact page ---------- */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.contact-card {
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact-card h3 { font-size: 19px; margin-bottom: 4px; }
.contact-card__meta { margin-top: 6px; display: grid; gap: 4px; font-size: 14.5px; color: var(--color-muted); }
.contact-card__meta strong { color: var(--color-ink); }
.contact-card .btn { margin-top: auto; align-self: flex-start; }

.disclaimer-box {
	background: var(--color-surface-alt);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 32px;
}
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ---------- Privacy / long-form policy content ---------- */
.policy-meta { color: var(--color-muted); font-size: 14.5px; margin-bottom: 32px; }
.policy-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 56px;
	align-items: start;
}
.policy-toc {
	position: sticky;
	top: 100px;
	background: var(--color-surface-alt);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 20px;
	max-height: calc(100vh - 140px);
	overflow-y: auto;
}
.policy-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--color-muted); margin-bottom: 12px; }
.policy-toc ol { list-style: none; display: grid; gap: 8px; counter-reset: toc; }
.policy-toc a { font-size: 14px; color: var(--color-body); }
.policy-toc a:hover { color: var(--color-primary); }
.policy-content h2 {
	font-size: 22px;
	margin-top: 40px;
	padding-top: 16px;
	border-top: 1px solid var(--color-line);
	scroll-margin-top: 100px;
}
.policy-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.policy-content h3 { font-size: 17px; margin-top: 20px; }
.policy-content ul { list-style: none; display: grid; gap: 8px; margin: 12px 0 16px; }
.policy-content ul li { padding-left: 22px; position: relative; font-size: 15.5px; }
.policy-content ul li::before {
	content: '';
	position: absolute; left: 0; top: 9px;
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--color-primary);
}
.policy-content p { font-size: 15.5px; }
.policy-contact-box {
	background: var(--color-surface-alt);
	border: 1px solid var(--color-line);
	border-radius: var(--radius-md);
	padding: 20px 24px;
	margin: 16px 0;
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--color-surface-dark);
	color: #b9c0de;
	padding: 64px 0 28px;
}
.site-footer a { color: #dfe4f5; }
.site-footer a:hover { color: #fff; }
.site-footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__tagline { margin: 14px 0 18px; max-width: 320px; font-size: 14.5px; color: #a9b2d6; }
.site-footer__stores { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-menu { flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-menu a { font-size: 14.5px; font-weight: 500; }
.footer-widget-title { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; }
.site-footer__disclaimer { padding: 24px 0; font-size: 13px; color: #8891b8; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 20px;
	font-size: 13px;
	color: #8891b8;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.hero__grid, .split { grid-template-columns: 1fr; }
	.split__visual { order: -1; }
	.feature-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
	.policy-layout { grid-template-columns: 1fr; }
	.policy-toc { position: static; max-height: none; }
	.site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
	section { padding: 52px 0; }
	.askimmi-brand-logo--header { width: 96px; max-height: 60px; }
	.menu-toggle { display: flex; }
	.site-navigation {
		position: fixed;
		inset: 88px 0 0 0;
		background: #fff;
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
		gap: 24px;
		transform: translateX(100%);
		transition: transform 0.25s ease;
		overflow-y: auto;
	}
	.site-navigation.is-open { transform: translateX(0); }
	.primary-menu { flex-direction: column; align-items: flex-start; gap: 18px; }
	.feature-grid, .contact-grid, .check-list, .topic-list, .site-footer__top { grid-template-columns: 1fr; }
	.cta-banner { padding: 36px 24px; }
	.step { grid-template-columns: 1fr; }
	.phone-mock__badge { position: static; margin-top: 12px; }
	.hero__visual { flex-direction: column; }
}
