/* ==========================================================================
   neuera.care Design System v2
   Award-winning warm aesthetic — Lora + Source Sans 3
   ========================================================================== */

/* --- Design Tokens --- */
:root {
  --nl-bg: #fefcf8;
  --nl-bg-warm: #f7f5f2;
  --nl-bg-cream: #faf8f5;
  --nl-bg-dark: #1a1a2e;

  --nl-text: #2d2d2d;
  --nl-text-muted: #5d5d5d;
  --nl-text-light: #8c8c8c;

  --nl-terracotta: #db8570;
  --nl-terracotta-dark: #c4705c;
  --nl-terracotta-light: rgba(219, 133, 112, 0.1);
  --nl-terracotta-glow: rgba(219, 133, 112, 0.25);
  --nl-sage: #9cad98;
  --nl-sage-light: rgba(156, 173, 152, 0.1);
  --nl-lavender: #d2c8d6;
  --nl-lavender-light: rgba(210, 200, 214, 0.12);
  --nl-sand: #e3ddd5;
  --nl-sand-light: rgba(227, 221, 213, 0.3);

  --nl-border: #e8e2da;
  --nl-radius: 1.25rem;
  --nl-radius-sm: 0.75rem;
  --nl-radius-lg: 2rem;
  --nl-radius-pill: 50rem;

  --nl-shadow-xs: 0 1px 3px rgba(45, 45, 45, 0.04);
  --nl-shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.05);
  --nl-shadow: 0 4px 24px rgba(45, 45, 45, 0.07);
  --nl-shadow-lg: 0 12px 40px rgba(45, 45, 45, 0.1);
  --nl-shadow-glow: 0 8px 32px rgba(219, 133, 112, 0.2);
  --nl-shadow-glow-lg: 0 16px 48px rgba(219, 133, 112, 0.25);

  --nl-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nl-ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --nl-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --nl-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  --bs-primary: #db8570;
  --bs-primary-rgb: 219, 133, 112;
  --bs-body-bg: #fefcf8;
  --bs-body-color: #2d2d2d;
  --bs-body-font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --bs-border-color: #e8e2da;
  --bs-link-color: #db8570;
  --bs-link-hover-color: #c4705c;
}

/* --- Base --- */
body {
  font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
  color: var(--nl-text);
  background: var(--nl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Lora', Georgia, serif;
  color: var(--nl-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { line-height: 1.75; }
.lead { font-size: 1.1rem; line-height: 1.85; color: var(--nl-text-muted); }

::selection { background: var(--nl-terracotta-light); color: var(--nl-text); }

/* --- Utility --- */
.nl-gradient-text {
  background: linear-gradient(135deg, var(--nl-terracotta) 0%, #c97a6a 50%, var(--nl-sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nl-section { padding: 5rem 0; }
.nl-section-warm { background: var(--nl-bg-warm); }
.nl-section-cream { background: var(--nl-bg-cream); }
.nl-section-dark { background: var(--nl-terracotta); color: #fff; }
.nl-section-dark h1, .nl-section-dark h2,
.nl-section-dark h3, .nl-section-dark p { color: #fff; }

.nl-glass {
  background: rgba(254, 252, 248, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--nl-radius);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(-6px) rotate(-0.5deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(219, 133, 112, 0.15); }
  50% { box-shadow: 0 0 30px rgba(219, 133, 112, 0.35); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(219, 133, 112, 0.2); }
  50% { border-color: rgba(219, 133, 112, 0.5); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s var(--nl-ease-out), transform 0.8s var(--nl-ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s var(--nl-ease-out), transform 0.8s var(--nl-ease-out);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

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

.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.25rem;
  border-radius: var(--nl-radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--nl-ease);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.nl-btn-primary {
  background: linear-gradient(135deg, var(--nl-terracotta) 0%, var(--nl-terracotta-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px var(--nl-terracotta-glow);
}
.nl-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--nl-terracotta-dark) 0%, var(--nl-terracotta) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}
.nl-btn-primary > * { position: relative; z-index: 1; }
.nl-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px var(--nl-shadow-glow);
  color: #fff;
}
.nl-btn-primary:hover::before { opacity: 1; }
.nl-btn-primary:active { transform: translateY(-1px) scale(0.98); }

.nl-btn-secondary {
  background: transparent;
  color: var(--nl-terracotta);
  border: 1.5px solid var(--nl-terracotta);
  padding: 0.8rem 2.25rem;
}
.nl-btn-secondary:hover {
  background: var(--nl-terracotta-light);
  color: var(--nl-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--nl-terracotta-light);
}

.nl-btn-white {
  background: #fff;
  color: var(--nl-terracotta);
  box-shadow: var(--nl-shadow-sm);
}
.nl-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--nl-shadow-lg);
  color: var(--nl-terracotta-dark);
}

.nl-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.nl-btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

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

.nl-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(254, 252, 248, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(227, 221, 213, 0.25);
  transition: all 0.5s var(--nl-ease);
}
.nl-header.scrolled {
  background: rgba(254, 252, 248, 0.97);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}
.nl-header.scrolled .nl-header-inner { height: 60px; }

.nl-header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.5s var(--nl-ease);
}

.nl-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--nl-terracotta);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: all 0.3s;
}
.nl-header-logo:hover { opacity: 0.75; color: var(--nl-terracotta); }

.nl-header-nav { display: flex; align-items: center; gap: 2.25rem; }

.nl-header-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nl-text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nl-header-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--nl-terracotta), var(--nl-sage));
  transition: width 0.35s var(--nl-ease);
  border-radius: 1px;
}
.nl-header-link:hover { color: var(--nl-terracotta); }
.nl-header-link:hover::after,
.nl-header-link.active::after { width: 100%; }

.nl-header-cta {
  font-size: 0.8rem !important;
  padding: 0.55rem 1.4rem !important;
}

.nl-header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--nl-text);
  padding: 0.5rem;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background 0.3s;
}
.nl-header-toggle:hover { background: rgba(0, 0, 0, 0.04); }

.nl-mobile-menu {
  display: none;
  background: var(--nl-bg);
  border-bottom: 1px solid var(--nl-border);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.nl-mobile-menu.open { display: block; animation: fadeInDown 0.3s var(--nl-ease); }

.nl-mobile-link {
  display: block;
  color: var(--nl-text);
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--nl-sand-light);
  transition: color 0.3s, padding-left 0.3s;
}
.nl-mobile-link:hover { color: var(--nl-terracotta); padding-left: 0.5rem; }

.nl-mobile-cta { display: block; text-align: center; margin-top: 1rem; width: 100%; }

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

.nl-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--nl-bg);
  padding: 5rem 0;
}
.nl-hero-compact {
  min-height: auto;
  padding: 4.5rem 0 3.5rem;
}

.nl-hero-bg { position: absolute; inset: 0; z-index: 0; }
.nl-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.nl-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,252,248,0.92), rgba(219,133,112,0.2));
}

.nl-hero-content { position: relative; z-index: 2; }

.nl-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.nl-hero-subtitle {
  font-size: 1.15rem;
  color: var(--nl-text-muted);
  max-width: 520px;
  line-height: 1.85;
}

.nl-hero-actions { display: flex; gap: 1rem; margin-top: 2.25rem; flex-wrap: wrap; }

/* Badge */
.nl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--nl-radius-pill);
  background: var(--nl-terracotta-light);
  color: var(--nl-terracotta-dark);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(219, 133, 112, 0.15);
}
.nl-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nl-terracotta);
  animation: glowPulse 2.5s ease-in-out infinite;
}

/* Floating Blobs */
.nl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.nl-blob-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--nl-lavender), transparent 70%);
  top: -8%; left: -6%;
  animation: float 8s ease-in-out infinite;
}
.nl-blob-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--nl-sand), transparent 70%);
  top: 12%; right: -4%;
  animation: floatSlow 10s ease-in-out infinite;
}
.nl-blob-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--nl-sage), transparent 70%);
  bottom: 8%; left: 18%;
  animation: float 9s ease-in-out infinite 1.5s;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.nl-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow-xs);
  transition: all 0.45s var(--nl-ease);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.nl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--nl-radius);
  box-shadow: 0 0 0 0 var(--nl-terracotta-glow);
  transition: box-shadow 0.45s var(--nl-ease);
  pointer-events: none;
}
.nl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nl-shadow-lg);
  border-color: rgba(219, 133, 112, 0.2);
}
.nl-card:hover::before {
  box-shadow: 0 0 0 1px rgba(219, 133, 112, 0.15);
}

.nl-card-body { padding: 1.75rem; }
.nl-card-img { width: 100%; height: 220px; object-fit: cover; }

.nl-card-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.nl-card-text {
  color: var(--nl-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Numbered */
.nl-card-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nl-terracotta), var(--nl-terracotta-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--nl-ease-spring);
  box-shadow: 0 4px 12px var(--nl-terracotta-glow);
}
.nl-card:hover .nl-card-number {
  transform: rotate(8deg) scale(1.12);
  box-shadow: 0 6px 20px var(--nl-terracotta-glow);
}

/* Icon */
.nl-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--nl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--nl-ease-spring);
}
.nl-card-icon-terracotta { background: var(--nl-terracotta-light); color: var(--nl-terracotta); }
.nl-card-icon-sage { background: var(--nl-sage-light); color: var(--nl-sage); }
.nl-card-icon-lavender { background: var(--nl-lavender-light); color: #9b8fa0; }
.nl-card:hover .nl-card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* ==========================================================================
   Features
   ========================================================================== */

.nl-feature {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--nl-radius);
  transition: all 0.4s var(--nl-ease);
  height: 100%;
  border: 1px solid transparent;
}
.nl-feature:hover {
  background: #fff;
  box-shadow: var(--nl-shadow);
  transform: translateY(-4px);
  border-color: var(--nl-border);
}

.nl-feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--nl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  transition: all 0.4s var(--nl-ease-spring);
}
.nl-feature:hover .nl-feature-icon { transform: scale(1.15) rotate(5deg); }

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

.nl-cta-primary {
  background: linear-gradient(135deg, var(--nl-terracotta), var(--nl-terracotta-dark), #b8604d);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: #fff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.nl-cta-primary h2, .nl-cta-primary p { color: #fff; }

.nl-cta-secondary { background: var(--nl-bg-warm); padding: 5rem 0; }
.nl-cta-outline {
  background: var(--nl-bg);
  padding: 5rem 0;
  border-top: 1px solid var(--nl-border);
  border-bottom: 1px solid var(--nl-border);
}

.nl-cta-dots {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.nl-cta-dots-1 { width: 140px; height: 140px; top: -40px; right: -40px; }
.nl-cta-dots-2 { width: 180px; height: 180px; bottom: -50px; left: -30px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.nl-testimonial-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 2rem;
  height: 100%;
  transition: all 0.4s var(--nl-ease);
  position: relative;
}
.nl-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nl-shadow);
}
.nl-testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--nl-terracotta), var(--nl-sage));
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.4s;
}
.nl-testimonial-card:hover::after { opacity: 1; }

.nl-testimonial-quote-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--nl-terracotta), var(--nl-sage));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}
.nl-testimonial-text {
  color: var(--nl-text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}
.nl-testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.nl-testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--nl-sand);
}
.nl-testimonial-name {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--nl-text);
}
.nl-testimonial-role { font-size: 0.82rem; color: var(--nl-text-light); }

/* Dark Testimonials */
.nl-testimonials-dark {
  background: linear-gradient(135deg, var(--nl-terracotta), var(--nl-terracotta-dark));
  padding: 5.5rem 0;
}
.nl-testimonials-dark h2 { color: #fff; }
.nl-testimonials-dark .nl-testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.nl-testimonials-dark .nl-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.14);
}
.nl-testimonials-dark .nl-testimonial-card::after { display: none; }
.nl-testimonials-dark .nl-testimonial-quote-icon {
  background: none;
  -webkit-text-fill-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.3);
}
.nl-testimonials-dark .nl-testimonial-text { color: rgba(255,255,255,0.92); }
.nl-testimonials-dark .nl-testimonial-name { color: #fff; }
.nl-testimonials-dark .nl-testimonial-role { color: rgba(255,255,255,0.65); }
.nl-testimonials-dark .nl-testimonial-avatar { border-color: rgba(255,255,255,0.2); }

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

.nl-step { text-align: center; padding: 1rem; }
.nl-step-img {
  width: 100%;
  border-radius: var(--nl-radius);
  box-shadow: var(--nl-shadow);
  margin-bottom: 1.5rem;
  transition: transform 0.5s var(--nl-ease);
}
.nl-step:hover .nl-step-img { transform: scale(1.04); }

.nl-step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nl-terracotta-light);
  color: var(--nl-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  margin: 0 auto 1rem;
  border: 1.5px solid rgba(219, 133, 112, 0.2);
  transition: all 0.4s var(--nl-ease-spring);
}
.nl-step:hover .nl-step-number {
  background: var(--nl-terracotta);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px var(--nl-terracotta-glow);
}

.nl-step-title { font-family: 'Lora', serif; font-weight: 600; margin-bottom: 0.75rem; }

/* ==========================================================================
   Trust Strip
   ========================================================================== */

.nl-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--nl-border);
  border-bottom: 1px solid var(--nl-border);
}
.nl-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--nl-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nl-trust-item:hover { color: var(--nl-terracotta); }
.nl-trust-item i { color: var(--nl-terracotta); font-size: 1.1rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.nl-faq-item {
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius-sm);
  margin-bottom: 0.6rem;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s var(--nl-ease);
}
.nl-faq-item:hover { border-color: rgba(219, 133, 112, 0.25); }
.nl-faq-item.active { border-color: var(--nl-terracotta); box-shadow: var(--nl-shadow-sm); }

.nl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.5rem;
  border: none;
  background: transparent;
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nl-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
}
.nl-faq-question:hover { color: var(--nl-terracotta); }

.nl-faq-chevron {
  width: 18px; height: 18px;
  color: var(--nl-terracotta);
  transition: transform 0.4s var(--nl-ease-spring);
  flex-shrink: 0;
}
.nl-faq-item.active .nl-faq-chevron { transform: rotate(180deg); }

.nl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--nl-ease);
}
.nl-faq-item.active .nl-faq-answer { max-height: 600px; }
.nl-faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--nl-text-muted);
  line-height: 1.8;
}

/* ==========================================================================
   Program Cards
   ========================================================================== */

.nl-program-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 2.25rem;
  border-left: 4px solid var(--nl-terracotta);
  transition: all 0.4s var(--nl-ease);
}
.nl-program-card:hover {
  box-shadow: var(--nl-shadow);
  transform: translateX(4px);
}
.nl-program-terracotta { border-left-color: var(--nl-terracotta); }
.nl-program-sage { border-left-color: var(--nl-sage); }
.nl-program-lavender { border-left-color: var(--nl-lavender); }
.nl-program-sand { border-left-color: var(--nl-sand); }

.nl-program-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.nl-program-name {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.nl-program-tagline {
  color: var(--nl-text-muted);
  font-style: italic;
  font-size: 0.92rem;
}
.nl-program-duration {
  background: var(--nl-bg-warm);
  color: var(--nl-text-muted);
  padding: 0.3rem 0.9rem;
  border-radius: var(--nl-radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid var(--nl-border);
}
.nl-program-description { color: var(--nl-text-muted); line-height: 1.7; margin-bottom: 1rem; }
.nl-program-symptoms { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.nl-program-tag {
  background: var(--nl-terracotta-light);
  color: var(--nl-terracotta-dark);
  padding: 0.2rem 0.7rem;
  border-radius: var(--nl-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(219, 133, 112, 0.12);
}
.nl-program-detail h5 {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.nl-program-detail p { color: var(--nl-text-muted); font-size: 0.88rem; line-height: 1.6; }
.nl-program-checklist { list-style: none; padding: 0; margin: 0; }
.nl-program-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  color: var(--nl-text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.nl-program-checklist i { color: var(--nl-terracotta); margin-top: 0.15rem; flex-shrink: 0; }

/* ==========================================================================
   Service Category Cards
   ========================================================================== */

.nl-service-category-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 1.75rem;
  height: 100%;
  transition: all 0.4s var(--nl-ease);
}
.nl-service-category-card:hover {
  box-shadow: var(--nl-shadow);
  border-color: rgba(219, 133, 112, 0.25);
}
.nl-service-category-header { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.nl-service-category-icon {
  width: 52px; height: 52px;
  border-radius: var(--nl-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--nl-ease-spring);
}
.nl-service-category-card:hover .nl-service-category-icon { transform: scale(1.08) rotate(3deg); }
.nl-service-icon-1 { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.nl-service-icon-2 { background: #FFF3E0; color: #E65100; border: 1px solid #FFE0B2; }
.nl-service-icon-3 { background: #E3F2FD; color: #1565C0; border: 1px solid #BBDEFB; }
.nl-service-icon-4 { background: #F3E5F5; color: #7B1FA2; border: 1px solid #E1BEE7; }

.nl-service-category-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  transition: color 0.3s;
}
.nl-service-category-card:hover .nl-service-category-name { color: var(--nl-terracotta); }
.nl-service-category-desc { color: var(--nl-text-muted); font-size: 0.85rem; line-height: 1.5; margin: 0; }
.nl-service-item-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--nl-border); padding-top: 1rem; }
.nl-service-item-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; font-size: 0.9rem;
}
.nl-service-item-list li:not(:last-child) { border-bottom: 1px solid var(--nl-sand-light); }
.nl-service-item-name { color: var(--nl-text); font-weight: 500; }
.nl-service-item-price { color: var(--nl-terracotta); font-weight: 600; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.nl-pricing-card {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 2.25rem;
  height: 100%;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--nl-ease);
}
.nl-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--nl-shadow-lg); }
.nl-pricing-popular {
  border-color: var(--nl-terracotta);
  box-shadow: 0 0 0 1px var(--nl-terracotta);
  animation: borderGlow 4s ease-in-out infinite;
}
.nl-pricing-popular:hover { box-shadow: var(--nl-shadow-glow-lg); }
.nl-pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--nl-terracotta), var(--nl-terracotta-dark));
  color: #fff;
  padding: 0.3rem 1.1rem;
  border-radius: var(--nl-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 4px 12px var(--nl-terracotta-glow);
}
.nl-pricing-name { font-family: 'Lora', serif; font-size: 1.5rem; margin-bottom: 0.25rem; }
.nl-pricing-duration { color: var(--nl-text-muted); font-size: 0.88rem; margin-bottom: 0.75rem; }
.nl-pricing-desc { color: var(--nl-text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }
.nl-pricing-features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.nl-pricing-features li {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--nl-sand-light);
  color: var(--nl-text-muted); font-size: 0.9rem;
}
.nl-pricing-features i { color: var(--nl-terracotta); }

/* ==========================================================================
   Office Info
   ========================================================================== */

.nl-info-box {
  background: var(--nl-bg-warm);
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.4s var(--nl-ease);
}
.nl-info-box:hover { box-shadow: var(--nl-shadow-sm); }
.nl-info-box h4 { font-family: 'Lora', serif; margin-bottom: 1.25rem; }
.nl-schedule-table { width: 100%; }
.nl-schedule-table td { padding: 0.5rem 0; border-bottom: 1px solid var(--nl-sand-light); color: var(--nl-text-muted); }
.nl-schedule-table td:last-child { text-align: right; }
.nl-info-note { color: var(--nl-terracotta); font-size: 0.88rem; margin-top: 1rem; margin-bottom: 0; }
.nl-disclaimer {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.12);
  border-radius: var(--nl-radius-sm);
  padding: 1.5rem;
}
.nl-disclaimer h5 { color: #dc3545; margin-bottom: 0.5rem; }
.nl-disclaimer p { color: var(--nl-text-muted); margin: 0; }

/* ==========================================================================
   Prose (Rich Text)
   ========================================================================== */

.nl-prose h2, .nl-prose h3, .nl-prose h4 { font-family: 'Lora', serif; margin-top: 2rem; margin-bottom: 1rem; }
.nl-prose p { line-height: 1.85; color: var(--nl-text-muted); margin-bottom: 1.25rem; }
.nl-prose a { color: var(--nl-terracotta); text-decoration: underline; text-underline-offset: 3px; }
.nl-prose a:hover { color: var(--nl-terracotta-dark); }
.nl-prose blockquote {
  border-left: 3px solid var(--nl-terracotta);
  background: var(--nl-bg-warm);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--nl-radius-sm) var(--nl-radius-sm) 0;
  margin: 1.5rem 0;
  font-style: italic;
}
.nl-prose img { border-radius: var(--nl-radius-sm); max-width: 100%; }
.nl-prose ul, .nl-prose ol { color: var(--nl-text-muted); line-height: 1.85; padding-left: 1.5rem; }

/* Image Block */
.nl-image { border-radius: var(--nl-radius); box-shadow: var(--nl-shadow); max-width: 100%; }
.nl-image-caption {
  text-align: center; color: var(--nl-text-light);
  font-style: italic; font-family: 'Lora', serif;
  font-size: 0.88rem; margin-top: 0.75rem;
}

/* Feature Split */
.nl-feature-split { display: flex; align-items: center; gap: 4rem; padding: 3rem 0; }
.nl-feature-split-reverse { flex-direction: row-reverse; }
.nl-feature-split-img { flex: 1; min-width: 0; }
.nl-feature-split-img img { width: 100%; border-radius: var(--nl-radius); box-shadow: var(--nl-shadow); }
.nl-feature-split-content { flex: 1; min-width: 0; }

/* Forms */
.nl-form-section { background: var(--nl-bg-warm); padding: 4rem 0; }
.nl-form-wrapper {
  background: #fff;
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius);
  padding: 2.5rem;
  box-shadow: var(--nl-shadow-xs);
}
.nl-form-control {
  border: 1px solid var(--nl-border);
  border-radius: var(--nl-radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--nl-text);
  background: #fff;
  transition: all 0.35s var(--nl-ease);
  width: 100%;
}
.nl-form-control:focus {
  outline: none;
  border-color: var(--nl-terracotta);
  box-shadow: 0 0 0 3px var(--nl-terracotta-light);
}
.nl-form-label { font-weight: 600; font-size: 0.88rem; color: var(--nl-text); margin-bottom: 0.4rem; display: block; }

/* Spacer Variants */
.nl-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nl-terracotta), transparent);
  opacity: 0.2; margin: 2rem auto; max-width: 160px;
}
.nl-divider-dots { display: flex; justify-content: center; gap: 0.4rem; padding: 1rem 0; }
.nl-divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--nl-terracotta); opacity: 0.35; }

/* Page Header */
.nl-page-header {
  background: var(--nl-bg-warm);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--nl-border);
}
.nl-page-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }

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

.nl-footer-cta {
  background: var(--nl-bg-dark);
  color: #fff;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.nl-footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,133,112,0.08), transparent 70%);
  pointer-events: none;
}
.nl-footer-cta h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.nl-footer-cta p { color: rgba(255, 255, 255, 0.65); max-width: 480px; margin: 0 auto 2rem; }

.nl-footer {
  background: var(--nl-bg-warm);
  padding: 4rem 0 2rem;
  color: var(--nl-text-muted);
}
.nl-footer h6 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--nl-text);
  margin-bottom: 1rem;
}
.nl-footer a { color: var(--nl-text-muted); text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.nl-footer a:hover { color: var(--nl-terracotta); }
.nl-footer-brand {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--nl-terracotta);
  margin-bottom: 0.6rem;
}
.nl-footer-tagline { font-size: 0.88rem; color: var(--nl-text-light); line-height: 1.6; }
.nl-footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.nl-footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--nl-text-muted);
  background: rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}
.nl-footer-social a:hover {
  color: var(--nl-terracotta);
  background: var(--nl-terracotta-light);
  transform: translateY(-2px);
}
.nl-footer-bottom {
  border-top: 1px solid var(--nl-border);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--nl-text-light);
}
.nl-footer-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--nl-text-light);
}
.nl-footer-trust i { color: var(--nl-sage); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
  .nl-header-nav { gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nl-hero { min-height: 65vh; padding: 3.5rem 0; }
  .nl-hero-title { font-size: 2.2rem; }
  .nl-section { padding: 3.5rem 0; }
  .nl-blob { display: none; }
  .nl-trust-strip { gap: 1rem; }
  .nl-cta-dots { display: none; }
  .nl-program-header { flex-direction: column; }
  .nl-feature-split, .nl-feature-split-reverse { flex-direction: column; gap: 2rem; }
  .nl-footer-cta { padding: 4rem 0; }
  .nl-footer-cta::before { display: none; }
}
