/**
 * Public landing / marketing page — Open Invoicer
 */

:root {
	--ln-navy: #0c1e3d;
	--ln-navy-mid: #132a52;
	--ln-navy-soft: #1e3a5f;
	--ln-accent: #1e4d8c;
	--ln-amber: #c2410c;
	--ln-amber-soft: rgba(194, 65, 12, 0.12);
	--ln-teal: #0d9488;
	--ln-surface: #ffffff;
	--ln-muted: #5c6578;
	--ln-border: #e8ecf0;
	--ln-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--ln-display: "Montserrat", var(--ln-font);
}

.landing {
	margin: 0;
	min-height: 100vh;
	font-family: var(--ln-font);
	font-size: 1rem;
	line-height: 1.6;
	color: #1a2332;
	background: #f4f6f8;
	-webkit-font-smoothing: antialiased;
}

.landing__skip {
	position: absolute;
	top: -100px;
	left: 1rem;
	z-index: 10000;
	padding: 0.5rem 1rem;
	background: #fff;
	color: var(--ln-navy);
	border-radius: 8px;
	font-weight: 600;
	transition: top 0.2s;
}
.landing__skip:focus {
	top: 1rem;
	outline: 2px solid var(--ln-accent);
}

/* Nav */
.landing-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: linear-gradient(180deg, var(--ln-navy) 0%, var(--ln-navy-mid) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 4px 24px rgba(12, 30, 61, 0.25);
}

.landing-nav__inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0.65rem 1.25rem;
	padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
	padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
	min-height: 5.25rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: nowrap;
}

.landing-nav__brand {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
	flex-shrink: 0;
	min-width: 0;
}
.landing-nav__brand:hover {
	opacity: 0.95;
}

.landing-nav__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
	min-height: 4.5rem;
	height: 4.75rem;
	width: auto;
	min-width: 0;
	max-width: min(22rem, 58vw);
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

/* Dark / low-contrast PNGs on transparent: render as light on dark nav (no white box). */
.landing-nav__logo {
	display: block;
	width: auto;
	height: 100%;
	max-height: 4.5rem;
	max-width: 100%;
	object-fit: contain;
	object-position: center center;
	filter: brightness(0) invert(1);
	opacity: 0.98;
	-webkit-filter: brightness(0) invert(1);
}

/* Use if your asset is already light / full-color for dark backgrounds */
.landing-nav__logo-wrap--natural .landing-nav__logo {
	filter: none;
	-webkit-filter: none;
	opacity: 1;
}

.landing-nav__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 1;
	min-width: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.landing-nav__link {
	color: rgba(255, 255, 255, 0.88);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	padding: 0.35rem 0.5rem;
	border-radius: 8px;
	margin-right: 0.25rem;
}
.landing-nav__link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.landing-nav__btn {
	font-weight: 600;
	border-radius: 8px;
	padding: 0.4rem 1rem;
}
.landing-nav__btn--ghost {
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}
.landing-nav__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.65);
	color: #fff;
}
.landing-nav__btn--solid {
	color: var(--ln-navy);
	font-weight: 700;
	border: none;
}
.landing-nav__btn--solid:hover {
	background: #f0f4f8;
	color: var(--ln-navy);
}

.landing-nav__btn--block {
	display: block;
	width: 100%;
	text-align: center;
}

/* Hamburger (mobile menu toggle) */
.landing-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0.35rem;
	margin: -0.15rem -0.25rem -0.15rem 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.landing-nav__toggle:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.5);
}

.landing-nav__toggle:focus-visible {
	outline: 2px solid var(--ln-accent, #38bdf8);
	outline-offset: 2px;
}

.landing-nav__toggle-bars {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 1.375rem;
	height: 1rem;
}

.landing-nav__toggle-bar {
	display: block;
	height: 2px;
	width: 100%;
	border-radius: 1px;
	background: #fff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-nav__toggle[aria-expanded='true'] .landing-nav__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.landing-nav__toggle[aria-expanded='true'] .landing-nav__toggle-bar:nth-child(2) {
	opacity: 0;
}

.landing-nav__toggle[aria-expanded='true'] .landing-nav__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.landing-nav__collapse {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.15);
}

.landing-nav__mobile {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0.65rem 1.25rem 1rem;
	padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
	padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.landing-nav__mobile-link {
	display: block;
	padding: 0.65rem 0.5rem;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
}

.landing-nav__mobile-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.landing-nav__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.35rem;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero */
.landing-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 5vw, 4rem);
	overflow: hidden;
	color: #fff;
}

.landing-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 70% 20%, rgba(30, 77, 140, 0.45) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 10% 80%, rgba(13, 148, 136, 0.18) 0%, transparent 50%),
		linear-gradient(165deg, var(--ln-navy) 0%, #0a1628 50%, var(--ln-navy-mid) 100%);
}
.landing-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.9;
}

.landing-hero__container {
	position: relative;
	z-index: 1;
}

.landing-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1rem;
}
.landing-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.35);
}

.landing-hero__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
	max-width: 18ch;
}
.landing-hero__title-accent {
	color: #93c5fd;
}

.landing-hero__lead {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.88);
	max-width: 38rem;
	margin-bottom: 1.75rem;
}
.landing-hero__lead strong {
	color: #fff;
	font-weight: 600;
}

.landing-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.landing-hero__btn-primary {
	font-weight: 700;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.landing-hero__btn-primary:hover {
	background: #f0f4f8;
	color: var(--ln-navy);
}

.landing-hero__btn-secondary {
	font-weight: 600;
	border-radius: 10px;
	border-width: 1.5px;
}
.landing-hero__btn-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.landing-hero__note {
	opacity: 0.85;
}

/* Hero panel mock */
.landing-hero__panel {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	padding: 0;
	overflow: hidden;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.landing-hero__panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1.1rem;
	background: rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-hero__panel-title {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.landing-hero__panel-pill {
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.2rem 0.55rem;
	border-radius: 6px;
	background: rgba(251, 191, 36, 0.2);
	color: #fbbf24;
}

.landing-hero__panel-body {
	padding: 1.15rem 1.15rem 1.25rem;
}

.landing-hero__panel-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	font-size: 0.9375rem;
	margin-bottom: 0.75rem;
}
.landing-hero__panel-row:last-of-type {
	margin-bottom: 1rem;
}

.landing-hero__panel-k {
	color: rgba(255, 255, 255, 0.55);
}
.landing-hero__panel-v {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 500;
}
.landing-hero__panel-v--strong {
	font-weight: 700;
	font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
	font-size: 1.05rem;
}

.landing-hero__panel-fbr {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #6ee7b7;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features */
.landing-features {
	padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.landing-features__intro {
	margin-bottom: 2.5rem;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}

.landing-section-title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 1.85rem);
	letter-spacing: -0.02em;
	color: var(--ln-navy);
	margin-bottom: 0.75rem;
}

.landing-section-title--light {
	color: #fff;
}

.landing-section-lead {
	color: var(--ln-muted);
	font-size: 1.0625rem;
	line-height: 1.55;
}

.landing-card {
	background: var(--ln-surface);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	box-shadow: 0 2px 12px rgba(12, 30, 61, 0.06);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.landing-card:hover {
	box-shadow: 0 8px 28px rgba(12, 30, 61, 0.1);
	transform: translateY(-2px);
}

.landing-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.landing-card__icon--blue {
	background: rgba(30, 77, 140, 0.12);
	color: var(--ln-accent);
}
.landing-card__icon--amber {
	background: var(--ln-amber-soft);
	color: var(--ln-amber);
}
.landing-card__icon--teal {
	background: rgba(13, 148, 136, 0.12);
	color: var(--ln-teal);
}
.landing-card__icon--slate {
	background: rgba(71, 85, 105, 0.12);
	color: #475569;
}

.landing-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.5rem;
	color: #1a2332;
}

.landing-card__text {
	font-size: 0.9375rem;
	color: var(--ln-muted);
	margin: 0;
	line-height: 1.55;
}

/* How it works */
.landing-how {
	padding: clamp(2.75rem, 5vw, 4rem) 0;
	background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
	border-top: 1px solid var(--ln-border);
	border-bottom: 1px solid var(--ln-border);
}

.landing-how__intro {
	margin-bottom: 2.25rem;
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

.landing-how__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin: 0 0 0.5rem;
}

.landing-how__row {
	align-items: stretch;
}

.landing-how__step {
	height: 100%;
	padding: 1.35rem 1.25rem;
	background: var(--ln-surface);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(12, 30, 61, 0.05);
	position: relative;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-how__step:hover {
	box-shadow: 0 8px 28px rgba(12, 30, 61, 0.09);
	transform: translateY(-2px);
}

.landing-how__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 10px;
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: 1rem;
	color: #fff;
	background: linear-gradient(135deg, var(--ln-accent) 0%, var(--ln-navy-mid) 100%);
	margin-bottom: 1rem;
}

.landing-how__title {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ln-navy);
	margin: 0 0 0.5rem;
	line-height: 1.3;
}

.landing-how__text {
	font-size: 0.9375rem;
	color: var(--ln-muted);
	line-height: 1.55;
	margin: 0;
}

/* Audience */
.landing-audience {
	padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.landing-audience__intro {
	margin-bottom: 2rem;
	max-width: 38rem;
	margin-left: auto;
	margin-right: auto;
}

.landing-audience__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin: 0 0 0.5rem;
}

.landing-audience-card {
	background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	box-shadow: 0 2px 14px rgba(12, 30, 61, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.landing-audience-card:hover {
	border-color: rgba(30, 77, 140, 0.2);
	box-shadow: 0 8px 28px rgba(12, 30, 61, 0.08);
}

.landing-audience-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	background: rgba(30, 77, 140, 0.08);
	color: var(--ln-accent);
}

.landing-audience-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ln-navy);
	margin: 0 0 0.5rem;
}

.landing-audience-card__text {
	font-size: 0.9375rem;
	color: var(--ln-muted);
	line-height: 1.55;
	margin: 0;
}

/* FAQ */
.landing-faq {
	padding: clamp(2.75rem, 5vw, 4rem) 0;
	background: #f4f6f8;
	border-top: 1px solid var(--ln-border);
}

.landing-faq__container {
	max-width: 720px;
}

.landing-faq__intro {
	margin-bottom: 1.75rem;
}

.landing-faq__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin: 0 0 0.5rem;
}

.landing-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.landing-faq__item {
	background: #fff;
	border: 1px solid var(--ln-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(12, 30, 61, 0.04);
}

.landing-faq__summary {
	cursor: pointer;
	list-style: none;
	padding: 1rem 1.15rem;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--ln-navy);
	line-height: 1.4;
	position: relative;
	padding-right: 2.5rem;
}

.landing-faq__summary::-webkit-details-marker {
	display: none;
}

.landing-faq__summary::after {
	content: "";
	position: absolute;
	right: 1.1rem;
	top: 50%;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid var(--ln-accent);
	border-bottom: 2px solid var(--ln-accent);
	transform: translateY(-65%) rotate(45deg);
	transition: transform 0.2s ease;
}

.landing-faq__item[open] .landing-faq__summary::after {
	transform: translateY(-25%) rotate(225deg);
}

.landing-faq__summary:hover {
	background: rgba(30, 77, 140, 0.03);
}

.landing-faq__body {
	padding: 0 1.15rem 1.1rem;
	border-top: 1px solid #eef1f5;
}

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

.landing-faq__link {
	color: var(--ln-accent);
	font-weight: 600;
	text-decoration: none;
}

.landing-faq__link:hover {
	text-decoration: underline;
}

/* Pricing — professional layout, color, motion */
@keyframes landing-pricing-orb {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.55;
	}
	50% {
		transform: translate(18px, -14px) scale(1.06);
		opacity: 0.75;
	}
}

@keyframes landing-pricing-shimmer {
	0% {
		transform: translateX(-120%);
	}
	100% {
		transform: translateX(120%);
	}
}

.landing-pricing {
	position: relative;
	padding: clamp(3rem, 8vw, 4.5rem) 0;
	scroll-margin-top: 5.5rem;
	overflow: hidden;
	background: linear-gradient(180deg, #eef3fb 0%, #e4ecf8 35%, #dce6f5 100%);
}

.landing-pricing__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 55% at 15% 20%, rgba(100, 149, 237, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 88% 75%, rgba(30, 77, 140, 0.22) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 50% 100%, rgba(13, 148, 136, 0.12) 0%, transparent 45%);
}

.landing-pricing__bg::before,
.landing-pricing__bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(0px);
	animation: landing-pricing-orb 14s ease-in-out infinite;
}

.landing-pricing__bg::before {
	width: min(420px, 55vw);
	height: min(420px, 55vw);
	top: -12%;
	left: -8%;
	background: radial-gradient(circle at 40% 40%, rgba(56, 119, 214, 0.45) 0%, rgba(56, 119, 214, 0) 70%);
	animation-delay: -3s;
}

.landing-pricing__bg::after {
	width: min(360px, 48vw);
	height: min(360px, 48vw);
	bottom: -8%;
	right: -5%;
	background: radial-gradient(circle at 60% 60%, rgba(12, 30, 61, 0.2) 0%, rgba(12, 30, 61, 0) 68%);
	animation-delay: -7s;
}

.landing-pricing__container {
	max-width: 1080px;
	z-index: 1;
}

.landing-pricing__intro {
	margin-bottom: 2.25rem;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-pricing--visible .landing-pricing__intro {
	opacity: 1;
	transform: translateY(0);
}

.landing-pricing__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin: 0 0 0.5rem;
}

.landing-pricing__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(1.65rem, 3.5vw, 2.1rem);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 0.65rem;
	background: linear-gradient(120deg, #0c1e3d 0%, #1e4d8c 45%, #0d9488 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

@supports not (background-clip: text) {
	.landing-pricing__title {
		color: var(--ln-navy);
		background: none;
		-webkit-text-fill-color: unset;
	}
}

.landing-pricing__subtitle {
	font-size: 1rem;
	color: var(--ln-muted);
	line-height: 1.55;
	margin: 0;
	max-width: 28rem;
}

.landing-pricing__row {
	align-items: stretch;
}

.landing-pricing-col {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-pricing--visible .landing-pricing-col:nth-child(1) {
	transition-delay: 0.08s;
}
.landing-pricing--visible .landing-pricing-col:nth-child(2) {
	transition-delay: 0.18s;
}
.landing-pricing--visible .landing-pricing-col:nth-child(3) {
	transition-delay: 0.28s;
}
.landing-pricing--visible .landing-pricing-col:nth-child(4) {
	transition-delay: 0.38s;
}
.landing-pricing--visible .landing-pricing-col:nth-child(5) {
	transition-delay: 0.48s;
}
.landing-pricing--visible .landing-pricing-col:nth-child(6) {
	transition-delay: 0.58s;
}

.landing-pricing--visible .landing-pricing-col {
	opacity: 1;
	transform: translateY(0);
}

.landing-pricing-card {
	position: relative;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
	border: 1px solid rgba(255, 255, 255, 0.85);
	border-radius: 16px;
	padding: 1.35rem 1.3rem 1.25rem;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 4px 24px rgba(12, 30, 61, 0.07),
		0 12px 40px rgba(12, 30, 61, 0.04);
	display: flex;
	flex-direction: column;
	transition:
		box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-pricing-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1rem;
	right: 1rem;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, transparent, rgba(30, 77, 140, 0.25), transparent);
	opacity: 0.9;
}

.landing-pricing-card:hover {
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 8px 32px rgba(30, 77, 140, 0.12),
		0 20px 48px rgba(12, 30, 61, 0.08);
	border-color: rgba(30, 77, 140, 0.2);
	transform: translateY(-6px);
}

.landing-pricing-card--highlight {
	border-color: rgba(30, 77, 140, 0.35);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 0 0 1px rgba(56, 119, 214, 0.2),
		0 8px 36px rgba(30, 77, 140, 0.18),
		0 24px 56px rgba(12, 30, 61, 0.1);
	background: linear-gradient(165deg, #ffffff 0%, #f0f6ff 55%, #e8f0fc 100%);
}

.landing-pricing-card--highlight::before {
	background: linear-gradient(90deg, #1e4d8c, #3b82f6, #0d9488);
	height: 4px;
	left: 0.5rem;
	right: 0.5rem;
	opacity: 1;
}

.landing-pricing-card--highlight:hover {
	transform: translateY(-8px);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.98) inset,
		0 0 0 1px rgba(56, 119, 214, 0.35),
		0 12px 40px rgba(30, 77, 140, 0.22),
		0 28px 64px rgba(12, 30, 61, 0.12);
}

.landing-pricing-card__badge {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	margin: 0;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(135deg, #1e4d8c 0%, #2563eb 100%);
	padding: 0.28rem 0.55rem;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(30, 77, 140, 0.35);
}

.landing-pricing-card__head {
	margin-bottom: 0.75rem;
	padding-right: 4.5rem;
}

.landing-pricing-card__name {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: 1.125rem;
	letter-spacing: -0.02em;
	color: var(--ln-navy);
	margin: 0 0 0.4rem;
	line-height: 1.25;
}

.landing-pricing-card__desc {
	font-size: 0.8125rem;
	color: var(--ln-muted);
	line-height: 1.45;
	margin: 0;
}

.landing-pricing-card__price-block {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem 0.65rem;
	margin-bottom: 0.95rem;
	padding: 0.65rem 0 0.95rem;
	border-bottom: 1px solid rgba(12, 30, 61, 0.08);
	background: linear-gradient(180deg, rgba(30, 77, 140, 0.04) 0%, transparent 100%);
	border-radius: 10px;
	padding-left: 0.65rem;
	padding-right: 0.65rem;
	margin-left: -0.15rem;
	margin-right: -0.15rem;
}

.landing-pricing-card__sum {
	font-size: 1.65rem;
	font-weight: 800;
	font-family: var(--ln-display);
	letter-spacing: -0.03em;
	line-height: 1.1;
	background: linear-gradient(135deg, #0c1e3d 0%, #1e4d8c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

@supports not (background-clip: text) {
	.landing-pricing-card__sum {
		color: var(--ln-navy);
		background: none;
		-webkit-text-fill-color: unset;
	}
}

.landing-pricing-card__cycle {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ln-muted);
	padding: 0.15rem 0.5rem;
	background: rgba(30, 77, 140, 0.08);
	border-radius: 999px;
}

.landing-pricing-card__features {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 1.1rem;
	min-height: 0;
}

.landing-pricing-card__feat {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.65rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	padding: 0.45rem 0.35rem;
	margin: 0 -0.35rem;
	border-radius: 8px;
	border-bottom: 1px solid rgba(12, 30, 61, 0.06);
	transition: background 0.2s ease;
}

.landing-pricing-card__feat:hover {
	background: rgba(30, 77, 140, 0.04);
}

.landing-pricing-card__feat:last-child {
	border-bottom: none;
}

.landing-pricing-card__feat-label {
	color: var(--ln-muted);
	font-weight: 500;
	flex-shrink: 0;
	max-width: 48%;
}

.landing-pricing-card__feat-value {
	color: #1a2332;
	font-weight: 600;
	text-align: right;
}

.landing-pricing-card__feat--value-only .landing-pricing-card__feat-value {
	text-align: left;
	max-width: 100%;
}

.landing-pricing-card__btn {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-top: auto;
	font-weight: 700;
	font-size: 0.875rem;
	padding: 0.55rem 1rem;
	border-radius: 10px;
	line-height: 1.35;
	transition:
		transform 0.2s ease,
		box-shadow 0.25s ease;
}

.landing-pricing-card__btn:hover {
	transform: translateY(-1px);
}

.landing-pricing-card__btn:active {
	transform: translateY(0);
}

.landing-pricing-card__btn--solid {
	background: linear-gradient(180deg, #1a3d6e 0%, #0c1e3d 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: 0 4px 14px rgba(12, 30, 61, 0.28);
}

.landing-pricing-card__btn--solid::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
	transform: translateX(-120%);
	transition: transform 0s;
}

.landing-pricing-card__btn--solid:hover {
	background: linear-gradient(180deg, #234a82 0%, #132a52 100%);
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
	box-shadow: 0 6px 20px rgba(12, 30, 61, 0.35);
}

.landing-pricing-card__btn--solid:hover::after {
	animation: landing-pricing-shimmer 0.75s ease;
}

.landing-pricing-card__btn--outline {
	background: rgba(255, 255, 255, 0.9);
	border: 1.5px solid rgba(30, 77, 140, 0.35);
	color: var(--ln-navy);
}

.landing-pricing-card__btn--outline:hover {
	background: var(--ln-navy);
	color: #fff;
	border-color: var(--ln-navy);
	box-shadow: 0 6px 18px rgba(12, 30, 61, 0.2);
}

.landing-pricing-card__btn-text {
	position: relative;
	z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
	.landing-pricing__bg::before,
	.landing-pricing__bg::after {
		animation: none;
	}
	.landing-pricing__intro,
	.landing-pricing-col {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.landing-pricing-card:hover,
	.landing-pricing-card--highlight:hover {
		transform: none;
	}
	.landing-pricing-card__btn--solid:hover::after {
		animation: none;
	}
}

/* FBR */
.landing-fbr {
	padding: 0 0 clamp(2.5rem, 6vw, 3.5rem);
}

.landing-fbr__inner {
	background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
	border: 1px solid var(--ln-border);
	border-radius: 16px;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	box-shadow: 0 4px 20px rgba(12, 30, 61, 0.06);
}

.landing-fbr__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	color: var(--ln-navy);
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.landing-fbr__text {
	font-size: 1rem;
	color: var(--ln-muted);
	line-height: 1.65;
}

.landing-fbr__btn {
	font-weight: 700;
	border-radius: 10px;
	background: var(--ln-navy);
	border: none;
	box-shadow: 0 4px 14px rgba(12, 30, 61, 0.25);
}
.landing-fbr__btn:hover {
	background: var(--ln-navy-mid);
}

/* CTA */
.landing-cta {
	padding: clamp(2.75rem, 5vw, 3.5rem) 0;
	background: linear-gradient(180deg, #fff 0%, #f4f6f8 100%);
	border-top: 1px solid var(--ln-border);
}

.landing-cta__lead {
	color: var(--ln-muted);
	font-size: 1.0625rem;
}

.landing-cta .btn-primary {
	background: var(--ln-navy);
	border: none;
	font-weight: 700;
	border-radius: 10px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.landing-cta .btn-primary:hover {
	background: var(--ln-navy-mid);
}

.landing-cta__outline {
	border-width: 2px;
	font-weight: 600;
	border-radius: 10px;
	color: var(--ln-navy);
	border-color: var(--ln-navy);
}
.landing-cta__outline:hover {
	background: var(--ln-navy);
	color: #fff;
	border-color: var(--ln-navy);
}

/* Footer — mega layout */
.landing-footer--mega {
	position: relative;
	padding: 0;
	overflow: hidden;
	background: linear-gradient(165deg, #070f1c 0%, var(--ln-navy) 42%, #0e2848 100%);
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9375rem;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-footer__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 90% 55% at 0% 100%, rgba(30, 77, 140, 0.42), transparent 58%),
		radial-gradient(ellipse 70% 45% at 100% 0%, rgba(13, 148, 136, 0.14), transparent 52%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 28%);
}

.landing-footer--mega .container {
	position: relative;
	z-index: 1;
	max-width: 1140px;
}

.landing-footer__mega {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem 1.5rem;
	padding: 2.75rem 0 2rem;
}

@media (min-width: 576px) {
	.landing-footer__mega {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2rem 1.75rem;
	}

	.landing-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (min-width: 992px) {
	.landing-footer__mega {
		grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(0, 1fr));
		align-items: start;
		gap: 2rem 2rem;
		padding: 3.25rem 0 2.25rem;
	}

	.landing-footer__brand {
		grid-column: auto;
		padding-right: 1rem;
	}
}

.landing-footer__logo-link {
	display: inline-block;
	text-decoration: none;
	margin-bottom: 1rem;
	opacity: 1;
	transition: opacity 0.2s ease;
}

.landing-footer__logo-link:hover {
	opacity: 0.92;
}

.landing-footer__logo-wrap {
	display: block;
	max-width: 12rem;
	line-height: 0;
}

.landing-footer__logo {
	width: 100%;
	height: auto;
	max-height: 2.75rem;
	object-fit: contain;
	object-position: left center;
	filter: brightness(0) invert(1);
	opacity: 0.95;
}

.landing-footer__lead {
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.62);
	margin: 0 0 1.25rem;
	max-width: 22rem;
}

.landing-footer__wa {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
	box-shadow: 0 4px 14px rgba(18, 140, 126, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-footer__wa:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(18, 140, 126, 0.45);
}

.landing-footer__wa-icon {
	flex-shrink: 0;
	opacity: 0.95;
}

.landing-footer__heading {
	font-family: var(--ln-display);
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin: 0 0 1rem;
}

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

.landing-footer__list a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9rem;
	transition: color 0.15s ease, transform 0.15s ease;
	display: inline-block;
}

.landing-footer__list a:hover {
	color: #fff;
	text-decoration: none;
	transform: translateX(2px);
}

.landing-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.5rem;
	padding: 1.25rem 0 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer__copy {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
}

.landing-footer__bottom-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	font-size: 0.8125rem;
}

.landing-footer__bottom-nav a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.15s ease;
}

.landing-footer__bottom-nav a:hover {
	color: rgba(255, 255, 255, 0.9);
}

.landing-footer__dot {
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	vertical-align: middle;
}

@media (max-width: 575px) {
	.landing-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.landing-footer__mega {
		padding-top: 2.25rem;
	}
}

/* Static marketing pages (contact, terms, blog) */
.landing-static {
	background: #f4f6f8;
	min-height: 50vh;
}

.landing-static__wrap {
	max-width: 960px;
}

.landing-static__kicker {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
}

.landing-static__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	letter-spacing: -0.03em;
	color: var(--ln-navy);
	line-height: 1.2;
}

.landing-static__lead {
	font-size: 1.0625rem;
	color: var(--ln-muted);
	line-height: 1.6;
	max-width: 42rem;
}

.landing-static__alert {
	border-radius: 12px;
	border: none;
}

.landing-static__link {
	color: var(--ln-accent);
	font-weight: 600;
	text-decoration: none;
}
.landing-static__link:hover {
	text-decoration: underline;
}

.landing-card-static {
	background: var(--ln-surface);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	box-shadow: 0 4px 20px rgba(12, 30, 61, 0.06);
}

.landing-static__submit {
	background: var(--ln-navy);
	border: none;
	font-weight: 700;
	border-radius: 10px;
}
.landing-static__submit:hover {
	background: var(--ln-navy-mid);
}

.landing-aside-box {
	background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	padding: 1.35rem 1.25rem;
}

.landing-prose {
	font-size: 1rem;
	line-height: 1.7;
	color: #334155;
}

.landing-prose p {
	margin-bottom: 1rem;
}

.landing-prose__h2 {
	font-family: var(--ln-display);
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--ln-navy);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	letter-spacing: -0.02em;
}

.landing-prose a {
	color: var(--ln-accent);
	font-weight: 600;
	text-decoration: none;
}
.landing-prose a:hover {
	text-decoration: underline;
}

.landing-blog-card {
	background: var(--ln-surface);
	border: 1px solid var(--ln-border);
	border-radius: 14px;
	padding: 1.5rem 1.35rem;
	box-shadow: 0 2px 12px rgba(12, 30, 61, 0.05);
	transition: box-shadow 0.2s ease;
}

.landing-blog-card:hover {
	box-shadow: 0 8px 28px rgba(12, 30, 61, 0.09);
}

.landing-blog-card__title {
	font-family: var(--ln-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ln-navy);
}

.landing-blog-card__excerpt {
	color: var(--ln-muted);
	line-height: 1.65;
	font-size: 0.9375rem;
}

/* Blog page — hero + grid listing */
.landing-blog-page {
	background: linear-gradient(180deg, #f8fafc 0%, #f4f6f8 32%);
}

.landing-blog-hero {
	position: relative;
	padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
	overflow: hidden;
	border-bottom: 1px solid var(--ln-border);
}

.landing-blog-hero__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 90% 70% at 15% 0%, rgba(30, 77, 140, 0.12), transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 20%, rgba(12, 30, 61, 0.06), transparent 45%),
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	pointer-events: none;
}

.landing-blog-hero__inner {
	position: relative;
	max-width: 40rem;
}

.landing-blog-hero__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin: 0 0 0.75rem;
}

.landing-blog-hero__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 2.75rem);
	letter-spacing: -0.035em;
	color: var(--ln-navy);
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

.landing-blog-hero__lead {
	font-size: 1.0625rem;
	color: var(--ln-muted);
	line-height: 1.65;
	margin: 0 0 1rem;
	max-width: 36rem;
}

.landing-blog-hero__count {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ln-accent);
	margin: 0;
	padding: 0.35rem 0.75rem;
	display: inline-block;
	background: rgba(30, 77, 140, 0.08);
	border-radius: 999px;
	border: 1px solid rgba(30, 77, 140, 0.12);
}

.landing-blog-card--list {
	display: flex;
	flex-direction: column;
	padding: clamp(1.35rem, 3vw, 1.65rem);
	border-radius: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-blog-card--list:hover {
	transform: translateY(-2px);
}

.landing-blog-card__date {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin-bottom: 0.65rem;
}

.landing-blog-card__title {
	margin-top: 0;
}

.landing-blog-card__title-link {
	color: var(--ln-navy);
	text-decoration: none;
	transition: color 0.15s ease;
}

.landing-blog-card__title-link:hover {
	color: var(--ln-accent);
}

.landing-blog-card__excerpt--clamp {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-grow: 1;
}

.landing-blog-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ln-accent);
	text-decoration: none;
	margin-top: auto;
}

.landing-blog-card__cta:hover {
	text-decoration: underline;
	color: var(--ln-navy);
}

.landing-blog-card__cta svg {
	flex-shrink: 0;
	opacity: 0.85;
}

.landing-blog-empty {
	max-width: 480px;
	margin: 0 auto;
}

.landing-blog-empty__icon {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
	color: var(--ln-muted);
	display: grid;
	place-items: center;
}

.landing-blog-full {
	border-color: var(--ln-border) !important;
}

.landing-blog-full__heading {
	letter-spacing: 0.1em;
	font-weight: 700 !important;
}

.landing-blog-article-full {
	scroll-margin-top: 5.5rem;
	padding: 2rem 0;
	border-bottom: 1px solid var(--ln-border);
}

.landing-blog-article-full:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.landing-blog-article-full__meta {
	font-size: 0.8125rem;
	color: var(--ln-muted);
	margin: 0 0 0.5rem;
}

.landing-blog-article-full__title {
	font-family: var(--ln-display);
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--ln-navy);
	margin: 0 0 1rem;
	line-height: 1.3;
}

.landing-blog-article-full__body {
	font-size: 0.975rem;
}

.landing-blog-article-full__more {
	padding-top: 0.5rem;
	color: #475569;
}

/* Mobile: single bar + hamburger (links in collapse panel) */
@media (max-width: 767.98px) {
	.landing-nav {
		overflow-x: hidden;
	}
	.landing-nav__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: 0;
		gap: 0.75rem;
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
	.landing-nav__brand {
		flex: 1;
		min-width: 0;
		justify-content: flex-start;
		align-self: stretch;
	}
	.landing-nav__logo-wrap {
		max-width: min(13rem, 58vw);
		min-height: 2.65rem;
		height: 2.85rem;
	}
	.landing-nav__logo {
		max-height: 2.75rem;
	}
}

@media (max-width: 576px) {
	.landing-hero__btn-primary,
	.landing-hero__btn-secondary {
		width: 100%;
		justify-content: center;
	}
	.landing-fbr__inner .text-lg-end {
		text-align: left !important;
	}
	.landing-fbr__btn {
		width: 100%;
	}
	.landing-whatsapp-fab {
		bottom: max(1rem, env(safe-area-inset-bottom, 0px));
		right: max(0.85rem, env(safe-area-inset-right, 0px));
		width: 3.35rem;
		height: 3.35rem;
	}
}

/* Floating WhatsApp (marketing layout) */
@keyframes landing-wa-pulse {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	}
	50% {
		box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
	}
}

.landing-whatsapp-fab {
	position: fixed;
	z-index: 9990;
	bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
	right: max(1.25rem, env(safe-area-inset-right, 0px));
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background: linear-gradient(145deg, #2fe066 0%, #25d366 45%, #128c7e 100%);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
	animation: landing-wa-pulse 2.8s ease-in-out infinite;
}

.landing-whatsapp-fab:hover {
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

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

.landing-whatsapp-fab__icon {
	display: block;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}

@media (prefers-reduced-motion: reduce) {
	.landing-whatsapp-fab {
		animation: none;
		box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
	}
}

/* --------------------------------------------------------------------------
   Contact page — hero + form card, motion (respects prefers-reduced-motion)
   -------------------------------------------------------------------------- */
@keyframes contact-fade-up {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes contact-glow-drift {
	0%,
	100% {
		opacity: 0.45;
		transform: translate(0, 0) scale(1);
	}
	50% {
		opacity: 0.65;
		transform: translate(2%, -2%) scale(1.03);
	}
}

@keyframes contact-mesh-shift {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

.contact-page {
	position: relative;
	overflow: hidden;
	min-height: 56vh;
}

.contact-hero {
	position: relative;
	background: linear-gradient(165deg, #f0f4fa 0%, #e8eef6 38%, #f4f6f8 100%);
}

.contact-hero__mesh {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(12, 30, 61, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(12, 30, 61, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, #000 30%, transparent 75%);
	pointer-events: none;
	animation: contact-mesh-shift 28s linear infinite alternate;
}

.contact-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(72px);
	pointer-events: none;
	opacity: 0.5;
	animation: contact-glow-drift 14s ease-in-out infinite;
}

.contact-hero__glow--1 {
	width: min(420px, 70vw);
	height: min(380px, 55vw);
	top: -8%;
	right: -5%;
	background: radial-gradient(circle, rgba(30, 77, 140, 0.35) 0%, transparent 70%);
}

.contact-hero__glow--2 {
	width: min(360px, 60vw);
	height: min(320px, 50vw);
	bottom: 5%;
	left: -8%;
	background: radial-gradient(circle, rgba(13, 148, 136, 0.22) 0%, transparent 70%);
	animation-delay: -5s;
	animation-duration: 18s;
}

.contact-hero__container {
	position: relative;
	z-index: 1;
	max-width: 1140px;
}

.contact-hero__intro {
	padding-top: 0.25rem;
}

@media (min-width: 992px) {
	.contact-hero__intro {
		padding-right: 1rem;
	}
}

.contact-hero__eyebrow {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ln-accent);
	margin-bottom: 0.75rem;
	padding: 0.35rem 0.75rem;
	background: rgba(30, 77, 140, 0.08);
	border-radius: 999px;
	animation: contact-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-hero__title {
	font-family: var(--ln-display);
	font-weight: 800;
	font-size: clamp(1.85rem, 3.2vw, 2.5rem);
	letter-spacing: -0.035em;
	color: var(--ln-navy);
	line-height: 1.15;
	margin-bottom: 1rem;
	animation: contact-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: 0.06s;
}

.contact-hero__lead {
	font-size: 1.0625rem;
	color: var(--ln-muted);
	line-height: 1.65;
	margin-bottom: 1.75rem;
	max-width: 26rem;
	animation: contact-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: 0.12s;
}

.contact-hero__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-hero__trust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #3d4a5c;
	animation: contact-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-hero__trust-item:nth-child(1) {
	animation-delay: 0.18s;
}
.contact-hero__trust-item:nth-child(2) {
	animation-delay: 0.24s;
}
.contact-hero__trust-item:nth-child(3) {
	animation-delay: 0.3s;
}

.contact-hero__trust-item strong {
	color: var(--ln-navy);
	font-weight: 700;
}

.contact-hero__trust-icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(30, 77, 140, 0.12), rgba(13, 148, 136, 0.1));
	color: var(--ln-accent);
}

.contact-form-card {
	position: relative;
	background: var(--ln-surface);
	border: 1px solid rgba(12, 30, 61, 0.08);
	border-radius: 18px;
	padding: clamp(1.5rem, 4vw, 2rem);
	box-shadow:
		0 4px 6px -1px rgba(12, 30, 61, 0.06),
		0 24px 48px -12px rgba(12, 30, 61, 0.12);
	transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	animation: contact-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
	animation-delay: 0.14s;
}

@media (hover: hover) and (pointer: fine) {
	.contact-form-card:hover {
		box-shadow:
			0 8px 12px -2px rgba(12, 30, 61, 0.08),
			0 32px 56px -16px rgba(12, 30, 61, 0.14);
		transform: translateY(-2px);
	}
}

.contact-form-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 1.5rem;
	right: 1.5rem;
	height: 3px;
	border-radius: 0 0 4px 4px;
	background: linear-gradient(90deg, var(--ln-accent), var(--ln-teal));
	opacity: 0.9;
}

.contact-form-card__head {
	margin-bottom: 1.35rem;
}

.contact-form-card__title {
	font-family: var(--ln-display);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--ln-navy);
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
}

.contact-form-card__subtitle {
	font-size: 0.8125rem;
	color: var(--ln-muted);
	margin: 0;
}

.contact-form-card__alert {
	border-radius: 12px !important;
	margin-bottom: 1rem;
}

.contact-field {
	margin-bottom: 1.15rem;
}

.contact-field:last-of-type {
	margin-bottom: 1.35rem;
}

.contact-field__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ln-navy);
	margin-bottom: 0.4rem;
	letter-spacing: 0.02em;
}

.contact-field__input {
	border-radius: 12px;
	border: 1px solid var(--ln-border);
	padding: 0.65rem 0.9rem;
	font-size: 0.9375rem;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.contact-field__input::placeholder {
	color: #94a3b8;
}

.contact-field__input:hover {
	border-color: #cbd5e1;
}

.contact-field__input:focus {
	border-color: var(--ln-accent);
	box-shadow: 0 0 0 4px rgba(30, 77, 140, 0.12);
	outline: none;
	transform: translateY(-1px);
}

.contact-field__input--area {
	min-height: 140px;
	resize: vertical;
}

.contact-form-card__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.85rem 1.5rem;
	font-weight: 700;
	font-size: 1rem;
	border: none;
	border-radius: 12px;
	color: #fff;
	background: linear-gradient(135deg, var(--ln-navy) 0%, var(--ln-navy-mid) 100%);
	box-shadow: 0 4px 14px rgba(12, 30, 61, 0.25);
	transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}

.contact-form-card__submit:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(12, 30, 61, 0.3);
}

.contact-form-card__submit:active {
	transform: translateY(0);
}

.contact-form-card__submit-arrow {
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form-card__submit:hover .contact-form-card__submit-arrow {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.contact-hero__mesh,
	.contact-hero__glow {
		animation: none;
	}
	.contact-hero__mesh {
		background-position: 0 0;
	}
	.contact-hero__eyebrow,
	.contact-hero__title,
	.contact-hero__lead,
	.contact-hero__trust-item,
	.contact-form-card {
		animation: none;
		opacity: 1;
		transform: none;
	}
	.contact-form-card:hover {
		transform: none;
	}
	.contact-field__input:focus {
		transform: none;
	}
	.contact-form-card__submit:hover,
	.contact-form-card__submit:hover .contact-form-card__submit-arrow {
		transform: none;
	}
}

/* Contact form — reCAPTCHA (reuses auth partial) */
.contact-field--captcha .auth-field {
	margin-bottom: 0;
}
.contact-field--captcha .auth-field__label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ln-navy);
	margin-bottom: 0.5rem;
	letter-spacing: 0.02em;
}
.contact-field--captcha .g-recaptcha {
	transform-origin: left top;
}
@media (max-width: 400px) {
	.contact-field--captcha .g-recaptcha {
		transform: scale(0.92);
	}
}
