/* ══ Lokala fonts — noll nätverksfördröjning, noll CLS ══════════════ */

/* Jost */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/jost-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/jost-v20-latin-700.woff2'), url('../fonts/jost-v20-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url('../fonts/jost-v20-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 900;
  font-display: optional;
  src: url('../fonts/jost-v20-latin-900.woff2') format('woff2');
}

/* Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: optional;
  src: url('../fonts/poppins-v24-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url('../fonts/poppins-v24-latin-700.woff2') format('woff2');
}

/* ═══════════════════════════════════════════════════════════════
   NordicLab — Design System v3
   Palette: Cream #f5f0e8 · Black #1a1a1a · Red #e8452c · Blush #fce4dc
   Type: Jost (headings) · Poppins (body)
═══════════════════════════════════════════════════════════════ */



/* ──────────────────────────────────────────────────────────────
   TOKENS
────────────────────────────────────────────────────────────── */
:root {
  /* Colours */
  --nl-black:    #1a1a1a;
  --nl-white:    #ffffff;
  --nl-cream:    #f5f0e8;
  --nl-cream-2:  #fce4dc;
  --nl-cream-3:  #faf8f4;
  --nl-red:      #e8452c;
  --nl-red-dark: #c73520;
  --nl-red-glow: rgba(232,69,44,.16);
  --nl-gray:     #6b7280;
  --nl-gray-2:   #374151;
  --nl-gray-lt:  #f3f4f6;
  --nl-border:   #e8e3db;
  --nl-green:    #16a34a;

  /* Menu hover/active */
  --nl-hover:      #C6282857;
  --nl-active:     #C628286E;
  --nl-menu-hover: #C6282857;
  --nl-menu-active:#C628286E;

  /* Typography */
  --font-head: 'Jost', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --s-xs:   0 1px 2px rgba(0,0,0,.05);
  --s-sm:   0 6px 18px rgba(0,0,0,.07);
  --s-md:   0 14px 38px rgba(0,0,0,.10);
  --s-lg:   0 24px 64px rgba(0,0,0,.12);
  --s-xl:   0 36px 90px rgba(0,0,0,.16);
  --s-glow: 0 10px 42px var(--nl-red-glow);

  /* Spacing */
  --sp-2xs: 6px;
  --sp-xs:  10px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;

  /* Layout */
  --max-w:    1160px;
  --header-h: 72px;

  /* Motion */
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --t-fast: 120ms;
  --t-mid:  220ms;
  --t-slow: 360ms;

  /* Focus */
  --focus:     0 0 0 4px rgba(26,26,26,.10);
  --focus-red: 0 0 0 4px rgba(232,69,44,.18);
}

/* ──────────────────────────────────────────────────────────────
   BASE / RESET
────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--nl-black);
  background: var(--nl-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }
ul, ol { list-style: none; }

:focus { outline: none; }
:focus-visible { box-shadow: var(--focus); border-radius: 12px; }
::selection { background: rgba(232,69,44,.18); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ──────────────────────────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────────────────────────── */
html, body, button, input, select, textarea {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, .nl-logo, .nl-nav a {
  font-family: var(--font-head) !important;
}

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.10;
  letter-spacing: -.03em;
  color: var(--nl-black);
}

h1 { font-size: clamp(2.25rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 4.1vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 2.8vw, 1.6rem); }
h4 { font-size: 1.12rem; letter-spacing: -.02em; }
h5 { font-size: .98rem;  letter-spacing: -.01em; }

p { color: var(--nl-gray-2); line-height: 1.78; }

.small { font-size: .9rem; color: var(--nl-gray); }
.muted { color: var(--nl-gray); }

/* ──────────────────────────────────────────────────────────────
   LAYOUT
────────────────────────────────────────────────────────────── */
.nl-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.nl-main       { padding-top: var(--header-h); }
.nl-section    { padding: var(--sp-xl) 0; }
.nl-section--sm{ padding: var(--sp-lg) 0; }
.nl-section--lg{ padding: var(--sp-2xl) 0; }
.nl-divider    { height: 1px; background: var(--nl-border); margin: 36px 0; }

/* ──────────────────────────────────────────────────────────────
   HEADER
────────────────────────────────────────────────────────────── */
.nl-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  background-color: #ffffff;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(232,227,219,0);
  transition: border-color var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), background var(--t-mid) var(--ease);
}

.nl-header.is-scrolled {
  background-color: #ffffff;
  border-color: rgba(232,227,219,.95);
  box-shadow: var(--s-sm);
}

.nl-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  transition: opacity var(--t-fast);
}

.nl-logo__icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--nl-black);
  color: var(--nl-white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  box-shadow: 0 10px 24px rgba(26,26,26,.18);
}

/* Nav */
.nl-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nl-nav__link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--nl-black);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}

.nl-nav__link:hover {
  background: var(--nl-cream);
  transform: translateY(-1px);
}

.nl-nav__link.is-active {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

/* Nav header hover override removed */

/* User menu */
.nl-nav__user { position: relative; }

.nl-nav__user-btn {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.nl-nav__user-btn:hover { background: var(--nl-cream); }

.nl-nav__user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  padding: 10px;
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--r-md);
  box-shadow: var(--s-lg);
  z-index: 100;
}

.nl-nav__user-menu.is-open {
  display: block;
  animation: nl-fade-in .16s var(--ease);
}

.nl-nav__user-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast);
}

.nl-nav__user-menu a:hover { background: var(--nl-cream); }

.nl-nav__user-divider { height: 1px; background: var(--nl-border); margin: 8px 0; }

/* Hamburger */
.nl-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  margin-left: auto;
}

.nl-hamburger span {
  width: 22px; height: 2px;
  background: var(--nl-black);
  border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast);
}

.nl-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nl-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nl-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ──────────────────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────────────────── */
.nl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  will-change: transform;
}

.nl-btn:active  { transform: scale(.98); }
.nl-btn:disabled{ opacity: .45; pointer-events: none; }

.nl-btn--primary {
  background: var(--nl-black);
  color: var(--nl-white);
  border-color: var(--nl-black);
  box-shadow: 0 12px 26px rgba(26,26,26,.18);
}
.nl-btn--primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(26,26,26,.22);
}

.nl-btn--red {
  background: var(--nl-red);
  color: var(--nl-white);
  border-color: var(--nl-red);
  box-shadow: 0 12px 26px rgba(232,69,44,.22);
}
.nl-btn--red:hover {
  background: var(--nl-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(232,69,44,.26);
}

.nl-btn--outline {
  background: transparent;
  color: var(--nl-black);
  border-color: rgba(26,26,26,.18);
}
.nl-btn--outline:hover {
  background: var(--nl-black);
  color: var(--nl-white);
  border-color: var(--nl-black);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(26,26,26,.16);
}

.nl-btn--ghost {
  background: transparent;
  color: var(--nl-black);
  border-color: transparent;
  padding-left: 8px;
  padding-right: 8px;
}
.nl-btn--ghost:hover { color: var(--nl-red); }

.nl-btn--outline-white {
  background: transparent;
  color: var(--nl-white);
  border-color: rgba(255,255,255,.42);
}
.nl-btn--outline-white:hover {
  background: var(--nl-white);
  color: var(--nl-black);
  border-color: var(--nl-white);
}

.nl-btn--sm { padding: 10px 20px; font-size: .88rem; }
.nl-btn--lg { padding: 18px 44px; font-size: 1.06rem; }
.nl-btn--xl { padding: 20px 56px; font-size: 1.14rem; }

/* ──────────────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────────────── */
.nl-hero {
  background: var(--nl-cream);
  padding: 110px 0 86px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  contain: layout style;
}

.nl-hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -220px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(252,228,220,.75) 0%, transparent 70%);
  pointer-events: none;
}

.nl-hero::after {
  content: '';
  position: absolute;
  left: -260px; bottom: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,69,44,.08) 0%, transparent 70%);
  pointer-events: none;
}

.nl-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 84px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nl-hero__title {
  font-size: clamp(2.5rem, 5.7vw, 4.0rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.nl-hero__sub {
  font-size: 1.08rem;
  color: var(--nl-gray);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 520px;
}

.nl-hero__checks {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nl-hero__check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--nl-black);
}

.nl-hero__check::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--nl-black);
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  box-shadow: 0 10px 22px rgba(26,26,26,.18);
  flex-shrink: 0;
}

.nl-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }

.nl-hero__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nl-hero__img img {
  aspect-ratio: 460 / 575;
  width: 100%;
  max-width: 460px;
  border-radius: var(--r-xl);
  box-shadow: var(--s-xl);
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.06);
}

.nl-hero__img-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  background:
    radial-gradient(800px 420px at 30% 20%, rgba(255,255,255,.55) 0%, transparent 60%),
    linear-gradient(145deg, var(--nl-cream-2) 0%, #f9d4c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--s-xl);
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}

.nl-hero__img-placeholder::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--r-xl) - 18px);
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}

/* ──────────────────────────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────────────────────────── */
.nl-section-head { margin-bottom: 56px; }
.nl-section-head--center { text-align: center; }
.nl-section-head--center .nl-section-sub { margin: 0 auto; }

.nl-section-label {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--nl-gray);
  margin-bottom: 14px;
}

.nl-section-title { margin-bottom: 14px; letter-spacing: -.035em; }

.nl-section-sub {
  font-size: 1.05rem;
  color: var(--nl-gray);
  max-width: 620px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────────────────────────
   CARDS
────────────────────────────────────────────────────────────── */
.nl-card {
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--s-xs);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), border-color var(--t-fast);
}

.nl-card--hover:hover { transform: translateY(-4px); box-shadow: var(--s-md); border-color: rgba(0,0,0,.06); }
.nl-card--cream { background: var(--nl-cream); border-color: transparent; }
.nl-card--pink  { background: var(--nl-cream-2); border-color: transparent; }

.nl-card--dark {
  background: var(--nl-black);
  border-color: transparent;
  color: var(--nl-white);
  box-shadow: 0 20px 60px rgba(26,26,26,.22);
}
.nl-card--dark h3,
.nl-card--dark p { color: var(--nl-white); }

.nl-card--glass {
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: rgba(255,255,255,.65);
  box-shadow: var(--s-md);
}

.nl-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--nl-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.nl-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.nl-card__text { font-size: .95rem; color: var(--nl-gray); line-height: 1.75; }

.nl-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: .9rem;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--t-fast), gap var(--t-fast);
}
.nl-card__link:hover { color: var(--nl-red); gap: 12px; }

/* Features grid — equal height + aligned links */
.nl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.nl-features-grid .nl-card {
  display: flex;
  flex-direction: column;
}

.nl-features-grid .nl-card .nl-card__text { flex: 1; }
.nl-features-grid .nl-card .nl-card__link { margin-top: auto; align-self: flex-start; }

/* ──────────────────────────────────────────────────────────────
   STEPS
────────────────────────────────────────────────────────────── */
.nl-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.nl-step {
  background: var(--nl-white);
  border: 1px solid var(--nl-border);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--s-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.nl-step:hover { transform: translateY(-3px); box-shadow: var(--s-md); }

/* Step colours */
.nl-step:nth-child(1) { background: #dbeafe; border-color: transparent; }
.nl-step:nth-child(2) { background: #ede9fe; border-color: transparent; }
.nl-step:nth-child(3) { background: #fce7f3; border-color: transparent; }

.nl-step__icon  { font-size: 2rem; margin-bottom: 10px; }

.nl-step__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--nl-gray);
  margin-bottom: 8px;
}

.nl-step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--nl-black);
  color: var(--nl-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(26,26,26,.18);
}

.nl-step__title { font-weight: 900; font-size: 1.06rem; margin-bottom: 10px; }

.nl-step__text  { font-size: .95rem; color: var(--nl-gray-2); line-height: 1.75; flex: 1; }

.nl-step__checks {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-step__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--nl-gray-2);
}

.nl-step__check span:first-child { color: var(--nl-red); font-weight: 900; flex-shrink: 0; }

/* Step button */
.nl-step__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 22px;
  background: var(--nl-black);
  color: #fff;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
  transition: background .15s, transform .15s;
}
.nl-step__btn:hover { background: #2a2a2a; transform: translateY(-1px); }

/* ──────────────────────────────────────────────────────────────
   MEMBERSHIP
────────────────────────────────────────────────────────────── */
.nl-membership {
  background: var(--nl-cream);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: 0 26px 70px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.04);
}

.nl-membership__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 30px;
}

.nl-membership__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--nl-black);
}

.nl-membership__item::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nl-red);
  display: block;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  box-shadow: 0 12px 26px rgba(232,69,44,.18);
  flex-shrink: 0;
}

.nl-membership__price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--nl-gray);
}
.nl-membership__price strong { color: var(--nl-black); font-size: 2.25rem; }

/* ──────────────────────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────────────────────── */
.nl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.nl-testimonial {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nl-testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }

.nl-testimonial::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--nl-red), #ff8a5b);
  opacity: .85;
}

/* Quote blocks */
.nl-quote {
  background: rgba(255,255,255,.6);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--nl-border);
}

.nl-quote__text {
  font-size: .9rem;
  line-height: 1.75;
  color: #555;
  font-style: italic;
}

.nl-quote__author {
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--nl-black);
}

/* ──────────────────────────────────────────────────────────────
   ACCORDION / FAQ
────────────────────────────────────────────────────────────── */
.nl-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nl-accordion__item {
  background: var(--nl-white);
  border: 1.5px solid var(--nl-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}

.nl-accordion__item:hover { border-color: rgba(0,0,0,.18); }

.nl-accordion__item.is-open {
  border-color: var(--nl-red);
  box-shadow: 0 4px 20px rgba(232,69,44,.1);
}

.nl-accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--nl-black);
  transition: background .12s, color .12s;
}

.nl-accordion__btn * { pointer-events: none; }

.nl-accordion__btn:hover {
  background: rgba(232,69,44,.06);
  color: var(--nl-red);
}

.nl-accordion__item.is-open .nl-accordion__btn {
  background: rgba(232,69,44,.08);
  color: var(--nl-red);
}

.nl-accordion__icon {
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(.4,0,.2,1), color .12s;
}

.nl-accordion__btn:hover .nl-accordion__icon { color: var(--nl-red); }

.nl-accordion__item.is-open .nl-accordion__icon {
  transform: rotate(180deg);
  color: var(--nl-red);
}

/* Accordion body — display:none approach (reliable) */
.nl-accordion__body {
  display: none;
  font-size: .92rem;
  line-height: 1.7;
  color: #4b5563;
}

.nl-accordion__item.is-open .nl-accordion__body { display: block; }

.nl-accordion__body > div { padding: 16px 20px 20px; }

/* ──────────────────────────────────────────────────────────────
   SIDEBAR / PORTAL
────────────────────────────────────────────────────────────── */
.nl-sidebar__link { transition: background .25s ease; }
.nl-sidebar__link:hover { background: var(--nl-hover); }
.nl-sidebar__link.active { background: var(--nl-active); }
.nl-sidebar__link.active:hover { background: var(--nl-active); }

/* ──────────────────────────────────────────────────────────────
   LOGIN
────────────────────────────────────────────────────────────── */
.nl-login-wrap {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--nl-cream);
}

.nl-login-box {
  background: #fff;
  border-radius: 28px;
  padding: 52px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 32px 80px rgba(0,0,0,.13);
  border: 1px solid rgba(0,0,0,.06);
}

.nl-login-box__title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.nl-login-box__sub { color: var(--nl-gray); font-size: .95rem; margin-bottom: 32px; }

.nl-pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: .95rem;
  cursor: pointer;
  opacity: .45;
  transition: opacity .14s;
}
.nl-pw-toggle:hover { opacity: 1; }

@media (max-width: 520px) {
  .nl-login-box { padding: 36px 24px; border-radius: 20px; }
}

/* ──────────────────────────────────────────────────────────────
   FORMS
────────────────────────────────────────────────────────────── */
.nl-form  { display: flex; flex-direction: column; gap: 20px; }
.nl-field { display: flex; flex-direction: column; gap: 6px; }

.nl-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--nl-black);
  letter-spacing: .02em;
}

.nl-required { color: var(--nl-red); }

.nl-input, .nl-select, .nl-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 12px;
  font-size: .95rem;
  color: var(--nl-black);
  background: #fff;
  outline: none;
  transition: border-color .14s, box-shadow .14s;
  box-sizing: border-box;
}

.nl-input:focus, .nl-select:focus, .nl-textarea:focus {
  border-color: var(--nl-black);
  box-shadow: 0 0 0 3px rgba(26,26,26,.08);
}

.nl-input::placeholder { color: #bbb; }
.nl-textarea { resize: vertical; min-height: 110px; }

.nl-field-hint  { font-size: .78rem; color: var(--nl-gray); }
.nl-field-error { font-size: .78rem; color: var(--nl-red); }

/* Alerts */
.nl-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
  border-left: 4px solid transparent;
  margin-bottom: 16px;
}

.nl-alert--success { background: #f0fdf4; color: #166534; border-left-color: #16a34a; }
.nl-alert--error   { background: #fff5f5; color: #991b1b; border-left-color: #ef4444; }
.nl-alert--warning { background: #fffbeb; color: #92400e; border-left-color: #f59e0b; }
.nl-alert--info    { background: #eff6ff; color: #1e40af; border-left-color: #3b82f6; }

/* ──────────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────────── */
.nl-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%);
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 54px 0 26px;
}

.nl-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}

.nl-footer-brand { display: flex; flex-direction: column; gap: 12px; }

.nl-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #111;
  letter-spacing: -.2px;
}

.nl-footer-logo-badge {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--nl-red);
  box-shadow: 0 10px 22px rgba(232,69,44,.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
}

.nl-footer-desc { color: #555; font-size: 14px; line-height: 1.7; max-width: 360px; }

.nl-footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
  width: fit-content;
}

.nl-footer-pill-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--nl-red);
  box-shadow: 0 0 0 6px rgba(232,69,44,.14);
}

.nl-footer-pill-text { font-size: 13px; color: #333; }

.nl-footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  letter-spacing: .3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nl-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-footer-links a { color: #555; font-size: 14px; transition: color .2s ease, transform .2s ease; }
.nl-footer-links a:hover { color: #111; transform: translateX(2px); }

.nl-footer-card {
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nl-footer-card-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #444; }

.nl-footer-ico {
  width: 34px; height: 34px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--nl-red);
  font-weight: 800;
}

.nl-footer-bottom {
  max-width: 1160px;
  margin: 26px auto 0;
  padding: 18px 20px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.nl-footer-copy { font-size: 13px; color: #777; }

.nl-footer-mini-links { display: flex; gap: 14px; flex-wrap: wrap; }
.nl-footer-mini-links a { font-size: 13px; color: #777; transition: color .2s ease; }
.nl-footer-mini-links a:hover { color: #111; }

/* ──────────────────────────────────────────────────────────────
   GLOBAL SMOOTH TRANSITIONS
────────────────────────────────────────────────────────────── */
a, button, .nl-sidebar__link { transition: .25s ease; }

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nl-footer-inner { grid-template-columns: 1fr 1fr; }
  .nl-hero__inner  { grid-template-columns: 1fr; gap: 40px; }
  .nl-membership   { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
}

@media (max-width: 620px) {
  .nl-footer-inner { grid-template-columns: 1fr; }
  .nl-footer       { padding: 44px 0 22px; }
  .nl-steps        { grid-template-columns: 1fr; }
  .nl-features-grid{ grid-template-columns: 1fr; }
}

.nl-faq-section { margin-top: 48px; }
.nl-faq-section:first-child { margin-top: 0; }