/* Home layout — merged from claude_design mobile + desktop (Urbanist) */
:root {
	--najm-burgundy: rgb(74, 32, 45);
	--najm-burgundy-dark: rgb(46, 19, 25);
	--najm-cream: rgb(239, 222, 202);
	--najm-cream-light: rgb(245, 240, 235);
	--najm-powder: rgb(193, 213, 240);
	--najm-dusty-blue: rgb(75, 87, 131);
	--najm-dusty-pink: rgb(196, 129, 143);
	--najm-white: #fff;
	--najm-display: "Urbanist", system-ui, sans-serif;
	--najm-body: "Urbanist", system-ui, sans-serif;
	--najm-container: 1200px;
	--najm-pad: 24px;
	--najm-pad-desktop: 64px;
}

.najm-home {
	margin: 0;
	background: var(--najm-burgundy);
	color: var(--najm-cream);
	font-family: var(--najm-body);
	-webkit-font-smoothing: antialiased;
}

.najm-page {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	background: var(--najm-burgundy);
}

/* ---------- Nav ---------- */
.najm-nav--desktop {
	display: none;
	position: sticky;
	top: 0;
	z-index: 100;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px var(--najm-pad-desktop);
	background: var(--najm-burgundy);
	color: var(--najm-cream);
	border-bottom: 1px solid rgba(239, 222, 202, 0.12);
}

.najm-nav__brand {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(28px, 4vw, 36px);
	letter-spacing: -0.02em;
	color: var(--najm-cream);
	text-decoration: none;
	line-height: 1;
}

.najm-nav__links {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 36px;
	font-weight: 500;
	font-size: 16px;
	align-items: center;
}

.najm-nav__links .najm-nav__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 36px;
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.najm-nav__links .sub-menu {
	display: none;
}

.najm-nav-drawer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.najm-nav__links a,
.najm-nav__menu a {
	color: var(--najm-cream);
	text-decoration: none;
}

.najm-nav__links a:hover,
.najm-nav__menu a:hover {
	color: var(--najm-powder);
}

.najm-nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: var(--najm-cream);
	color: var(--najm-burgundy);
	padding: 10px 18px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border-radius: 2px;
}

.najm-nav__cta svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.najm-nav-drawer {
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
}

.najm-nav-drawer.is-open {
	pointer-events: auto;
}

.najm-nav-drawer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.najm-nav-drawer.is-open::before {
	opacity: 1;
}

.najm-nav-drawer__inner {
	position: absolute;
	top: 0;
	right: 0;
	width: min(360px, 92vw);
	height: 100%;
	background: var(--najm-burgundy-dark);
	color: var(--najm-cream);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	overflow-y: auto;
}

.najm-nav-drawer.is-open .najm-nav-drawer__inner {
	transform: translateX(0);
}

.najm-nav-drawer__inner a {
	color: var(--najm-cream);
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
}

.najm-nav-drawer__phone {
	margin-top: auto;
	font-size: 20px;
	font-weight: 700;
}

body.najm-nav-open {
	overflow: hidden;
}

/* ---------- Hero ---------- */
.najm-hero {
	position: relative;
	min-height: 420px;
	background-color: var(--najm-burgundy);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	color: var(--najm-cream);
}

.najm-topbar--mobile {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 11px var(--najm-pad);
	position: relative;
	z-index: 5;
}

.najm-topbar__brand {
	color: var(--najm-cream);
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: 30px;
	text-decoration: none;
	line-height: 1;
}

.najm-topbar__dot {
	margin-left: 2px;
	font-size: 26px;
}

.najm-topbar__icons {
	display: flex;
	gap: 4px;
}

.najm-icon-btn {
	width: 45px;
	height: 45px;
	display: grid;
	place-items: center;
	color: var(--najm-cream);
	background: none;
	border: 0;
	cursor: pointer;
}

.najm-hero-arch {
	pointer-events: none;
	color: var(--najm-cream);
}

.najm-hero-arch--mobile {
	position: absolute;
	left: 50%;
	bottom: 64px;
	transform: translateX(-50%);
	width: min(300px, 92vw);
	height: 170px;
	display: block;
}

.najm-hero-arch--desktop {
	display: none;
}

.najm-hero-arch svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.najm-hero-arch text {
	font-family: var(--najm-display);
	font-weight: 800;
	fill: var(--najm-cream);
	text-transform: lowercase;
}

.najm-hero__inner--desktop {
	display: none;
}

.najm-hero-curve {
	width: 100%;
	display: block;
	color: var(--najm-burgundy);
}

.najm-hero-curve--desktop {
	display: none;
}

.najm-title-block--mobile {
	padding: 40px var(--najm-pad);
	background: var(--najm-burgundy);
	color: var(--najm-cream);
}

.najm-title-block--mobile h1 {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(40px, 12vw, 64px);
	line-height: 1;
	letter-spacing: -0.02em;
	margin-bottom: 24px;
}

.najm-title-block--mobile .najm-hero__subtitle {
	font-weight: 500;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 16px;
}

.najm-cta-link {
	font-weight: 700;
	font-size: 18px;
	color: var(--najm-powder);
	text-decoration: none;
	display: inline-block;
}

.najm-cta-link:hover {
	color: var(--najm-cream);
}

/* ---------- Stats ---------- */
.najm-stats {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 32px 16px;
}

.najm-stats__inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.najm-stat {
	flex: 1 1 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.najm-stat__value {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: 42px;
	line-height: 1.1;
	color: var(--najm-burgundy-dark);
}

.najm-stat__label {
	font-weight: 500;
	font-size: 15px;
	line-height: 1.35;
	color: inherit;
	white-space: pre-line;
}

/* ---------- Video + compare (one powder block) ---------- */
.najm-video-compare-wrap {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 0 0 40px;
	overflow: hidden;
}

/* Mobile: heading → video → compare (DOM order) */
.najm-video-compare__inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	padding: 0 var(--najm-pad);
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.najm-video__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(32px, 8vw, 48px);
	line-height: 1.1;
	color: inherit;
	margin: 24px 0 0;
}

.najm-video-compare__video-cell {
	width: 100%;
	min-width: 0;
	display: flex;
	justify-content: center;
}

/* Portrait / Instagram 9:16; box capped so it stays in section */
.najm-video {
	position: relative;
	width: min(100%, calc(85vh * 9 / 16));
	max-width: 100%;
	margin-inline: auto;
	aspect-ratio: 9 / 16;
	max-height: min(85vh, 920px);
	background: linear-gradient(180deg, #b7916e, #7a5240);
	overflow: hidden;
	border-radius: 4px;
	display: block;
}

.najm-video__el {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.najm-compare-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.najm-compare-block {
	padding: 16px;
	font-size: 17px;
	line-height: 1.55;
	color: var(--najm-burgundy-dark);
}

.najm-compare-block--b {
	background: var(--najm-cream-light);
	color: var(--najm-burgundy-dark);
}

/* ---------- How ---------- */
.najm-how {
	background: var(--najm-burgundy);
	color: var(--najm-cream);
	padding: 48px 0;
}

.najm-how-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	padding: 0 var(--najm-pad);
}

.najm-how-top {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-bottom: 32px;
}

.najm-how-head {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.najm-how__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(36px, 10vw, 48px);
	line-height: 1.05;
	margin: 0;
}

.najm-how__intro {
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
}

/* Break out of .najm-how-inner horizontal padding — full viewport width on narrow layouts */
.najm-how__photo {
	overflow: hidden;
	margin-left: calc(-1 * var(--najm-pad));
	margin-right: calc(-1 * var(--najm-pad));
	width: calc(100% + 2 * var(--najm-pad));
	max-width: none;
	border-radius: 0;
	position: relative;
}

.najm-how__photo picture,
.najm-how__photo img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.najm-how-steps {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.najm-step {
	display: flex;
	gap: 20px;
	padding: 24px 0;
}

.najm-step__num {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: 48px;
	line-height: 1;
	color: var(--najm-dusty-blue);
	flex: 0 0 56px;
}

.najm-step__body {
	flex: 1;
	font-size: 16px;
	line-height: 1.55;
}

.najm-step__body h3 {
	font-size: 22px;
	margin-bottom: 8px;
	margin-top: 0;
	color: var(--najm-cream);
}

/* target strong nested inside em tag */
.najm-step__body em > strong {
	background: var(--najm-powder);	
	color: var(--najm-burgundy-dark);
	font-weight: 400;
	padding: 8px 16px;
	font-style: normal;
}

/* ---------- Why ---------- */
.najm-why {
	background: var(--najm-cream-light);
	padding: 40px 0;
	color: var(--najm-burgundy);
}

.najm-why-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	padding: 0 var(--najm-pad);
}

.najm-why-hero {
	border-radius: 2px;
	overflow: hidden;
	margin-bottom: 24px;
}

.najm-why-hero picture,
.najm-why-hero img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.najm-why__lede {
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	margin-bottom: 16px;
}

.najm-why__copy {
	font-size: 17px;
	line-height: 1.6;
}

.najm-pillars {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}

.najm-pillar {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	padding-top: 16px;
}

.najm-pillar__icon-img {
	object-fit: contain;
}

.najm-pillar__title {
	font-size: 22px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0;
}

.najm-pillar__desc {
	font-size: 15px;
	line-height: 1.5;
	color: var(--najm-burgundy-dark);
}

@media (min-width: 768px) {
	.najm-pillars {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ---------- Pricing ---------- */
.najm-pricing {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 48px var(--najm-pad);
}

.najm-pricing-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.najm-pricing__intro {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	color: inherit;
}

.najm-price-grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.najm-price-card {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.najm-price-card--dark {
	background: var(--najm-burgundy);
	color: var(--najm-cream);
}

.najm-price-card--light {
	background: var(--najm-cream-light);
	color: var(--najm-burgundy);
}

.najm-price-card__figure {
	font-weight: 700;
	font-size: 48px;
	line-height: 1;
}

.najm-price-card__tag {
	font-weight: 500;
	font-size: 16px;
}

.najm-price-card__desc {
	font-size: 15px;
	line-height: 1.5;
}

.najm-price-card__desc > *:first-child {
	margin-top: 0;
}

.najm-price-card__desc > *:last-child {
	margin-bottom: 0;
}

.najm-price-faq {
	font-size: 16px;
	line-height: 1.55;
}

.najm-interested {
	text-align: center;
}

.najm-interested__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: 32px;
	color: inherit;
	margin-bottom: 8px;
}

.najm-interested__link {
	font-weight: 700;
	font-size: 17px;
	color: inherit;
	text-decoration: none;
}

/* ---------- FAQ ---------- */
.najm-faq {
	background: var(--najm-cream-light);
	padding: 40px var(--najm-pad);
}

.najm-faq-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.najm-faq__intro {
	font-size: 17px;
	line-height: 1.55;
	color: var(--najm-burgundy);
}

.najm-faq__intro > *:first-child {
	margin-top: 0;
}

.najm-faq__intro > *:last-child {
	margin-bottom: 0;
}

.najm-faq-item {
	padding: 0 0 12px;
	border-bottom: 2px solid var(--najm-powder);
}

.najm-faq-item summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	cursor: pointer;
}

.najm-faq-item summary::-webkit-details-marker {
	display: none;
}

.najm-faq-q {
	font-weight: 700;
	font-size: 17px;
	color: var(--najm-burgundy);
	flex: 1;
}

.najm-faq-chevron {
	flex: 0 0 18px;
	color: var(--najm-dusty-blue);
	transition: transform 0.2s ease;
}

.najm-faq-item[open] .najm-faq-chevron {
	transform: rotate(180deg);
}

.najm-faq-a {
	margin-top: 12px;
	font-size: 15px;
	line-height: 1.55;
	color: var(--najm-burgundy-dark);
}

/* ---------- Apartments ---------- */
.najm-apts {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 40px var(--najm-pad);
}

.najm-apts-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
}

.najm-apts__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(32px, 8vw, 44px);
	color: inherit;
	margin-bottom: 24px;
}

.najm-apts-swiper {
	--najm-apts-slide-h: 288px;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}

.najm-apts-swiper .swiper-wrapper {
	align-items: stretch;
}

.najm-apts-swiper .swiper-slide {
	width: auto;
	height: var(--najm-apts-slide-h);
}

.najm-apts-slide__media {
	height: var(--najm-apts-slide-h);
	display: block;
}

.najm-apts-slide__media picture,
.najm-apts-slide__media img {
	display: block;
	height: var(--najm-apts-slide-h);
	width: auto;
	max-width: none;
	object-fit: cover;
}

/* ---------- Instagram ---------- */
.najm-ig {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 32px var(--najm-pad) 48px;
}

.najm-ig-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.najm-ig__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(32px, 8vw, 42px);
	color: inherit;
}

.najm-ig__desc {
	font-size: 16px;
	line-height: 1.55;
}

.najm-ig__desc > *:first-child {
	margin-top: 0;
}

.najm-ig__desc > *:last-child {
	margin-bottom: 0;
}

.najm-ig__link {
	font-weight: 700;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.najm-ig-card {
	background: var(--najm-white);
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.najm-ig-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.najm-ig-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	padding: 2px;
	background: conic-gradient(from 140deg, #c4818f, #4b5783, #c1d5f0, #c4818f);
}

.najm-ig-avatar-inner {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--najm-burgundy);
}

.najm-ig-handle {
	font-weight: 700;
	font-size: 15px;
	color: var(--najm-burgundy);
}

.najm-ig-sub {
	font-size: 13px;
	color: var(--najm-burgundy);
}

.najm-ig-photo,
.najm-ig-video {
	width: 100%;
	display: block;
	border-radius: 8px;
	max-height: 80vh;
}

/* ---------- Contact ---------- */
.najm-contact {
	background: var(--najm-cream-light);
	padding: 40px var(--najm-pad);
}

.najm-contact-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
}

.najm-contact-head {
	margin-bottom: 32px;
}

.najm-contact__title {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: clamp(40px, 10vw, 64px);
	color: var(--najm-burgundy);
}

.najm-contact__subtitle {
	margin-top: 12px;
	font-size: 17px;
	line-height: 1.55;
}

.najm-contact-body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.najm-person {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
}

.najm-person__avatar-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
}

.najm-person__name {
	font-weight: 700;
	font-size: 20px;
}

.najm-form-card {
	background: var(--najm-powder);
	color: var(--najm-burgundy-dark);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.najm-form-card__intro {
	font-size: 16px;
	line-height: 1.55;
}

.najm-form-card__intro > *:first-child {
	margin-top: 0;
}

.najm-form-card__intro > *:last-child {
	margin-bottom: 0;
}

.najm-field__label {
	font-size: 12px;
	font-weight: 500;
	display: block;
	margin-bottom: 4px;
	color: inherit;
}

.najm-field__input,
.najm-field__textarea,
.najm-field__select {
	width: 100%;
	border: 1px solid var(--najm-burgundy);
	background: transparent;
	padding: 10px 12px;
	font-family: inherit;
	font-size: 16px;
	color: inherit;
	border-radius: 0;
}

.najm-field__textarea {
	min-height: 120px;
	resize: vertical;
}

.najm-field-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.najm-submit {
	background: var(--najm-burgundy);
	color: var(--najm-cream);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 28px;
	border: 0;
	cursor: pointer;
	align-self: flex-start;
}

.najm-submit:hover {
	background: var(--najm-burgundy-dark);
}

.najm-form-message {
	margin: 0;
	font-size: 15px;
}

/* ---------- Footer ---------- */
.najm-footer-before {
	background: var(--najm-cream-light);
}

.najm-curve-light-on-dark {
	height: 34px;
	background: var(--najm-burgundy);
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.najm-footer {
	background: var(--najm-burgundy);
	color: var(--najm-cream);
	padding: 40px var(--najm-pad) 24px;
}

.najm-footer-inner {
	max-width: var(--najm-container);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.najm-footer__logo {
	font-family: var(--najm-display);
	font-weight: 800;
	font-size: 48px;
	line-height: 1;
}

.najm-footer__tagline {
	font-size: 17px;
	line-height: 1.45;
	margin-top: 8px;
}

.najm-footer__tagline > *:first-child {
	margin-top: 0;
}

.najm-footer__tagline > *:last-child {
	margin-bottom: 0;
}

.najm-footer__copyright {
	font-size: inherit;
	color: inherit;
}

.najm-footer-col__title {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--najm-dusty-pink);
	margin-bottom: 8px;
	font-weight: 700;
}

.najm-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.najm-footer-col a {
	display: block;
	color: var(--najm-cream);
	text-decoration: none;
	line-height: 1.8;
	font-size: 15px;
}

.najm-footer-col--social a {
	color: var(--najm-powder);
}

.najm-footer__address {
	display: block;
	font-size: 15px;
	line-height: 1.6;
}

.najm-footer-bottom {
	max-width: var(--najm-container);
	margin: 32px auto 0;
	padding-top: 16px;
	border-top: 1px solid rgba(239, 222, 202, 0.2);
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	color: rgba(239, 222, 202, 0.7);
}

.najm-footer-legal a {
	color: inherit;
}

/* ---------- Desktop ---------- */
@media (min-width: 1024px) {
	.najm-nav--desktop {
		display: flex;
	}

	.najm-topbar--mobile {
		display: none;
	}

	.najm-hero {
		min-height: 560px;
	}

	.najm-hero-arch--mobile {
		display: none;
	}

	.najm-hero-arch--desktop {
		display: block;
		width: min(520px, 40vw);
		justify-self: end;
	}

	.najm-hero__inner--desktop {
		display: grid;
		grid-template-columns: 1.1fr 1fr;
		align-items: end;
		gap: 32px;
		max-width: 1440px;
		margin: 0 auto;
		padding: 64px var(--najm-pad-desktop) 120px;
		min-height: 480px;
	}

	.najm-hero__titles h1 {
		font-family: var(--najm-display);
		font-weight: 800;
		font-size: clamp(48px, 8vw, 120px);
		line-height: 0.95;
		letter-spacing: -0.03em;
		margin-bottom: 24px;
	}

	.najm-hero__titles .najm-hero__subtitle {
		font-size: 22px;
		line-height: 1.45;
		max-width: 480px;
		margin-bottom: 16px;
	}

	.najm-title-block--mobile {
		display: none;
	}

	.najm-hero-curve--mobile {
		display: none;
	}

	.najm-hero-curve--desktop {
		display: block;
	}

	.najm-stats {
		padding: 80px var(--najm-pad-desktop);
	}

	.najm-stats__inner {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 48px;
	}

	.najm-stat__value {
		font-size: 96px;
	}

	.najm-stat__label {
		font-size: 18px;
		max-width: 280px;
	}

	/* Desktop: left column = title stacked above compare; right column = 9:16 video full height */
	.najm-video-compare__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) min(38vw, 420px);
		grid-template-rows: auto 1fr;
		grid-template-areas:
			"title video"
			"compare video";
		align-items: start;
		column-gap: 48px;
		row-gap: 32px;
		padding: 40px var(--najm-pad-desktop) 80px;
	}

	.najm-video-compare__inner--no-title {
		grid-template-areas:
			"compare video";
		grid-template-rows: auto;
	}

	.najm-video-compare__inner--no-compare {
		grid-template-areas:
			"title video";
		grid-template-rows: auto;
	}

	.najm-video-compare__inner--no-video {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"compare";
		grid-template-rows: auto;
		row-gap: 24px;
	}

	.najm-video-compare__inner--no-title.najm-video-compare__inner--no-video {
		grid-template-areas: "compare";
	}

	.najm-video-compare__inner--no-title.najm-video-compare__inner--no-compare:not(.najm-video-compare__inner--no-video) {
		grid-template-columns: minmax(260px, 420px);
		grid-template-areas: "video";
		justify-content: center;
		margin-inline: auto;
	}

	.najm-video__title {
		grid-area: title;
		font-size: clamp(40px, 4vw, 72px);
		margin: 0;
	}

	.najm-video-compare__video-cell {
		grid-area: video;
		display: flex;
		justify-content: flex-end;
		align-items: start;
		height: 100%;
		min-height: 0;
	}

	.najm-video-compare__inner .najm-compare-inner {
		grid-area: compare;
		flex-direction: row;
		gap: 32px;
		align-self: start;
	}

	.najm-video-compare__inner .najm-video {
		width: 100%;
		max-width: 100%;
		max-height: min(82vh, 900px);
	}

	.najm-video-compare__inner .najm-compare-block {
		padding: 40px;
		flex: 1;
		font-size: 18px;
	}

	.najm-how {
		padding: 80px 0;
	}

	.najm-how-inner {
		padding: 0 var(--najm-pad-desktop);
	}

	.najm-how-top {
		margin-bottom: 48px;
	}

	/* Title + intro (stacked) | image */
	.najm-how-top:has(.najm-how-head):has(.najm-how__photo) {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 48px;
		align-items: start;
	}

	.najm-how-top:has(.najm-how-head):has(.najm-how__photo) .najm-how-head {
		margin-bottom: 0;
		padding-top: 0;
	}

	.najm-how__photo {
		position: static;
		left: auto;
		width: 100%;
		max-width: none;
		margin: 0;
		border-radius: 2px;
		align-self: start;
	}

	.najm-how__title {
		font-size: 96px;
	}

	.najm-how-steps {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	.najm-step {
		display: flex;
		flex-direction: column;
		padding: 24px 16px;
	}

	.najm-step__num {
		flex: none;
		font-size: 72px;
	}

	.najm-why-hero {
		height: 420px;
	}

	.najm-why-body {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		margin-bottom: 48px;
	}

	.najm-pillars {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 24px;
	}

	.najm-pricing__intro {
		font-size: 28px;
	}

	.najm-price-grid {
		flex-direction: row;
		gap: 24px;
	}

	.najm-price-card {
		flex: 1;
		min-height: 240px;
	}

	.najm-price-card__figure {
		font-size: 80px;
	}

	.najm-faq-inner {
		flex-direction: row;
		gap: 48px;
		align-items: flex-start;
	}

	.najm-faq-head {
		flex: 0 0 36%;
	}

	.najm-faq-list {
		flex: 1;
	}

	.najm-ig-inner {
		flex-direction: row;
		gap: 64px;
		align-items: center;
	}

	.najm-ig-card {
		max-width: 480px;
		margin-left: auto;
	}

	.najm-contact-head {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: end;
	}

	.najm-contact-body {
		flex-direction: row;
		gap: 48px;
		align-items: flex-start;
	}

	.najm-person {
		flex: 0 0 280px;
	}

	.najm-form-card {
		flex: 1;
	}

	.najm-field-row {
		grid-template-columns: 1fr 1fr;
	}

	.najm-footer-inner {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 48px;
	}

	.najm-footer-brand {
		flex: 1 1 30%;
	}

	.najm-footer-bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
