/* ── Boame public landing page ── */
.landing-page {
	--landing-primary: #1e293b;
	--landing-primary-dark: #0f172a;
	--landing-accent: #f97316;
	--landing-accent-soft: #fff7ed;
	--landing-text: #111827;
	--landing-muted: #6b7280;
	--landing-border: #e5e7eb;
	--landing-bg: #ffffff;
	--landing-surface: #f9fafb;
	--landing-radius: 16px;
	--landing-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	--landing-nav-h: 72px;
	--landing-font-display: "Plus Jakarta Sans", sans-serif;
	--landing-font-body: "Onest", sans-serif;

	min-height: 100vh;
	min-height: 100dvh;
	background: var(--landing-bg);
	color: var(--landing-text);
	font-family: var(--landing-font-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

.landing-page .font-display,
.landing-brand,
.landing-nav__link,
.landing-btn,
.landing-hero__badge,
.landing-hero__title,
.landing-hero__tagline,
.landing-hero__stat dd,
.landing-section__eyebrow,
.landing-section__title,
.landing-feature h3,
.landing-faq__question,
.landing-contact__card h3,
.landing-contact__highlight h3,
.landing-contact__details strong,
.landing-footer__brand {
	font-family: var(--landing-font-display);
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
	box-sizing: border-box;
}

.landing-page img {
	max-width: 100%;
	height: auto;
}

.landing-page a:not(.landing-btn) {
	color: inherit;
}

/* ── Nav ── */
.landing-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: var(--landing-nav-h);
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.landing-nav__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.landing-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.125rem;
	color: var(--landing-primary);
	letter-spacing: -0.02em;
}

.landing-brand__logo {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.landing-brand__logo img {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.landing-nav__links {
	display: none;
	align-items: center;
	gap: 0.25rem;
}

.landing-nav__link {
	padding: 0.5rem 0.875rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--landing-muted);
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.2s, background 0.2s;
}

.landing-nav__link:hover,
.landing-nav__link:focus {
	color: var(--landing-primary);
	background: var(--landing-surface);
}

.landing-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.landing-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 1.125rem;
	border-radius: 12px;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.landing-page a.landing-btn--primary,
.landing-page a.landing-btn--accent,
.landing-btn--primary,
.landing-btn--accent {
	color: #fff;
}

.landing-btn:active {
	transform: scale(0.98);
}

.landing-btn--ghost {
	color: var(--landing-primary);
	background: transparent;
	border: 1.5px solid var(--landing-border);
}

.landing-btn--ghost:hover,
.landing-btn--ghost:focus {
	background: var(--landing-surface);
}

.landing-btn--primary {
	background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-primary-dark) 100%);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
}

.landing-page a.landing-btn--primary:hover,
.landing-page a.landing-btn--primary:focus,
.landing-btn--primary:hover,
.landing-btn--primary:focus {
	color: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.28);
}

.landing-btn--accent {
	background: linear-gradient(135deg, #fb923c 0%, var(--landing-accent) 100%);
	box-shadow: 0 8px 24px rgba(249, 115, 22, 0.28);
}

.landing-page a.landing-btn--accent:hover,
.landing-page a.landing-btn--accent:focus,
.landing-btn--accent:hover,
.landing-btn--accent:focus {
	color: #fff;
}

.landing-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1.5px solid var(--landing-border);
	border-radius: 12px;
	background: #fff;
	color: var(--landing-primary);
	cursor: pointer;
}

.landing-nav__toggle svg {
	width: 22px;
	height: 22px;
}

.landing-mobile-menu {
	display: none;
	position: fixed;
	top: var(--landing-nav-h);
	left: 0;
	right: 0;
	z-index: 99;
	padding: 0.75rem 1.25rem 1rem;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--landing-border);
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.landing-mobile-menu.is-open {
	display: block;
}

.landing-mobile-menu__links {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 0.75rem;
}

.landing-mobile-menu__links .landing-nav__link {
	display: block;
	padding: 0.75rem 0.875rem;
}

.landing-mobile-menu__actions {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.landing-mobile-menu__actions .landing-btn {
	width: 100%;
}

/* ── Layout helpers ── */
.landing-container {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.landing-section {
	padding: 4.5rem 0;
}

.landing-section__eyebrow {
	display: inline-block;
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--landing-accent);
}

.landing-section__title {
	margin: 0 0 0.875rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--landing-primary);
}

.landing-section__lead {
	margin: 0;
	max-width: 640px;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--landing-muted);
}

.landing-section__head {
	margin-bottom: 2.5rem;
}

.landing-section__head--center {
	text-align: center;
}

.landing-section__head--center .landing-section__lead {
	margin-left: auto;
	margin-right: auto;
}

/* ── Scroll / load animations ── */
@keyframes landing-fade-up {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes landing-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes landing-device-enter {
	from {
		opacity: 0;
		transform: translateY(32px) scale(0.96);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes landing-device-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes landing-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-52px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes landing-slide-in-right {
	from {
		opacity: 0;
		transform: translateX(52px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.landing-animate-head > *,
	.landing-hero-animate > *,
	.landing-hero-animate--devices .landing-hero__devices-stage,
	.landing-animate-card {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
}

.landing-animate-head > .landing-section__eyebrow,
.landing-animate-head > .landing-section__title,
.landing-animate-head > .landing-section__lead {
	opacity: 0;
}

.landing-animate-head.is-visible > .landing-section__eyebrow {
	animation: landing-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.landing-animate-head.is-visible > .landing-section__title {
	animation: landing-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.landing-animate-head.is-visible > .landing-section__lead {
	animation: landing-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

.landing-hero-animate:not(.landing-hero-animate--devices) > * {
	opacity: 0;
}

.landing-hero-animate.is-visible > .landing-hero__badge {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.landing-hero-animate.is-visible > .landing-hero__title {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.landing-hero-animate.is-visible > .landing-hero__tagline {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.landing-hero-animate.is-visible > .landing-hero__text {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.landing-hero-animate.is-visible > .landing-hero__actions {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.landing-hero-animate.is-visible > .landing-hero__stats {
	animation: landing-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.landing-hero-animate--devices.landing-hero__devices-col,
.landing-hero-animate--devices .landing-hero__devices-stage {
	opacity: 1;
	transform: none;
}

/* ── Hero ── */
.landing-hero {
	position: relative;
	padding: calc(var(--landing-nav-h) + 3rem) 0 5rem;
	background:
		radial-gradient(circle at 85% 15%, rgba(249, 115, 22, 0.14), transparent 42%),
		radial-gradient(circle at 10% 80%, rgba(30, 41, 59, 0.08), transparent 40%),
		linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: visible;
}

.landing-hero::before,
.landing-hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.landing-hero::before {
	top: -120px;
	right: -80px;
	width: 320px;
	height: 320px;
	background: rgba(30, 41, 59, 0.06);
}

.landing-hero::after {
	bottom: -100px;
	left: -60px;
	width: 260px;
	height: 260px;
	background: rgba(249, 115, 22, 0.08);
}

.landing-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: start;
}

.landing-hero__content {
	max-width: 560px;
}

.landing-hero__devices-col {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.landing-hero__devices {
	position: relative;
	width: 100%;
	max-width: 380px;
	height: clamp(260px, 58vw, 320px);
	margin: 0 auto;
	overflow: visible;
}

.landing-hero__devices .landing-hero__laptop-lid {
	padding: 0.5rem;
}

.landing-hero__devices .landing-hero__laptop-bezel {
	padding: 0.32rem;
}

.landing-hero__devices .landing-hero__phone-bezel {
	padding: 0.3rem;
	border-radius: 1.85rem;
}

.landing-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.375rem 0.75rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--landing-border);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--landing-muted);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.landing-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.landing-hero__title {
	margin: 0 0 0.75rem;
	font-family: var(--landing-font-display);
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--landing-primary);
	font-synthesis: none;
}

.landing-hero__title span {
	font-family: inherit;
	background: linear-gradient(135deg, #fb923c 0%, var(--landing-accent) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.landing-hero__tagline {
	margin: 0 0 1rem;
	font-family: var(--landing-font-display);
	font-size: clamp(1.125rem, 2.5vw, 1.375rem);
	font-weight: 700;
	line-height: 1.25;
	color: var(--landing-primary);
	letter-spacing: -0.02em;
	font-synthesis: none;
}

.landing-hero__tagline-circle {
	position: relative;
	display: inline-block;
	padding: 0.45em 1.1em 0.4em;
	color: var(--landing-primary);
	line-height: 1.3;
	letter-spacing: 0.01em;
}

.landing-hero__tagline-ring {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: var(--landing-accent);
	pointer-events: none;
	overflow: visible;
	transform: rotate(-2deg);
}

.landing-hero__text {
	margin: 0 0 1.75rem;
	max-width: 540px;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--landing-muted);
}

.landing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.landing-hero__actions .landing-btn {
	min-height: 48px;
	padding: 0 1.375rem;
}

.landing-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 2rem;
	max-width: 420px;
}

.landing-hero__stat {
	padding: 0.875rem 0.75rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--landing-border);
	text-align: center;
}

.landing-hero__stat dt {
	margin: 0 0 0.2rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: var(--landing-muted);
}

.landing-hero__stat dd {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 800;
	color: var(--landing-primary);
}

.landing-hero__visual,
.landing-hero__photo,
.landing-hero__photo-image,
.landing-hero__devices-band,
.landing-hero__devices-glow,
.landing-hero__devices-shadow {
	display: none;
}

.landing-hero__devices-stage {
	position: relative;
	width: 100%;
	height: 100%;
}

/* ── MacBook-style laptop ── */
.landing-hero__laptop {
	position: absolute;
	left: 0;
	top: 0;
	width: 92%;
	max-width: 360px;
	margin: 0;
	z-index: 1;
	transform: none;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-hero__devices-stage:hover .landing-hero__laptop {
	transform: translateY(-3px);
}

.landing-hero__laptop-lid {
	position: relative;
	padding: 0.55rem;
	border-radius: 14px 14px 0 0;
	background: linear-gradient(180deg, #ececef 0%, #d9d9de 45%, #cfcfd4 100%);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.06),
		0 32px 64px -24px rgba(15, 23, 42, 0.28);
}

.landing-hero__laptop-bezel {
	padding: 0.35rem;
	border-radius: 8px;
	background: #1d1d1f;
}

.landing-hero__device-screen--web {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	aspect-ratio: 16 / 10;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.landing-hero__laptop-notch {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 26%;
	max-width: 108px;
	height: 13px;
	background: #1d1d1f;
	border-radius: 0 0 9px 9px;
	z-index: 4;
	pointer-events: none;
}

.landing-hero__laptop-base {
	height: 11px;
	margin: 0 1.5%;
	border-radius: 0 0 12px 12px;
	background: linear-gradient(180deg, #d4d4d8 0%, #b8b8be 55%, #a1a1a8 100%);
	box-shadow:
		0 14px 28px -10px rgba(15, 23, 42, 0.22),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	position: relative;
}

.landing-hero__laptop-trackpad {
	position: absolute;
	top: 2px;
	left: 50%;
	transform: translateX(-50%);
	width: 22%;
	height: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.35);
}

.landing-hero__device-screen--mobile {
	position: relative;
	border-radius: 1.65rem;
	overflow: hidden;
	background: #fff;
	width: 100%;
	aspect-ratio: 9 / 19.5;
	min-height: 160px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ── iPhone-style phone ── */
.landing-hero__phone {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 34%;
	max-width: 140px;
	margin: 0;
	z-index: 5;
	transform: none;
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.24));
}

.landing-hero__devices-stage:hover .landing-hero__phone {
	transform: translateY(-5px);
}

.landing-hero__phone-bezel {
	padding: 0.32rem;
	border-radius: 2.1rem;
	background: linear-gradient(160deg, #48484a 0%, #1d1d1f 42%, #2c2c2e 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.12) inset,
		0 0 0 1px rgba(0, 0, 0, 0.18);
}

.landing-hero__phone-island {
	position: absolute;
	top: 0.55rem;
	left: 50%;
	transform: translateX(-50%);
	width: 32%;
	max-width: 58px;
	height: 16px;
	background: #1d1d1f;
	border-radius: 999px;
	z-index: 4;
	pointer-events: none;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.landing-hero__device-shot {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-position: top center;
	z-index: 2;
}

.landing-hero__device-shot--web {
	object-fit: cover;
	object-position: top left;
}

.landing-hero__device-shot--mobile {
	object-fit: cover;
	object-position: top center;
}

.landing-hero__device-placeholder {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.75rem;
	text-align: center;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
	z-index: 1;
}

.landing-hero__device-screen.is-error .landing-hero__device-placeholder {
	display: flex;
}

.landing-hero__device-screen.is-error .landing-hero__device-shot {
	display: none;
}

.landing-hero__device-placeholder span {
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--landing-muted);
	line-height: 1.4;
}

/* ── About ── */
.landing-about {
	background: var(--landing-surface);
}

.landing-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

.landing-feature {
	padding: 1.25rem;
	border-radius: var(--landing-radius);
	background: #fff;
	border: 1.5px solid var(--landing-border);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.landing-feature__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.875rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.landing-feature__icon--donation { background: #fef3c7; color: #d97706; }
.landing-feature__icon--reports { background: #dbeafe; color: #2563eb; }
.landing-feature__icon--sms { background: #dcfce7; color: #16a34a; }
.landing-feature__icon--settings { background: #f3e8ff; color: #9333ea; }

.landing-feature h3 {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--landing-primary);
}

.landing-feature p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--landing-muted);
}

/* ── Mobile scroll-in cards (About + FAQ) ── */
@media (max-width: 767px) {
	.landing-animate-card {
		opacity: 0;
	}

	.landing-features .landing-animate-card:nth-child(odd).is-visible,
	.landing-faq__list .landing-animate-card:nth-child(odd).is-visible {
		animation: landing-slide-in-left 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.landing-features .landing-animate-card:nth-child(even).is-visible,
	.landing-faq__list .landing-animate-card:nth-child(even).is-visible {
		animation: landing-slide-in-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.landing-features .landing-animate-card:nth-child(1).is-visible { animation-delay: 0.02s; }
	.landing-features .landing-animate-card:nth-child(2).is-visible { animation-delay: 0.1s; }
	.landing-features .landing-animate-card:nth-child(3).is-visible { animation-delay: 0.18s; }
	.landing-features .landing-animate-card:nth-child(4).is-visible { animation-delay: 0.26s; }

	.landing-faq__list .landing-animate-card:nth-child(1).is-visible { animation-delay: 0.02s; }
	.landing-faq__list .landing-animate-card:nth-child(2).is-visible { animation-delay: 0.1s; }
	.landing-faq__list .landing-animate-card:nth-child(3).is-visible { animation-delay: 0.18s; }
	.landing-faq__list .landing-animate-card:nth-child(4).is-visible { animation-delay: 0.26s; }
}

@media (min-width: 768px) {
	.landing-animate-card {
		opacity: 1;
	}
}

/* ── FAQ ── */
.landing-faq {
	background: #fff;
}

.landing-faq__list {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.landing-faq__item {
	border: 1.5px solid var(--landing-border);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
}

.landing-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.125rem;
	border: none;
	background: transparent;
	text-align: left;
	font: inherit;
	font-size: 0.975rem;
	font-weight: 700;
	color: var(--landing-primary);
	cursor: pointer;
}

.landing-faq__question svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--landing-muted);
	transition: transform 0.25s;
}

.landing-faq__item.is-open .landing-faq__question svg {
	transform: rotate(180deg);
}

.landing-faq__answer {
	display: none;
	padding: 0 1.125rem 1rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--landing-muted);
}

.landing-faq__item.is-open .landing-faq__answer {
	display: block;
}

/* ── Contact ── */
.landing-contact {
	background: linear-gradient(180deg, #fff 0%, var(--landing-accent-soft) 100%);
}

.landing-contact__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.landing-contact__card {
	padding: 1.5rem;
	border-radius: 20px;
	background: #fff;
	border: 1.5px solid var(--landing-border);
	box-shadow: var(--landing-shadow);
}

.landing-contact__card h3 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--landing-primary);
}

.landing-contact__card p {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--landing-muted);
}

.landing-contact__details {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.landing-contact__details li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--landing-text);
}

.landing-contact__details-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--landing-accent-soft);
	color: var(--landing-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.landing-contact__details-icon svg {
	width: 20px;
	height: 20px;
}

.landing-contact__details strong {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--landing-muted);
	margin-bottom: 0.125rem;
}

.landing-contact__details a {
	color: var(--landing-text);
	text-decoration: none;
	font-weight: 600;
}

.landing-contact__details a:hover,
.landing-contact__details a:focus {
	color: var(--landing-accent);
}

.landing-contact__highlight {
	padding: 1.5rem;
	border-radius: 20px;
	background: linear-gradient(145deg, var(--landing-primary) 0%, var(--landing-primary-dark) 100%);
	color: #fff;
	box-shadow: var(--landing-shadow);
}

.landing-contact__highlight h3 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 800;
}

.landing-contact__highlight p {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}

.landing-contact__highlight .landing-btn--accent {
	width: 100%;
}

/* ── Footer ── */
.landing-footer {
	padding: 2rem 0;
	border-top: 1px solid var(--landing-border);
	background: #fff;
}

.landing-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	text-align: center;
}

.landing-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-weight: 800;
	color: var(--landing-primary);
}

.landing-footer__brand img {
	width: 28px;
	height: 28px;
}

.landing-footer p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--landing-muted);
}

.landing-footer strong {
	color: var(--landing-accent);
}

/* ── Responsive ── */
@media (min-width: 768px) {
	.landing-nav__links {
		display: flex;
	}

	.landing-nav__toggle {
		display: none;
	}

	.landing-nav__actions .landing-btn--ghost {
		display: inline-flex;
	}

	.landing-hero {
		padding-bottom: 6rem;
		overflow: visible;
	}

	.landing-hero__inner {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		gap: 2rem 2.5rem;
		align-items: center;
	}

	.landing-hero__content {
		max-width: 540px;
	}

	.landing-hero__devices-col {
		align-self: center;
		justify-content: center;
	}

	.landing-hero__devices {
		max-width: 540px;
		height: 400px;
		margin: 0 auto;
	}

	.landing-hero__laptop {
		width: 90%;
		max-width: 500px;
	}

	.landing-hero__phone {
		right: -2%;
		width: 32%;
		max-width: 175px;
		bottom: 2%;
	}

	.landing-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.landing-contact__grid {
		grid-template-columns: 1.1fr 0.9fr;
		align-items: stretch;
	}

	.landing-footer__inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}

@media (min-width: 992px) {
	.landing-features {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 767px) {
	.landing-nav__actions .landing-btn--ghost {
		display: none;
	}

	.landing-section {
		padding: 3.5rem 0;
	}

	.landing-hero {
		padding-bottom: 4rem;
	}

	.landing-hero__inner {
		gap: 1.75rem;
	}

	.landing-hero__content {
		max-width: none;
	}

	.landing-hero__devices {
		max-width: min(100%, 400px);
		height: clamp(280px, 78vw, 340px);
	}

	.landing-hero__laptop {
		width: 90%;
		max-width: 370px;
	}

	.landing-hero__phone {
		right: 0;
		width: 36%;
		max-width: 132px;
		bottom: 0;
	}

	.landing-hero__device-screen--mobile {
		min-height: 150px;
	}
}
