/* ===================================================================
   NEOLIFE WELLNESS — Enhanced UI Stylesheet
   Landing page, Auth pages, Footer, Components
   =================================================================== */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --primary:       #16786e;
  --primary-light: #1e9b8e;
  --primary-dark:  #0e524a;
  --accent:        #00fd98;
  --accent-light:  #10c97f;
  --gold:          #d4a017;
  --gold-light:    #f0c040;

  --white: #ffffff;
  --off-white: #f8fffe;
  --bg: #f0fdf9;
  --card: #ffffff;
  --ink: #0d2b27;
  --ink-light: #1e4d47;
  --muted: #4a7b75;
  --subtle: #8ab5af;

  --gray-50:  #f3fbf9;
  --gray-100: #e0f5f0;
  --gray-200: #c0e8e0;
  --gray-300: #94d1c6;
  --gray-400: #5eb8ab;
  --gray-500: #3a8e82;

  --shadow-xs: 0 1px 4px rgba(22,120,110,.06);
  --shadow-sm: 0 3px 12px rgba(22,120,110,.08);
  --shadow:    0 8px 32px rgba(22,120,110,.12);
  --shadow-lg: 0 20px 60px rgba(22,120,110,.16);
  --shadow-xl: 0 32px 80px rgba(22,120,110,.22);

  --rounded-sm:   6px;
  --rounded:     10px;
  --rounded-md:  14px;
  --rounded-lg:  20px;
  --rounded-xl:  28px;
  --rounded-2xl: 40px;
  --rounded-full: 9999px;

  --font-sans:  'Manrope', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 260ms var(--ease);
  --transition-fast: 160ms var(--ease);

  --header-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--ink);
}
p { margin: 0 0 .85rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ──────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.nl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), background var(--transition);
}
.nl-header.scrolled {
  box-shadow: 0 4px 20px rgba(22,120,110,.12);
  background: rgba(255,255,255,0.98);
}
.nl-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nl-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  white-space: nowrap;
}
.nl-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nl-logo-text strong { color: var(--primary); }
.nl-logo-text small { display: block; font-size: .65rem; font-family: var(--font-sans); color: var(--muted); font-weight: 500; letter-spacing: .04em; }

.nl-nav { display: flex; align-items: center; gap: .25rem; }
.nl-nav a {
  padding: .45rem .9rem;
  border-radius: var(--rounded-full);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-light);
  transition: background var(--transition), color var(--transition);
}
.nl-nav a:hover, .nl-nav a.active {
  background: var(--gray-100);
  color: var(--primary);
}

.nl-nav-actions { display: flex; align-items: center; gap: .6rem; }
.nl-nav-user {
  display: none;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
}
.nl-nav-user .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
}

/* Hamburger */
.nl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nl-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nl-hamburger.open span:nth-child(2) { opacity: 0; }
.nl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════ */
.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: var(--rounded-full);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
}
.nl-btn:hover { transform: translateY(-1px); }
.nl-btn:active { transform: translateY(0); }

.nl-btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(22,120,110,.35);
}
.nl-btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(22,120,110,.45);
  color: white;
}
.nl-btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.nl-btn-outline:hover {
  background: var(--primary);
  color: white;
}
.nl-btn-ghost {
  background: transparent;
  color: var(--ink-light);
  border-color: var(--gray-200);
}
.nl-btn-ghost:hover {
  background: var(--gray-50);
  color: var(--primary);
  border-color: var(--gray-300);
}
.nl-btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
}
.nl-btn-white:hover {
  background: var(--gray-50);
  color: var(--primary-dark);
}
.nl-btn-sm { padding: .45rem 1rem; font-size: .82rem; }
.nl-btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.nl-btn-xl { padding: 1rem 2.5rem; font-size: 1.1rem; }
.nl-btn-full { width: 100%; }
.nl-btn-google {
  background: white;
  color: #3c4043;
  border: 1.5px solid #dadce0;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  gap: .75rem;
}
.nl-btn-google:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.nl-btn-google svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d3b35 0%, #16786e 50%, #0e6a5e 100%);
}
.nl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,255,255,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(15,167,106,.3) 0%, transparent 55%);
}
.nl-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/official/2026-03-14%201.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
  transform: scale(1.04);
  transition: opacity 1s;
}
.nl-hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.nl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--rounded-full);
  color: #a7f3d0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.nl-hero-badge::before { content: '●'; font-size: .5rem; color: #10c97f; }

.nl-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.12;
}
.nl-hero h1 em {
  font-style: italic;
  color: #6ee7c7;
}
.nl-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
}
.nl-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.nl-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.nl-hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.nl-hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}

.nl-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.nl-hero-card {
  background: rgba(255,255,255,.95);
  border-radius: var(--rounded-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  max-width: 340px;
  width: 100%;
}
.nl-hero-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.nl-hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}
.nl-hero-card-title { font-size: 1rem; font-weight: 700; color: var(--ink); }
.nl-hero-card-sub { font-size: .8rem; color: var(--muted); }
.nl-mini-list { display: flex; flex-direction: column; gap: .6rem; }
.nl-mini-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem .75rem;
  background: var(--gray-50);
  border-radius: var(--rounded);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-light);
}
.nl-mini-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.nl-mini-item .time {
  margin-left: auto;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

/* Floating elements */
.nl-hero-float {
  position: absolute;
  background: rgba(255,255,255,.92);
  border-radius: var(--rounded-lg);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 700;
}
.nl-hero-float-1 { top: -20px; right: -20px; }
.nl-hero-float-2 { bottom: -20px; left: -20px; }
.nl-hero-float .icon { font-size: 1.2rem; }
.nl-hero-float .label { color: var(--ink); }
.nl-hero-float .val { color: var(--primary); margin-left: .2rem; }

/* ══════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════ */
.nl-trust-bar {
  background: white;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.nl-trust-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
.nl-trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--muted);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
}
.nl-trust-item .icon { font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════════════════
   SECTION HELPERS
   ══════════════════════════════════════════════════════════════════ */
.nl-section { padding: 5rem 0; }
.nl-section-sm { padding: 3rem 0; }
.nl-section-lg { padding: 6rem 0; }
.nl-section-alt { background: var(--gray-50); }
.nl-section-dark { background: var(--ink); color: white; }
.nl-section-green { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; }

.nl-section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .85rem;
  background: var(--gray-100);
  border-radius: var(--rounded-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.nl-section-label-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
}
.nl-section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .75rem;
  color: var(--ink);
}
.nl-section-heading-light { color: white; }
.nl-section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}
.nl-section-sub-light { color: rgba(255,255,255,.72); }
.nl-section-header { margin-bottom: 3rem; }
.nl-section-header-center { text-align: center; }
.nl-section-header-center .nl-section-sub { margin: 0 auto; }
.nl-section-header-center .nl-section-label { margin: 0 auto .75rem; }

/* ══════════════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.nl-stat-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.nl-stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.nl-stat-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.nl-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-sans);
  line-height: 1;
  margin-bottom: .25rem;
}
.nl-stat-label { font-size: .875rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.nl-service-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.nl-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nl-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-200);
}
.nl-service-card:hover::before { transform: scaleX(1); }
.nl-service-icon {
  width: 60px; height: 60px;
  border-radius: var(--rounded-md);
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.nl-service-card:hover .nl-service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.nl-service-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--ink);
}
.nl-service-card p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.nl-service-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nl-service-link::after { content: '→'; transition: transform var(--transition); }
.nl-service-link:hover::after { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.nl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.nl-steps::before {
  content: '';
  position: absolute;
  top: 35px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.nl-step { text-align: center; position: relative; z-index: 1; }
.nl-step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px var(--gray-100);
  transition: all var(--transition);
}
.nl-step:hover .nl-step-num {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 6px rgba(22,120,110,.15), var(--shadow);
}
.nl-step h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.nl-step p { font-size: .8rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════
   WELLNESS LIFESTYLE SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.nl-wellness-img {
  border-radius: var(--rounded-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.nl-wellness-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.nl-wellness-img:hover img { transform: scale(1.04); }
.nl-wellness-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 4rem;
  gap: .5rem;
}
.nl-wellness-img-placeholder span { font-size: 1rem; font-family: var(--font-sans); }
.nl-wellness-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.92);
  border-radius: var(--rounded-md);
  padding: .7rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}
.nl-check-list { display: flex; flex-direction: column; gap: .75rem; margin: 1.25rem 0; }
.nl-check-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--ink-light);
}
.nl-check-item .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════════
   DOCTORS / TEAM SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.nl-doctor-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.nl-doctor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.nl-doctor-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, #c9e8e4, var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.nl-doctor-img img { width: 100%; height: 100%; object-fit: cover; }
.nl-doctor-body { padding: 1.5rem; }
.nl-doctor-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .15rem; }
.nl-doctor-spec { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: .5rem; }
.nl-doctor-exp { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.nl-doctor-rating {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: #f59e0b;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
   ══════════════════════════════════════════════════════════════════ */
.nl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.nl-review-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}
.nl-review-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gray-200);
}
.nl-review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; }
.nl-review-body { font-size: .9rem; color: var(--ink-light); line-height: 1.65; flex: 1; }
.nl-review-footer { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.nl-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.nl-review-name { font-size: .9rem; font-weight: 700; color: var(--ink); }
.nl-review-email { font-size: .75rem; color: var(--muted); }
.nl-review-verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  color: var(--primary);
  font-weight: 700;
  background: var(--gray-100);
  padding: .25rem .55rem;
  border-radius: var(--rounded-full);
}

/* ══════════════════════════════════════════════════════════════════
   APPOINTMENT CTA SECTION
   ══════════════════════════════════════════════════════════════════ */
.nl-cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.nl-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/official/2026-03-14.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.nl-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nl-cta-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: white; margin-bottom: .5rem; }
.nl-cta-sub { color: rgba(255,255,255,.75); font-size: 1rem; }
.nl-cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.nl-footer {
  background: #0a2420;
  color: rgba(255,255,255,.75);
  padding: 4.5rem 0 0;
}
.nl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nl-footer-brand .nl-logo {
  color: white;
  margin-bottom: 1rem;
}
.nl-footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.nl-footer-socials {
  display: flex;
  gap: .75rem;
}
.nl-footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
}
.nl-footer-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.nl-footer-col h5 {
  font-size: .9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nl-footer-links { display: flex; flex-direction: column; gap: .55rem; }
.nl-footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nl-footer-links a:hover { color: #6ee7c7; }

.nl-footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.nl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.nl-footer-contact-item .ic { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

.nl-footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.nl-footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.nl-footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.nl-footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.nl-footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════════════════════
   AUTH PAGES
   ══════════════════════════════════════════════════════════════════ */
.nl-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nl-auth-visual {
  background: linear-gradient(160deg, #0d3b35 0%, #16786e 55%, #0fa76a 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.nl-auth-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/official/2026-03-14%201.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.nl-auth-visual > * { position: relative; z-index: 1; }
.nl-auth-visual-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: white;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}
.nl-auth-visual-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; }
.nl-auth-visual-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.nl-auth-visual-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: white;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-style: italic;
}
.nl-auth-visual-quote cite {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-style: normal;
  font-weight: 600;
}
.nl-auth-visual-stats {
  display: flex;
  gap: 1.5rem;
}
.nl-auth-visual-stat strong { display: block; color: white; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.nl-auth-visual-stat span { font-size: .75rem; color: rgba(255,255,255,.55); }

.nl-auth-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  background: white;
  overflow-y: auto;
}
.nl-auth-form-inner { max-width: 400px; width: 100%; }
.nl-auth-header { margin-bottom: 2rem; }
.nl-auth-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.nl-auth-header .back-link:hover { color: var(--primary); }
.nl-auth-title { font-size: 1.75rem; margin-bottom: .35rem; color: var(--ink); }
.nl-auth-sub { font-size: .925rem; color: var(--muted); }

/* Status pill */
.nl-status-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: var(--rounded-full);
  font-size: .77rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.nl-status-pill.ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.nl-status-pill.err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.nl-status-pill.loading {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.nl-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: statusPulse 1.4s infinite;
}
@keyframes statusPulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* Form elements */
.nl-form-group { margin-bottom: 1.1rem; }
.nl-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .4rem;
}
.nl-form-group input,
.nl-form-group select,
.nl-form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--rounded);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--ink);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.nl-form-group input:focus,
.nl-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22,120,110,.1);
}
.nl-form-group input::placeholder { color: var(--subtle); }
.nl-input-row { display: grid; gap: .6rem; }
.nl-input-row-2 { grid-template-columns: 1fr 1fr; }
.nl-input-row-auto { grid-template-columns: 120px 1fr; }

.nl-form-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1.25rem 0;
  color: var(--subtle);
  font-size: .8rem;
}
.nl-form-divider::before,
.nl-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

/* Alert */
.nl-alert {
  padding: .7rem .9rem;
  border-radius: var(--rounded);
  font-size: .875rem;
  display: none;
  margin-bottom: .9rem;
  font-weight: 500;
}
.nl-alert.show { display: block; }
.nl-alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }
.nl-alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }

.nl-auth-footer-links {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .85rem;
}
.nl-auth-footer-links a { color: var(--primary); font-weight: 700; }
.nl-auth-footer-links a:hover { text-decoration: underline; }
.nl-auth-terms {
  margin-top: 1rem;
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.nl-auth-terms a { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════════
   PAGE UTILITIES
   ══════════════════════════════════════════════════════════════════ */
.nl-page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
  background: linear-gradient(135deg, #0d3b35 0%, #16786e 55%, #0fa76a 100%);
  color: white;
}
.nl-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at bottom left, rgba(110,231,199,.2), transparent 35%);
}
.nl-page-hero .container { position: relative; z-index: 1; }
.nl-page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.nl-page-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .85rem;
  border-radius: var(--rounded-full);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .95rem;
}
.nl-page-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: white;
  margin-bottom: .8rem;
}
.nl-page-subtitle {
  max-width: 640px;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.75;
}
.nl-glass-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--rounded-xl);
  padding: 1.4rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(7, 32, 28, .18);
}
.nl-glass-card h3,
.nl-glass-card h4 { color: white; }
.nl-glass-card p { color: rgba(255,255,255,.78); }
.nl-hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 1.1rem;
}
.nl-hero-point {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: white;
}
.nl-hero-point .ic {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  flex-shrink: 0;
}
.nl-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.nl-stat-tile {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow-xs);
}
.nl-stat-tile strong {
  display: block;
  font-size: 1.45rem;
  color: var(--primary);
  line-height: 1;
  font-family: var(--font-sans);
}
.nl-stat-tile span {
  display: block;
  margin-top: .35rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
}
.nl-surface {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
}
.nl-detail-list {
  display: grid;
  gap: .85rem;
}
.nl-detail-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--gray-100);
}
.nl-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nl-detail-item span {
  color: var(--muted);
  font-size: .84rem;
}
.nl-detail-item strong {
  color: var(--ink);
  font-size: .9rem;
  text-align: right;
}
.nl-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.nl-icon-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nl-icon-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.nl-icon-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: .95rem;
  font-size: 1.35rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.nl-icon-card h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
}
.nl-icon-card p {
  color: var(--muted);
  font-size: .88rem;
}
.nl-filter-bar {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.nl-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.nl-product-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.nl-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.nl-product-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  display: grid;
  place-items: center;
  font-size: 3rem;
  overflow: hidden;
}
.nl-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nl-product-body {
  padding: 1.1rem 1.15rem 1.2rem;
}
.nl-product-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .45rem;
}
.nl-product-title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.nl-chip {
  display: inline-flex;
  align-items: center;
  padding: .24rem .55rem;
  border-radius: var(--rounded-full);
  background: var(--gray-100);
  color: var(--primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nl-product-desc {
  font-size: .84rem;
  color: var(--muted);
  min-height: 3.2em;
  margin-bottom: .85rem;
}
.nl-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .95rem;
}
.nl-price-row strong {
  font-size: 1.1rem;
  color: var(--primary);
  font-family: var(--font-sans);
}
.nl-price-row span {
  font-size: .78rem;
  color: var(--muted);
}
.nl-inline-note {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--muted);
}
.nl-inline-note strong { color: var(--ink); }
.nl-empty-card {
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--gray-200);
  border-radius: var(--rounded-lg);
  background: var(--gray-50);
}
.nl-empty-card .ic {
  font-size: 2.6rem;
  margin-bottom: .65rem;
}
.nl-status-box {
  display: none;
  padding: .8rem 1rem;
  border-radius: var(--rounded);
  font-size: .88rem;
  font-weight: 600;
}
.nl-status-box.show { display: block; }
.nl-status-box.info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.nl-status-box.success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.nl-status-box.error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.nl-highlight-card {
  background: linear-gradient(135deg, #f7fffd, #eefbf7);
  border: 1px solid var(--gray-100);
  border-radius: var(--rounded-lg);
  padding: 1.35rem;
}
.nl-highlight-card h3,
.nl-highlight-card h4 { margin-bottom: .4rem; }
.nl-highlight-card p { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════
   IMAGE MOTION
   ══════════════════════════════════════════════════════════════════ */
.nl-image-float {
  animation: nlImageFloat 6s ease-in-out infinite;
  will-change: transform;
}
.nl-image-float-slow {
  animation: nlImageFloatSlow 10s ease-in-out infinite;
  will-change: transform;
}
.nl-image-zoom {
  overflow: hidden;
}
.nl-image-zoom img {
  transition: transform .8s var(--ease);
}
.nl-image-zoom:hover img {
  transform: scale(1.06);
}
.nl-image-marquee {
  overflow: hidden;
  border-radius: var(--rounded-xl);
  border: 1px solid var(--gray-100);
  background: linear-gradient(135deg, #ffffff, #f6fffc);
}
.nl-image-marquee-track {
  display: flex;
  width: max-content;
  gap: .9rem;
  padding: .9rem;
  animation: nlMarquee 26s linear infinite;
}
.nl-image-marquee:hover .nl-image-marquee-track {
  animation-play-state: paused;
}
.nl-image-marquee-item {
  width: 220px;
  height: 150px;
  border-radius: var(--rounded-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.nl-image-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nl-parallax-layer {
  transform: translate3d(0, var(--parallax-shift, 0px), 0);
  will-change: transform;
}

.nl-glow-pulse {
  animation: nlPulseGlow 2.8s ease-in-out infinite;
}

.nl-soft-drift {
  animation: nlSoftDrift 7s ease-in-out infinite;
  animation-delay: var(--drift-delay, 0ms);
}

.nl-stagger-pop {
  opacity: 0;
  transform: translateY(20px) scale(.98);
}

.nl-stagger-pop.is-visible {
  animation: nlPopIn .6s var(--ease) forwards;
  animation-delay: var(--stagger-delay, 0ms);
}

.nl-tilt-card {
  transform-style: preserve-3d;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.nl-tilt-card:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-3px);
}

@keyframes nlImageFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.01); }
}

@keyframes nlImageFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes nlSoftDrift {
  0%, 100% { transform: translateY(0); }
  35% { transform: translateY(-4px); }
  70% { transform: translateY(3px); }
}

@keyframes nlPulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(16, 201, 127, 0); }
  50% { box-shadow: 0 0 26px rgba(16, 201, 127, .28); }
}

@keyframes nlPopIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nlMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .nl-image-float,
  .nl-image-float-slow,
  .nl-image-marquee-track,
  .nl-soft-drift,
  .nl-glow-pulse,
  .nl-stagger-pop.is-visible {
    animation: none !important;
  }

  .nl-parallax-layer,
  .nl-tilt-card {
    transform: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   PAGE TRANSITIONS + SECTION SEPARATORS
   ══════════════════════════════════════════════════════════════════ */
.nl-page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(16, 201, 127, .26), rgba(16, 201, 127, 0) 55%),
    radial-gradient(90% 90% at 82% 88%, rgba(22, 120, 110, .3), rgba(22, 120, 110, 0) 55%),
    linear-gradient(145deg, #0d3b35, #16786e 52%, #0fa76a);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

body.nl-page-enter .nl-page-transition-overlay,
body.nl-page-leave .nl-page-transition-overlay {
  opacity: 1;
}

.nl-section + .nl-section {
  position: relative;
}

.nl-section + .nl-section::before {
  content: '';
  position: absolute;
  left: clamp(1rem, 4vw, 3.5rem);
  right: clamp(1rem, 4vw, 3.5rem);
  top: -1rem;
  height: 6px;
  border-radius: 999px;
  background:
    linear-gradient(90deg,
      rgba(22, 120, 110, 0),
      rgba(22, 120, 110, .14) 18%,
      rgba(16, 201, 127, .34) 50%,
      rgba(22, 120, 110, .14) 82%,
      rgba(22, 120, 110, 0));
  filter: drop-shadow(0 3px 8px rgba(22, 120, 110, .18));
  animation: nlSectionGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes nlSectionGlow {
  0%, 100% { opacity: .55; transform: scaleX(.98); }
  50% { opacity: .95; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .nl-page-transition-overlay {
    transition: none;
  }

  .nl-section + .nl-section::before {
    animation: none;
  }
}

/* ══════════════════════════════════════════════════════════════════
   FADE-IN SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
[data-fade] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-fade].visible { opacity: 1; transform: none; }
[data-fade-delay="1"] { transition-delay: .1s; }
[data-fade-delay="2"] { transition-delay: .2s; }
[data-fade-delay="3"] { transition-delay: .3s; }
[data-fade-delay="4"] { transition-delay: .4s; }
[data-fade-delay="5"] { transition-delay: .5s; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nl-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-services-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nl-steps { grid-template-columns: repeat(2, 1fr); }
  .nl-steps::before { display: none; }
  .nl-page-hero-grid { grid-template-columns: 1fr; }
  .nl-info-grid { grid-template-columns: 1fr 1fr; }
  .nl-catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nl-hero-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
  .nl-hero-visual { display: none; }
  .nl-hero { min-height: auto; padding: calc(var(--header-h) + 40px) 0 60px; }
  .nl-hero h1 { font-size: 2rem; }

  .nl-nav { display: none; }
  .nl-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: white;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    gap: .5rem;
    z-index: 999;
  }
  .nl-hamburger { display: flex; }

  .nl-services-grid { grid-template-columns: 1fr; }
  .nl-wellness-grid { grid-template-columns: 1fr; }
  .nl-cta-inner { grid-template-columns: 1fr; }
  .nl-cta-actions { flex-direction: column; }
  .nl-steps { grid-template-columns: 1fr 1fr; }
  .nl-footer-grid { grid-template-columns: 1fr; }
  .nl-reviews-grid { grid-template-columns: 1fr; }
  .nl-doctors-grid { grid-template-columns: 1fr; }
  .nl-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-info-grid { grid-template-columns: 1fr; }
  .nl-filter-bar { grid-template-columns: 1fr; }
  .nl-catalog-grid { grid-template-columns: 1fr; }
  .nl-stat-strip { grid-template-columns: 1fr; }
  .nl-hero-points { grid-template-columns: 1fr; }
  .nl-input-row-2 { grid-template-columns: 1fr; }

  .nl-auth-page { grid-template-columns: 1fr; }
  .nl-auth-visual { display: none; }
  .nl-auth-form-side { padding: 2rem 1.25rem; min-height: 100vh; }

  .nl-footer-bottom { flex-direction: column; text-align: center; }
  .nl-trust-inner { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .nl-hero-actions { flex-direction: column; align-items: flex-start; }
  .nl-stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .nl-steps { grid-template-columns: 1fr; }
  .nl-footer-legal { justify-content: center; }
}
