:root {
    --nl-green: #287b65;
    --nl-green-dark: #1f5f4f;
    --nl-green-soft: #e7f1ed;
    --nl-coral: #d89a83;
    --nl-coral-dark: #bd7862;
    --nl-cream: #f8f1ea;
    --nl-cream-2: #fffaf5;
    --nl-ink: #26342f;
    --nl-muted: #6c7a75;
    --nl-white: #ffffff;
    --nl-border: rgba(40, 123, 101, 0.16);
    --nl-shadow: 0 22px 60px rgba(31, 95, 79, 0.14);
    --nl-radius-lg: 28px;
    --nl-radius-md: 18px;
    --nl-radius-sm: 12px;
    --nl-container: 1180px;
}

/* =========================================================
   Base
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--nl-ink);
    background: var(--nl-cream-2);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.nl-page-loading {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

.nl-container {
    width: min(100% - 32px, var(--nl-container));
    margin-inline: auto;
}

.nl-header,
.nl-hero,
.nl-section,
.nl-footer {
    overflow-x: clip;
}

/* =========================================================
   Loader
========================================================= */

.nl-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 35%, rgba(216, 154, 131, 0.18), transparent 32%),
        var(--nl-cream-2);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nl-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.nl-loader__card {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 30px 34px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--nl-border);
    border-radius: 28px;
    box-shadow: var(--nl-shadow);
    backdrop-filter: blur(16px);
}

.nl-loader__logo {
    width: 118px;
    height: auto;
}

.nl-loader__spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(40, 123, 101, 0.16);
    border-top-color: var(--nl-green);
    border-radius: 50%;
    animation: nl-spin 0.8s linear infinite;
}

.nl-loader__card p {
    margin: 0;
    color: var(--nl-muted);
    font-weight: 800;
    font-size: 0.92rem;
}

@keyframes nl-spin {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   Header / Navigation
========================================================= */

.nl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 245, 0.88);
    border-bottom: 1px solid var(--nl-border);
    backdrop-filter: blur(18px);
    transition: background 0.22s ease, box-shadow 0.22s ease;
}

.nl-header.is-scrolled {
    background: rgba(255, 250, 245, 0.96);
    box-shadow: 0 12px 34px rgba(31, 95, 79, 0.09);
}

.nl-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nl-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nl-brand__logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex: 0 0 auto;
}

.nl-brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--nl-white);
    background: var(--nl-green);
    border-radius: 50%;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 28px rgba(40, 123, 101, 0.22);
}

.nl-brand__text {
    display: grid;
    min-width: 0;
    line-height: 1.1;
}

.nl-brand__text strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.nl-brand__text small {
    margin-top: 4px;
    color: var(--nl-muted);
    font-size: 0.78rem;
}

.nl-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--nl-muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.nl-nav a {
    transition: color 0.2s ease, background 0.2s ease;
}

.nl-nav a:hover {
    color: var(--nl-green);
}

.nl-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================================================
   Mobile Menu Button
========================================================= */

.nl-menu-toggle {
    display: none;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 0 12px 0 14px;
    color: var(--nl-green-dark);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--nl-border);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(31, 95, 79, 0.08);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nl-menu-toggle__label {
    line-height: 1;
}

.nl-menu-toggle__icon {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.nl-menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    display: block;
    background: var(--nl-green-dark);
    border-radius: 999px;
    transition: transform 0.22s ease, top 0.22s ease, background 0.22s ease;
}

.nl-menu-toggle__icon span:first-child {
    top: 3px;
}

.nl-menu-toggle__icon span:last-child {
    top: 10px;
}

.nl-menu-open .nl-menu-toggle {
    color: var(--nl-white);
    background: var(--nl-green);
    border-color: var(--nl-green);
}

.nl-menu-open .nl-menu-toggle__icon span {
    background: var(--nl-white);
}

.nl-menu-open .nl-menu-toggle__icon span:first-child {
    top: 7px;
    transform: rotate(45deg);
}

.nl-menu-open .nl-menu-toggle__icon span:last-child {
    top: 7px;
    transform: rotate(-45deg);
}

/* =========================================================
   Buttons
========================================================= */

.nl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nl-btn:hover {
    transform: translateY(-2px);
}

.nl-btn--primary {
    color: var(--nl-white);
    background: var(--nl-green);
    box-shadow: 0 16px 36px rgba(40, 123, 101, 0.22);
}

.nl-btn--primary:hover {
    background: var(--nl-green-dark);
}

.nl-btn--ghost {
    color: var(--nl-green-dark);
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--nl-border);
}

.nl-btn--ghost:hover {
    border-color: rgba(40, 123, 101, 0.32);
    box-shadow: 0 14px 30px rgba(31, 95, 79, 0.1);
}

/* =========================================================
   Eyebrow / Small Labels
========================================================= */

.nl-eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: var(--nl-green-dark);
    background: var(--nl-green-soft);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nl-eyebrow--light {
    color: var(--nl-white);
    background: rgba(255, 255, 255, 0.16);
}

/* =========================================================
   Hero
========================================================= */

.nl-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 58px;
    background:
        radial-gradient(circle at 18% 10%, rgba(216, 154, 131, 0.22), transparent 32%),
        radial-gradient(circle at 88% 16%, rgba(40, 123, 101, 0.14), transparent 30%),
        linear-gradient(135deg, var(--nl-cream-2), var(--nl-cream));
}

.nl-hero::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 420px;
    height: 420px;
    background: rgba(40, 123, 101, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.nl-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
    gap: 58px;
    align-items: center;
}

.nl-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.9rem);
    line-height: 0.95;
    letter-spacing: -0.075em;
}

.nl-hero p {
    max-width: 660px;
    margin: 26px 0 0;
    color: var(--nl-muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.nl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.nl-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-top: 38px;
}

.nl-hero__meta div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-md);
    box-shadow: 0 14px 38px rgba(31, 95, 79, 0.08);
}

.nl-hero__meta strong,
.nl-hero__meta span {
    display: block;
}

.nl-hero__meta strong {
    color: var(--nl-green-dark);
    font-size: 1rem;
}

.nl-hero__meta span {
    margin-top: 3px;
    color: var(--nl-muted);
    font-size: 0.9rem;
}

.nl-hero__visual {
    position: relative;
    min-height: 580px;
    overflow: visible;
}

.nl-hero__photo {
    position: absolute;
    inset: 0 0 auto auto;
    width: min(100%, 430px);
    height: 560px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 220px 220px 34px 34px;
    box-shadow: var(--nl-shadow);
}

.nl-hero__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

.nl-photo-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--nl-green-dark);
    background:
        linear-gradient(135deg, rgba(40, 123, 101, 0.08), rgba(216, 154, 131, 0.22)),
        var(--nl-white);
    border: 1px dashed rgba(40, 123, 101, 0.32);
    border-radius: inherit;
    text-align: center;
    font-weight: 900;
}

.nl-photo-placeholder span {
    padding: 10px 14px;
    background: rgba(255, 250, 245, 0.78);
    border-radius: 999px;
}

.nl-photo-placeholder--soft {
    min-height: 440px;
    border-radius: var(--nl-radius-lg);
}

.nl-hero__card {
    position: absolute;
    width: 230px;
    padding: 18px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: 22px;
    box-shadow: var(--nl-shadow);
}

.nl-hero__card strong,
.nl-hero__card span {
    display: block;
}

.nl-hero__card strong {
    color: var(--nl-green-dark);
}

.nl-hero__card span {
    margin-top: 4px;
    color: var(--nl-muted);
    font-size: 0.9rem;
}

.nl-hero__card--top {
    top: 74px;
    left: 0;
}

.nl-hero__card--bottom {
    right: 12px;
    bottom: 42px;
    background: var(--nl-coral);
    color: var(--nl-white);
}

.nl-hero__card--bottom strong,
.nl-hero__card--bottom span {
    color: var(--nl-white);
}

/* =========================================================
   Info Strip
========================================================= */

.nl-info-strip {
    padding: 0 0 72px;
    background: var(--nl-cream);
}

.nl-info-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -24px;
}

.nl-info-strip article {
    position: relative;
    padding: 28px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    box-shadow: 0 18px 44px rgba(31, 95, 79, 0.09);
}

.nl-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--nl-white);
    background: var(--nl-green);
    border-radius: 50%;
    font-size: 1rem;
}

.nl-info-strip h2,
.nl-info-strip p {
    margin: 0;
}

.nl-info-strip h2 {
    margin-top: 18px;
    font-size: 1.25rem;
}

.nl-info-strip p {
    margin-top: 8px;
    color: var(--nl-muted);
}

/* =========================================================
   Sections
========================================================= */

.nl-section {
    padding: 92px 0;
    background: var(--nl-cream-2);
}

.nl-section--soft {
    background: var(--nl-cream);
}

.nl-section--green {
    color: var(--nl-white);
    background:
        radial-gradient(circle at 20% 20%, rgba(216, 154, 131, 0.26), transparent 34%),
        linear-gradient(135deg, var(--nl-green-dark), var(--nl-green));
}

.nl-section__heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.nl-section__heading .nl-eyebrow {
    margin-inline: auto;
}

.nl-section__heading h2,
.nl-about h2,
.nl-modalities h2,
.nl-privacy h2,
.nl-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.nl-section__heading p,
.nl-about p,
.nl-modalities p,
.nl-privacy p,
.nl-cta p {
    margin: 16px 0 0;
    color: var(--nl-muted);
    font-size: 1.05rem;
}

/* =========================================================
   About
========================================================= */

.nl-about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.nl-about__photo {
    position: relative;
    z-index: 1;
    min-height: 440px;
    overflow: hidden;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    box-shadow: var(--nl-shadow);
}

.nl-about__img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.nl-about__image {
    position: relative;
}

.nl-about__image::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -22px;
    width: 170px;
    height: 170px;
    background: var(--nl-coral);
    border-radius: 50%;
    opacity: 0.32;
    z-index: 0;
    pointer-events: none;
}

.nl-about__image .nl-photo-placeholder {
    position: relative;
    z-index: 1;
}

.nl-about__content {
    position: relative;
}

.nl-check-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.nl-check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--nl-muted);
}

.nl-check-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    color: var(--nl-white);
    background: var(--nl-green);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

/* =========================================================
   Services
========================================================= */

.nl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nl-service-card {
    padding: 28px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    box-shadow: 0 18px 44px rgba(31, 95, 79, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nl-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--nl-shadow);
}

.nl-service-card__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--nl-green-dark);
    background: var(--nl-green-soft);
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 900;
}

.nl-service-card h3 {
    margin: 20px 0 8px;
    font-size: 1.25rem;
}

.nl-service-card p {
    margin: 0;
    color: var(--nl-muted);
}

/* =========================================================
   Modalities
========================================================= */

.nl-modalities {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
    align-items: center;
}

.nl-modalities p,
.nl-cta p {
    color: rgba(255, 255, 255, 0.76);
}

.nl-modality-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.nl-modality-cards article {
    padding: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--nl-radius-lg);
}

.nl-modality-cards h3 {
    margin: 18px 0 8px;
}

.nl-modality-cards p {
    margin: 0;
}

.nl-modality-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--nl-green-dark);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 18px;
    font-size: 1.35rem;
}

/* =========================================================
   Steps
========================================================= */

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

.nl-steps article {
    position: relative;
    padding: 26px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
}

.nl-steps span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--nl-white);
    background: var(--nl-coral);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 900;
}

.nl-steps h3 {
    margin: 20px 0 8px;
}

.nl-steps p {
    margin: 0;
    color: var(--nl-muted);
}

/* =========================================================
   Privacy
========================================================= */

.nl-privacy {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 32px;
    align-items: center;
}

.nl-privacy__box {
    padding: 30px;
    background: var(--nl-white);
    border: 1px solid var(--nl-border);
    border-radius: var(--nl-radius-lg);
    box-shadow: var(--nl-shadow);
}

.nl-privacy__box h3 {
    margin: 0;
}

/* =========================================================
   CTA / Contact
========================================================= */

.nl-cta {
    padding: 86px 0;
    color: var(--nl-white);
    background:
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.13), transparent 28%),
        linear-gradient(135deg, var(--nl-coral-dark), var(--nl-coral));
}

.nl-cta__inner {
    display: grid;
    grid-template-columns: 1fr 0.62fr;
    gap: 42px;
    align-items: center;
}

.nl-contact-card {
    display: grid;
    gap: 12px;
    padding: 28px;
    color: var(--nl-ink);
    background: var(--nl-white);
    border-radius: var(--nl-radius-lg);
    box-shadow: 0 18px 48px rgba(38, 52, 47, 0.12);
}

.nl-contact-card a,
.nl-contact-card > span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    background: var(--nl-cream);
    border: 1px solid rgba(216, 154, 131, 0.22);
    border-radius: 999px;
    color: var(--nl-green-dark);
    font-weight: 850;
}

.nl-contact-card i {
    color: var(--nl-coral-dark);
    font-size: 0.95rem;
}

/* =========================================================
   Footer
========================================================= */

.nl-footer {
    padding: 62px 0 28px;
    color: rgba(255, 255, 255, 0.8);
    background: #173f36;
}

.nl-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 0.9fr 0.7fr;
    gap: 28px;
}

.nl-brand--footer .nl-brand__logo {
    width: 62px;
    height: 62px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
}

.nl-brand--footer .nl-brand__mark {
    background: var(--nl-coral);
}

.nl-brand--footer .nl-brand__text strong {
    color: var(--nl-white);
}

.nl-brand--footer .nl-brand__text small {
    color: rgba(255, 255, 255, 0.72);
}

.nl-footer__text {
    max-width: 360px;
    margin: 18px 0 0;
}

.nl-footer h3 {
    margin: 0 0 16px;
    color: var(--nl-white);
    font-size: 1rem;
}

.nl-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nl-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.nl-footer a:hover {
    color: var(--nl-white);
}

.nl-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.nl-footer__bottom p {
    margin: 0;
}

/* =========================================================
   Go To Top
========================================================= */

.nl-go-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--nl-white);
    background: var(--nl-green);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 32px rgba(40, 123, 101, 0.24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.nl-go-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nl-go-top:hover {
    background: var(--nl-green-dark);
}

/* =========================================================
   Reveal Animations
========================================================= */

.nl-reveal {
    opacity: 0;
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--nl-delay, 0ms);
    will-change: opacity, transform;
}

.nl-reveal--up {
    transform: translateY(44px);
}

.nl-reveal--left {
    transform: translateX(-44px);
}

.nl-reveal--right {
    transform: translateX(44px);
}

.nl-reveal--zoom {
    transform: scale(0.94);
}

.nl-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.nl-icon i,
.nl-service-card__icon i,
.nl-modality-icon i,
.nl-steps span i {
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .nl-reveal {
        opacity: 1;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================================================
   Tablet
========================================================= */

@media (min-width: 721px) and (max-width: 1024px) {
    .nl-header__actions {
        display: none;
    }

    .nl-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nl-nav {
        position: fixed;
        top: 88px;
        left: 24px;
        right: 24px;
        z-index: 90;
        display: grid;
        gap: 8px;
        padding: 14px;
        background: rgba(255, 250, 245, 0.98);
        border: 1px solid var(--nl-border);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(31, 95, 79, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        backdrop-filter: blur(18px);
    }

    .nl-menu-open .nl-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nl-nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 16px;
        color: var(--nl-green-dark);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(40, 123, 101, 0.08);
        border-radius: 16px;
    }

    .nl-hero {
        padding: 64px 0 48px;
    }

    .nl-hero__grid,
    .nl-about,
    .nl-modalities,
    .nl-privacy,
    .nl-cta__inner {
        grid-template-columns: 1fr;
    }

    .nl-hero h1 {
        font-size: clamp(2.6rem, 8vw, 4.6rem);
    }

    .nl-hero__visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .nl-hero__photo {
        position: relative;
        inset: auto;
        width: min(100%, 390px);
        height: 510px;
        margin-inline: auto;
    }

    .nl-hero__card,
    .nl-hero__card--top,
    .nl-hero__card--bottom {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 390px);
        margin: 14px auto 0;
    }

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

    .nl-steps,
    .nl-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   Mobile
========================================================= */

@media (max-width: 720px) {
    html,
    body {
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
    }

    .nl-container {
        width: min(100% - 28px, var(--nl-container));
    }

    .nl-header {
        background: rgba(255, 250, 245, 0.96);
    }

    .nl-header__inner {
        min-height: 68px;
        gap: 10px;
    }

    .nl-brand {
        gap: 9px;
    }

    .nl-brand__logo {
        width: 42px;
        height: 42px;
    }

    .nl-brand__text strong {
        max-width: 145px;
        overflow: hidden;
        font-size: 0.88rem;
        line-height: 1.05;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nl-brand__text small {
        margin-top: 3px;
        font-size: 0.68rem;
    }

    .nl-header__actions {
        display: none;
    }

    .nl-menu-toggle {
        display: inline-flex;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nl-nav {
        position: fixed;
        top: 76px;
        left: 14px;
        right: 14px;
        z-index: 90;
        display: grid;
        gap: 8px;
        padding: 12px;
        background: rgba(255, 250, 245, 0.98);
        border: 1px solid var(--nl-border);
        border-radius: 22px;
        box-shadow: 0 24px 60px rgba(31, 95, 79, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px) scale(0.98);
        transform-origin: top right;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        backdrop-filter: blur(18px);
    }

    .nl-menu-open .nl-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .nl-nav a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0 14px;
        color: var(--nl-green-dark);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(40, 123, 101, 0.08);
        border-radius: 15px;
        font-size: 0.92rem;
    }

    .nl-nav a:hover {
        background: var(--nl-green-soft);
    }

    .nl-loader__logo {
        width: 98px;
    }

    .nl-hero {
        padding: 36px 0 30px;
    }

    .nl-hero::before,
    .nl-about__image::after {
        display: none;
    }

    .nl-about__photo,
.nl-about__img {
    min-height: 250px;
    border-radius: 22px;
}

    .nl-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nl-eyebrow {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 0.66rem;
        letter-spacing: 0.09em;
    }

    .nl-hero h1 {
        max-width: 100%;
        font-size: clamp(1.85rem, 9vw, 2.65rem);
        line-height: 1.03;
        letter-spacing: -0.04em;
    }

    .nl-hero p {
        margin-top: 14px;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .nl-hero__actions {
        gap: 10px;
        margin-top: 20px;
    }

    .nl-btn {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.86rem;
    }

    .nl-hero__meta {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .nl-hero__meta div {
        padding: 14px 15px;
        border-radius: 18px;
    }

    .nl-hero__meta strong {
        font-size: 0.92rem;
    }

    .nl-hero__meta span {
        font-size: 0.82rem;
    }

    .nl-hero__visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .nl-hero__photo {
        position: relative;
        inset: auto;
        width: min(100%, 290px);
        height: 360px;
        margin: 0 auto;
        padding: 8px;
        border-radius: 140px 140px 22px 22px;
    }

    .nl-hero__card,
    .nl-hero__card--top,
    .nl-hero__card--bottom {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: min(100%, 290px);
        margin: 12px auto 0;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .nl-hero__card strong {
        font-size: 0.9rem;
    }

    .nl-hero__card span {
        font-size: 0.8rem;
    }

    .nl-info-strip {
        padding-bottom: 42px;
    }

    .nl-info-strip__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0;
    }

    .nl-info-strip article,
    .nl-service-card,
    .nl-steps article,
    .nl-privacy__box,
    .nl-contact-card {
        padding: 18px;
        border-radius: 20px;
    }

    .nl-icon {
        width: 40px;
        height: 40px;
        font-size: 0.92rem;
    }

    .nl-info-strip h2,
    .nl-service-card h3,
    .nl-steps h3 {
        font-size: 1rem;
    }

    .nl-info-strip p,
    .nl-service-card p,
    .nl-steps p,
    .nl-section__heading p,
    .nl-about p,
    .nl-modalities p,
    .nl-privacy p,
    .nl-cta p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .nl-section {
        padding: 48px 0;
        overflow: hidden;
    }

    .nl-section__heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .nl-section__heading .nl-eyebrow {
        margin-inline: 0;
    }

    .nl-section__heading h2,
    .nl-about h2,
    .nl-modalities h2,
    .nl-privacy h2,
    .nl-cta h2 {
        font-size: clamp(1.55rem, 7.6vw, 2.1rem);
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .nl-about,
    .nl-modalities,
    .nl-privacy,
    .nl-cta__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .nl-photo-placeholder--soft {
        min-height: 250px;
        border-radius: 22px;
    }

    .nl-check-list {
        gap: 8px;
        margin: 18px 0 22px;
    }

    .nl-check-list li {
        padding-left: 28px;
        font-size: 0.9rem;
    }

    .nl-services-grid,
    .nl-modality-cards,
    .nl-steps,
    .nl-footer__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nl-service-card__icon,
    .nl-modality-icon,
    .nl-steps span {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 0.95rem;
    }

    .nl-modality-cards article {
        padding: 18px;
        border-radius: 20px;
    }

    .nl-contact-card {
        gap: 10px;
    }

    .nl-contact-card a,
    .nl-contact-card > span {
        min-height: auto;
        padding: 12px 13px;
        border-radius: 16px;
        font-size: 0.86rem;
    }

    .nl-footer {
        padding: 40px 0 22px;
        overflow: hidden;
    }

    .nl-brand--footer .nl-brand__logo {
        width: 50px;
        height: 50px;
    }

    .nl-footer__grid {
        gap: 24px;
    }

    .nl-footer__text {
        margin-top: 14px;
        font-size: 0.9rem;
    }

    .nl-footer h3 {
        margin-bottom: 10px;
    }

    .nl-footer ul {
        gap: 7px;
        font-size: 0.9rem;
    }

    .nl-footer__bottom {
        flex-direction: column;
        margin-top: 26px;
        padding-top: 18px;
        font-size: 0.82rem;
    }

    .nl-go-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }

     .nl-reveal--up,
    .nl-reveal--left,
    .nl-reveal--right,
    .nl-reveal--zoom {
        transform: translateY(48px);
    }

    .nl-reveal {
        transition:
            opacity 0.9s ease,
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nl-reveal.is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nl-reveal {
        opacity: 1;
        transform: none !important;
        transition: none !important;
    }
}