/* clinical-light theme · Inter + Playfair Display */

*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand palette */
  --nv-primary:        #0A192F;   /* navy 900 */
  --nv-primary-dark:   #06121F;   /* navy 950 */
  --nv-primary-light:  #E6EBF2;   /* navy 50 */
  --nv-accent:         #C9A227;   /* gold 500 */
  --nv-accent-dark:    #A7861E;   /* gold 600 */
  --nv-accent-soft:    #F4ECCB;   /* gold 100 */
  --nv-forest:         #2D6A4F;   /* forest 500 (eyebrow / accents) */
  --nv-forest-dark:    #1B4332;   /* forest 700 */
  --nv-mint-50:        #ECF7F0;
  --nv-mint-100:       #DAF0E2;
  --nv-mint-200:       #B6E2C7;

  /* Neutrals */
  --nv-text:           #122544;   /* navy 700 — body */
  --nv-text-soft:      rgba(18,37,68,.78);
  --nv-text-mute:      rgba(18,37,68,.62);
  --nv-heading:        #0A192F;
  --nv-dark:           #0A192F;
  --nv-muted:          #6B7C95;
  --nv-line:           #E6EBF2;
  --nv-line-soft:      #F1F4F9;
  --nv-bg-soft:        #F4F7FB;   /* very light navy-tint */
  --nv-bg-cream:       #F7F1E5;   /* bone */
  --nv-white:          #FFFFFF;

  /* Shadows — clinical, very soft */
  --nv-shadow-sm:      0 1px 2px rgba(10,25,47,.04), 0 8px 24px rgba(10,25,47,.06);
  --nv-shadow-md:      0 4px 14px rgba(10,25,47,.08), 0 20px 40px rgba(10,25,47,.08);
  --nv-shadow-lg:      0 30px 60px rgba(10,25,47,.18);
  --nv-shadow-glow:    0 1px 2px rgba(10,25,47,.04), 0 8px 28px rgba(45,106,79,.18);

  /* Radii */
  --nv-radius-sm:      8px;
  --nv-radius:         14px;
  --nv-radius-lg:      20px;
  --nv-radius-xl:      28px;
  --nv-radius-pill:    9999px;

  /* Type */
  --nv-font-head:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --nv-font-body:      'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--nv-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--nv-text);
  background: var(--nv-white);
  -webkit-font-smoothing: antialiased;
  -moz-onv-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--nv-forest); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--nv-accent-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--nv-font-head);
  font-weight: 600;
  color: var(--nv-heading);
  line-height: 1.18;
  letter-spacing: -.005em;
  margin: 0 0 .55em;
}

p { margin: 0 0 1em; }
strong { color: var(--nv-heading); font-weight: 600; }

.container {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

/* Subtle paper-grain pattern reusable on light heroes / dark CTAs */
.nv-grain::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,25,47,.04) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--nv-font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  border: 0;
  border-radius: var(--nv-radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: var(--nv-shadow-sm);
}
.nv-btn--primary {
  background: var(--nv-primary);
  color: #fff;
}
.nv-btn--primary:hover {
  background: var(--nv-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(10,25,47,.06), 0 14px 36px rgba(10,25,47,.18);
}
.nv-btn--accent {
  background: var(--nv-accent);
  color: var(--nv-primary);
}
.nv-btn--accent:hover {
  background: #D7B033;
  color: var(--nv-primary);
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(10,25,47,.06), 0 14px 36px rgba(201,162,39,.32);
}
.nv-btn--ghost {
  background: transparent;
  color: var(--nv-primary);
  border: 1px solid var(--nv-line);
  box-shadow: none;
}
.nv-btn--ghost:hover {
  background: var(--nv-bg-soft);
  border-color: var(--nv-primary);
  color: var(--nv-primary);
}
.nv-btn--xl   { padding: 16px 34px; font-size: 15px; }
.nv-btn--full { width: 100%; }

/* ─── ANNOUNCEMENT STRIP ──────────────────────────────────── */
.nv-strip {
  background: var(--nv-primary);
  color: #fff;
  font-size: 13px;
  letter-spacing: .015em;
}
.nv-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.nv-strip__item { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.85); }
.nv-strip__item strong { color: var(--nv-accent); font-weight: 600; }
.nv-strip__sep { color: rgba(255,255,255,.30); }

/* ─── HEADER ──────────────────────────────────────────────── */
.nv-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--nv-line);
  transition: box-shadow .25s, border-color .25s;
}
.nv-header--scrolled {
  box-shadow: 0 10px 24px rgba(10,25,47,.05);
  border-bottom-color: transparent;
}
.nv-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.nv-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.nv-brand__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nv-mint-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--nv-forest);
  font-family: var(--nv-font-body);
  font-size: 14px; font-weight: 700;
  letter-spacing: .03em;
  position: relative;
  flex: 0 0 44px;
  box-shadow: inset 0 0 0 1px rgba(45,106,79,.10);
}
.nv-brand__mark--dyn {
  background: var(--nv-mint-100) !important;
  transform: none !important;
  color: var(--nv-forest) !important;
}
.nv-brand__initials { position: relative; z-index: 1; font-size: 14px; }
.nv-brand__deco {
  position: absolute; z-index: 2;
  font-size: 10px;
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--nv-accent);
  color: var(--nv-primary);
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 1;
}
.nv-brand__deco--tr { top: -5px; right: -5px; }
.nv-brand__deco--tl { top: -5px; left: -5px; }
.nv-brand__deco--br { bottom: -5px; right: -5px; }
.nv-brand__deco--bl { bottom: -5px; left: -5px; }
.nv-brand__mark--rounded, .nv-brand__mark--circle, .nv-brand__mark--hex,
.nv-brand__mark--shield, .nv-brand__mark--leaf, .nv-brand__mark--badge {
  border-radius: 50%;
  clip-path: none !important;
  -webkit-clip-path: none !important;
}

.nv-brand__name {
  font-family: var(--nv-font-head);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--nv-primary);
  letter-spacing: .005em;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  line-height: 1;
}
.nv-brand__name::after { content: none; }
.nv-brand:hover .nv-brand__name { color: var(--nv-forest); }
.nv-brand__img { max-height: 38px; width: auto; }
@media (max-width: 480px) {
  .nv-brand__name { font-size: 1.15rem; }
  .nv-brand__mark { width: 36px; height: 36px; flex-basis: 36px; }
}

.nv-menu { display: flex; align-items: center; gap: 28px; }
.nv-menu__list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 28px; }
.nv-menu__link {
  font-family: var(--nv-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--nv-text);
  letter-spacing: 0;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nv-menu__link:hover { color: var(--nv-forest); }
.nv-menu__link::after { content: none; }

.nv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nv-burger span { width: 24px; height: 2px; background: var(--nv-primary); border-radius: 2px; }

/* ─── HERO ────────────────────────────────────────────────── */
.nv-hero {
  position: relative;
  padding: 80px 0 96px;
  background: linear-gradient(180deg, var(--nv-mint-50) 0%, #fff 100%);
  overflow: hidden;
}
.nv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,25,47,.04) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: .6;
}
.nv-hero::after { content: none; }

.nv-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.nv-hero__text { position: relative; z-index: 1; }

.nv-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--nv-forest);
  font-family: var(--nv-font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  padding: 0;
  border: 0;
  box-shadow: none;
  margin-bottom: 18px;
}
.nv-hero__eyebrow::before {
  content: '✓';
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nv-mint-100);
  color: var(--nv-forest);
  font-size: 11px;
}

.nv-hero__title {
  font-family: var(--nv-font-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -.012em;
  color: var(--nv-primary);
  margin-bottom: 18px;
}

/* second-tone block line for the hero subtitle */
.nv-hero__sub {
  display: block;
  font-family: var(--nv-font-head);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--nv-forest);
  text-transform: none;
  letter-spacing: -.005em;
  margin: -8px 0 22px;
}

.nv-hero__lead {
  font-family: var(--nv-font-body);
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--nv-text-soft);
  max-width: 560px;
  margin-bottom: 30px;
}

.nv-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.nv-hero__trust {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px;
  max-width: 540px;
}
.nv-hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--nv-text-soft);
}
.nv-hero__trust li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--nv-mint-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D6A4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13l4 4L19 7'/></svg>") center/10px no-repeat;
  flex: 0 0 16px;
}

/* hero visual: product over mint blur halo */
.nv-hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 520px;
  margin-left: auto;
}
.nv-hero__shape {
  position: absolute; inset: 6%;
  background: radial-gradient(circle at 35% 35%, rgba(182,226,199,.55), rgba(218,240,226,.20) 55%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(18px);
}
.nv-hero__product-frame {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.nv-hero__product {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 30px 50px rgba(10,25,47,.22));
}
.nv-hero__rating {
  position: absolute;
  top: 6%; right: 0;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--nv-shadow-sm);
  border: 1px solid var(--nv-line);
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: var(--nv-font-body);
  letter-spacing: 0;
}
.nv-hero__rating-stars { color: var(--nv-accent); font-size: 15px; letter-spacing: .03em; }
.nv-hero__rating-num   { font-size: 12px; color: var(--nv-text-mute); margin-top: 3px; font-weight: 500; }

.nv-hero__pill {
  position: absolute;
  bottom: 6%;
  left: 0;
  background: #fff;
  color: var(--nv-primary);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid var(--nv-line);
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  z-index: 2;
  box-shadow: var(--nv-shadow-sm);
  max-width: 240px;
  display: inline-flex; align-items: center; gap: 8px;
}
.nv-hero__pill::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nv-mint-100);
  color: var(--nv-forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  flex: 0 0 18px;
}

/* ─── METRICS BAND ────────────────────────────────────────── */
.nv-metrics {
  background: var(--nv-bg-cream);
  color: var(--nv-primary);
  border-top: 1px solid rgba(10,25,47,.06);
  border-bottom: 1px solid rgba(10,25,47,.06);
}
.nv-metrics__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
  gap: 0;
}
.nv-metrics__cell {
  text-align: center;
  border-right: 1px solid rgba(10,25,47,.10);
  padding: 6px 14px;
}
.nv-metrics__cell:last-child { border-right: 0; }
.nv-metrics__num {
  display: block;
  font-family: var(--nv-font-head);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--nv-primary);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.nv-metrics__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--nv-forest);
  font-weight: 600;
  margin-top: 4px;
}

/* ─── SECTION SCAFFOLD ────────────────────────────────────── */
.nv-section { padding: 96px 0; }
.nv-section--soft  { background: var(--nv-bg-cream); }
.nv-section--cream { background: var(--nv-bg-soft); }
.nv-section--dark {
  background: var(--nv-primary);
  color: rgba(255,255,255,.78);
  position: relative;
  overflow: hidden;
}
.nv-section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: .5;
}
.nv-section--dark::after {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  top: -120px; right: -120px;
  background: radial-gradient(circle, rgba(45,106,79,.32), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.nv-section--dark h1, .nv-section--dark h2, .nv-section--dark h3 { color: #fff; }
.nv-section--dark .nv-head__lead { color: rgba(255,255,255,.72); }
.nv-section--dark > .container { position: relative; z-index: 1; }

.nv-eyebrow {
  display: inline-block;
  font-family: var(--nv-font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nv-forest);
  margin-bottom: 12px;
  padding: 0;
}
.nv-eyebrow::before { content: none; }
.nv-eyebrow--light { color: var(--nv-accent); }

.nv-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.nv-head__title {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.nv-head__lead {
  font-size: 1.05rem;
  color: var(--nv-text-soft);
  font-family: var(--nv-font-body);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.nv-cta-row { text-align: center; margin-top: 48px; }

/* ─── COMPARE (transformation) ────────────────────────────── */
.nv-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.nv-compare__col {
  background: #fff;
  border-radius: var(--nv-radius-lg);
  padding: 32px 30px;
  box-shadow: var(--nv-shadow-sm);
  border: 1px solid var(--nv-line);
  border-top: 4px solid transparent;
}
.nv-compare__col--bad  { border-top-color: #b94a48; }
.nv-compare__col--good { border-top-color: var(--nv-forest); }
.nv-compare__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nv-font-body); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .2em;
  padding: 6px 14px; border-radius: var(--nv-radius-pill);
  margin-bottom: 22px;
}
.nv-compare__tag--bad  { background: #fbe9e7; color: #b94a48; }
.nv-compare__tag--good { background: var(--nv-mint-100); color: var(--nv-forest); }
.nv-compare__list { list-style: none; padding: 0; margin: 0; }
.nv-compare__list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--nv-line-soft);
  font-size: .96rem;
  line-height: 1.6;
  color: var(--nv-text-soft);
}
.nv-compare__list li:last-child { border-bottom: 0; }
.nv-compare__list li::before {
  flex: 0 0 22px;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.nv-compare__col--bad  .nv-compare__list li::before { content: '✕'; background: #fbe9e7; color: #b94a48; }
.nv-compare__col--good .nv-compare__list li::before { content: '✓'; background: var(--nv-mint-100); color: var(--nv-forest); }

.nv-compare__pivot {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; align-self: center;
}
.nv-compare__pivot-circle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--nv-primary); color: #fff;
  font-family: var(--nv-font-head); font-weight: 600; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 2px rgba(10,25,47,.06), 0 12px 28px rgba(10,25,47,.18);
  border: 4px solid #fff;
}

/* ─── INGREDIENTS ─────────────────────────────────────────── */
.nv-ingr {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.nv-ingr__visual { position: relative; }
.nv-ingr__circle {
  position: absolute; inset: -8% -6% -8% -6%;
  background: radial-gradient(circle at 35% 35%, rgba(182,226,199,.55), rgba(218,240,226,.18) 55%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(14px);
}
.nv-ingr__img {
  position: relative; z-index: 1;
  margin: 0 auto;
  max-height: 420px; width: auto;
  filter: drop-shadow(0 26px 36px rgba(10,25,47,.18));
}
.nv-ingr__count {
  position: absolute;
  top: 8%; right: 4%;
  background: #fff;
  color: var(--nv-primary);
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--nv-font-head);
  z-index: 2;
  box-shadow: var(--nv-shadow-sm);
  border: 1px solid var(--nv-line);
}
.nv-ingr__count strong { font-size: 1.85rem; font-weight: 600; line-height: 1; color: var(--nv-primary); }
.nv-ingr__count span   { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--nv-forest); margin-top: 2px; font-family: var(--nv-font-body); font-weight: 600; }

.nv-ingr__badges {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  position: relative; z-index: 1;
}
.nv-ingr__badges li {
  background: #fff;
  padding: 6px 14px;
  border-radius: var(--nv-radius-pill);
  font-size: 12px;
  font-family: var(--nv-font-body);
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--nv-forest);
  font-weight: 600;
  border: 1px solid var(--nv-line);
  box-shadow: var(--nv-shadow-sm);
}

.nv-acc { display: flex; flex-direction: column; gap: 12px; }
.nv-acc__item {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.nv-acc__item:hover { transform: translateY(-1px); box-shadow: var(--nv-shadow-sm); }
.nv-acc__item.is-open {
  border-color: var(--nv-forest);
  box-shadow: var(--nv-shadow-glow);
}
.nv-acc__head {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  gap: 14px;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 18px 24px;
  cursor: pointer;
  text-align: left;
  font-family: var(--nv-font-body);
}
.nv-acc__num {
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--nv-text-mute);
  letter-spacing: .18em;
}
.nv-acc__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--nv-mint-100);
  color: var(--nv-forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nv-acc__name {
  font-family: var(--nv-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nv-primary);
  letter-spacing: -.005em;
}
.nv-acc__amount {
  font-family: var(--nv-font-body);
  font-size: 11px;
  background: var(--nv-bg-cream);
  color: var(--nv-accent-dark);
  padding: 4px 10px;
  border-radius: var(--nv-radius-pill);
  font-weight: 600;
  letter-spacing: .04em;
}
.nv-acc__chev {
  font-size: 14px;
  color: var(--nv-text-mute);
  transition: transform .25s;
}
.nv-acc__item.is-open .nv-acc__chev { transform: rotate(180deg); color: var(--nv-forest); }
.nv-acc__body {
  padding: 0 24px 22px 84px;
  font-size: .96rem;
  color: var(--nv-text-soft);
  line-height: 1.7;
}
.nv-acc__body p { margin: 0 0 10px; }
.nv-acc__study {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--nv-forest);
  font-weight: 600;
  text-transform: uppercase; letter-spacing: .15em;
}

/* ─── TIMELINE ────────────────────────────────────────────── */
.nv-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.nv-timeline__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--nv-radius-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform .25s, background .25s, border-color .25s;
}
.nv-timeline__card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,162,39,.4);
  transform: translateY(-4px);
}
.nv-timeline__period {
  display: inline-block;
  background: var(--nv-accent);
  color: var(--nv-primary);
  font-family: var(--nv-font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: 6px 12px;
  border-radius: var(--nv-radius-pill);
  margin-bottom: 18px;
}
.nv-timeline__icon { font-size: 1.7rem; margin-bottom: 12px; }
.nv-timeline__title {
  color: #fff;
  font-family: var(--nv-font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -.005em;
}
.nv-timeline__desc {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.6;
}

/* ─── REVIEWS ─────────────────────────────────────────────── */
.nv-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.nv-review {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.nv-review:hover {
  transform: translateY(-3px);
  box-shadow: var(--nv-shadow-sm);
  border-color: var(--nv-mint-200);
}
.nv-review::before { content: none; }
.nv-review__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.nv-review__avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  flex: 0 0 48px;
  background: var(--nv-mint-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--nv-forest); font-weight: 700;
}
.nv-review__avatar img { width: 100%; height: 100%; object-fit: cover; }
.nv-review__who { flex: 1; }
.nv-review__name {
  display: block;
  font-family: var(--nv-font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--nv-primary);
}
.nv-review__where { font-size: 12px; color: var(--nv-text-mute); }
.nv-review__stars { color: var(--nv-accent); font-size: 15px; letter-spacing: .04em; margin-bottom: 6px; }
.nv-review__title {
  font-family: var(--nv-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--nv-primary);
  letter-spacing: -.005em;
}
.nv-review__text {
  font-family: var(--nv-font-head);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 18px;
  color: var(--nv-text);
  flex: 1;
}
.nv-review__verified {
  font-size: 12px;
  color: var(--nv-forest);
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--nv-line-soft);
}

.nv-review-summary {
  text-align: center;
  margin-top: 50px;
  padding: 28px 32px;
  background: var(--nv-bg-cream);
  border-radius: var(--nv-radius-lg);
  border: 1px solid rgba(10,25,47,.06);
  display: inline-flex; flex-direction: column; align-items: center;
  margin-left: auto; margin-right: auto;
}
.nv-review-summary { display: block; max-width: 360px; margin-left: auto; margin-right: auto; }
.nv-review-summary__stars { color: var(--nv-accent); font-size: 22px; letter-spacing: .05em; }
.nv-review-summary__score {
  font-family: var(--nv-font-head);
  font-size: 2.2rem; font-weight: 600;
  color: var(--nv-primary);
  margin-top: 6px;
}
.nv-review-summary__count {
  font-size: 12px; color: var(--nv-text-mute);
  text-transform: uppercase; letter-spacing: .18em;
  margin-top: 4px;
  font-weight: 600;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.nv-faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.nv-faq__item {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.nv-faq__item.is-open { box-shadow: var(--nv-shadow-glow); border-color: var(--nv-forest); }
.nv-faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--nv-font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--nv-primary);
  letter-spacing: -.005em;
}
.nv-faq__plus {
  flex: 0 0 32px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--nv-mint-100);
  color: var(--nv-forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s, background .25s, color .25s;
}
.nv-faq__item.is-open .nv-faq__plus {
  background: var(--nv-forest);
  color: #fff;
  transform: rotate(45deg);
}
.nv-faq__a {
  padding: 0 24px 22px;
  color: var(--nv-text-soft);
  font-size: .98rem;
  line-height: 1.7;
  border-top: 1px solid var(--nv-line-soft);
  padding-top: 18px;
}
.nv-faq__a p { margin: 0; }

/* ─── ORDER (navy with golden glow) ───────────────────────── */
.nv-order {
  background: var(--nv-primary);
  color: rgba(255,255,255,.82);
  position: relative;
  overflow: hidden;
}
.nv-order::before, .nv-order::after { content: ''; position: absolute; pointer-events: none; }
.nv-order::before {
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: .6;
}
.nv-order::after {
  width: 520px; height: 520px;
  top: -160px; right: -160px;
  background: radial-gradient(circle, rgba(45,106,79,.32), transparent 65%);
  border-radius: 50%;
}
.nv-order > * { position: relative; z-index: 2; }

.nv-order__badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 32px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.nv-order__badge {
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.84);
  display: inline-flex; align-items: center; gap: 8px;
}
.nv-order__badge::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(201,162,39,.18);
  color: var(--nv-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.nv-order__grid {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.1fr;
  gap: 50px;
  padding: 96px 0;
  align-items: center;
}
.nv-order__title {
  color: #fff;
  font-family: var(--nv-font-head);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -.012em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.nv-order__lead { color: rgba(255,255,255,.74); max-width: 440px; margin-bottom: 28px; line-height: 1.65; }

.nv-order__price {
  display: inline-flex; align-items: baseline; gap: 6px;
  background: rgba(255,255,255,.06);
  padding: 16px 26px;
  border-radius: var(--nv-radius-lg);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px);
}
.nv-order__price-cur {
  font-family: var(--nv-font-head);
  color: var(--nv-accent);
  font-size: 1.3rem; font-weight: 600;
}
.nv-order__price-num {
  font-family: var(--nv-font-head);
  font-size: 3.4rem; font-weight: 600;
  color: #fff; line-height: 1;
  letter-spacing: -.02em;
}

.nv-order__guarantees { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.nv-order__g-row { display: flex; gap: 14px; align-items: flex-start; }
.nv-order__g-icon {
  width: 40px; height: 40px; flex: 0 0 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--nv-accent);
}
.nv-order__g-row strong {
  display: block; color: #fff;
  font-family: var(--nv-font-body); font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
}
.nv-order__g-row p { margin: 4px 0 0; color: rgba(255,255,255,.66); font-size: .88rem; }

.nv-order__product {
  position: relative;
  text-align: center;
}
.nv-order__product img {
  max-height: 460px; width: auto; margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5));
  position: relative; z-index: 1;
}
.nv-order__product::before {
  content: ''; position: absolute; inset: 8% 4% 12% 4%;
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 60%);
  z-index: 0;
}

.nv-form {
  background: #fff;
  color: var(--nv-text);
  border-radius: var(--nv-radius-xl);
  padding: 36px 32px;
  box-shadow: 0 30px 60px rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.06);
}
.nv-form__title {
  font-family: var(--nv-font-head);
  font-weight: 600;
  font-size: 1.45rem;
  margin-bottom: 22px;
  color: var(--nv-primary);
  letter-spacing: -.005em;
}
.nv-form__group { margin-bottom: 16px; }
.nv-form__group label {
  display: block;
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--nv-text-mute);
  margin-bottom: 8px;
}
.nv-form input[type="text"], .nv-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius);
  font-family: var(--nv-font-body);
  font-size: 15px;
  color: var(--nv-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.nv-form input:focus {
  outline: 0;
  border-color: var(--nv-forest);
  box-shadow: 0 0 0 4px rgba(45,106,79,.14);
}
.nv-form .nv-phone {
  display: flex; align-items: stretch;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.nv-form .nv-phone:focus-within {
  border-color: var(--nv-forest);
  box-shadow: 0 0 0 4px rgba(45,106,79,.14);
}
.nv-form .nv-phone__cc {
  background: var(--nv-bg-soft);
  padding: 13px 16px;
  font-weight: 600;
  color: var(--nv-primary);
  border-right: 1px solid var(--nv-line);
  font-size: 15px;
}
.nv-form .nv-phone input { border: 0; flex: 1; background: transparent; }
.nv-form .nv-phone input:focus { box-shadow: none; }
.nv-form__note {
  font-size: 12px;
  color: var(--nv-text-mute);
  text-align: center;
  margin: 14px 0 0;
}

/* ─── ARTICLE (SEO inline) ────────────────────────────────── */
.nv-article {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--nv-radius-xl);
  padding: 50px 56px;
  box-shadow: var(--nv-shadow-sm);
  border: 1px solid var(--nv-line);
}
.nv-article__author {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--nv-line-soft);
}
.nv-article__author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--nv-mint-100); color: var(--nv-forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--nv-font-body); font-weight: 700; font-size: 18px;
}
.nv-article__author strong { display: block; font-family: var(--nv-font-body); color: var(--nv-primary); letter-spacing: 0; font-size: 14px; font-weight: 600; }
.nv-article__author span { font-size: 12px; color: var(--nv-text-mute); margin-right: 12px; }
.nv-article__title {
  font-family: var(--nv-font-head);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  color: var(--nv-primary);
}
.nv-article__intro { font-size: 1.075rem; line-height: 1.75; color: var(--nv-text-soft); }
.nv-article__intro p { margin: 0 0 14px; }
.nv-article__body { margin-top: 22px; line-height: 1.8; color: var(--nv-text-soft); }
.nv-article__body h3 {
  font-family: var(--nv-font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--nv-primary);
}
.nv-article__body p { margin-bottom: 14px; }
.nv-article__conclusion {
  padding: 18px 22px;
  background: var(--nv-mint-50);
  border-left: 4px solid var(--nv-forest);
  border-radius: var(--nv-radius-sm);
  color: var(--nv-text);
  font-style: italic;
}
.nv-article__toggle { display: inline-flex; margin-top: 26px; }

/* ─── BLOG PREVIEW / GRID ─────────────────────────────────── */
.nv-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.nv-blog-card {
  background: #fff;
  border-radius: var(--nv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--nv-line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.nv-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--nv-shadow-sm);
  border-color: var(--nv-mint-200);
}
.nv-blog-card__cover {
  position: relative; display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--nv-mint-50);
}
.nv-blog-card__cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.nv-blog-card:hover .nv-blog-card__cover img { transform: scale(1.05); }
.nv-blog-card__cover--empty {
  background: linear-gradient(135deg, var(--nv-primary), var(--nv-forest));
}
.nv-blog-card__cover--empty img { display: none; }
.nv-blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--nv-forest);
  padding: 5px 12px;
  border-radius: var(--nv-radius-pill);
  font-family: var(--nv-font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  backdrop-filter: blur(4px);
}
.nv-blog-card__body { padding: 24px 26px; flex: 1; display: flex; flex-direction: column; }
.nv-blog-card__meta {
  display: flex; gap: 14px;
  font-size: 12px; color: var(--nv-text-mute);
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 12px;
  font-family: var(--nv-font-body);
  font-weight: 600;
}
.nv-blog-card__title {
  font-family: var(--nv-font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.005em;
  line-height: 1.25;
}
.nv-blog-card__title a { color: var(--nv-primary); }
.nv-blog-card__title a:hover { color: var(--nv-forest); }
.nv-blog-card__excerpt { color: var(--nv-text-soft); font-size: .94rem; margin-bottom: 16px; flex: 1; line-height: 1.65; }
.nv-blog-card__more {
  font-family: var(--nv-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--nv-forest);
  display: inline-flex; align-items: center; gap: 6px;
}
.nv-blog-card__more::after { content: '→'; transition: transform .25s; }
.nv-blog-card__more:hover { color: var(--nv-accent-dark); }
.nv-blog-card__more:hover::after { transform: translateX(4px); }

/* ─── BLOG INDEX HERO ─────────────────────────────────────── */
.nv-page-hero {
  background: linear-gradient(180deg, var(--nv-mint-50) 0%, #fff 100%);
  color: var(--nv-primary);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--nv-line);
}
.nv-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,25,47,.04) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  opacity: .6;
}
.nv-page-hero::after {
  content: ''; position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(182,226,199,.45), transparent 65%);
  top: -140px; right: -140px;
  border-radius: 50%;
  filter: blur(20px);
}
.nv-page-hero > .container { position: relative; z-index: 1; }
.nv-page-hero h1 {
  color: var(--nv-primary);
  font-family: var(--nv-font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: 12px;
}
.nv-page-hero p { color: var(--nv-text-soft); max-width: 620px; font-size: 1.05rem; }

.nv-crumbs {
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--nv-text-mute);
  margin-bottom: 18px;
}
.nv-crumbs a { color: var(--nv-forest); }
.nv-crumbs a:hover { color: var(--nv-accent-dark); }
.nv-crumbs span { margin: 0 8px; opacity: .55; }

.nv-filters {
  background: #fff;
  border-bottom: 1px solid var(--nv-line);
}
.nv-filters__row {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 22px 0;
}
.nv-filter {
  background: #fff;
  border: 1px solid var(--nv-line);
  padding: 8px 18px;
  border-radius: var(--nv-radius-pill);
  font-family: var(--nv-font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--nv-text);
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .2s;
}
.nv-filter.is-active, .nv-filter:hover {
  background: var(--nv-primary);
  color: #fff;
  border-color: var(--nv-primary);
}

/* ─── BLOG ARTICLE HERO ───────────────────────────────────── */
.nv-article-hero {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: var(--nv-primary);
}
.nv-article-hero img {
  width: 100%; height: 100%; object-fit: cover; opacity: .50;
}
.nv-article-hero--no-img {
  background: linear-gradient(135deg, var(--nv-primary), var(--nv-forest));
}
.nv-article-hero--no-img img { display: none; }
.nv-article-hero__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(10,25,47,.50), rgba(10,25,47,.85));
}
.nv-article-hero__cat {
  display: inline-block;
  background: var(--nv-accent); color: var(--nv-primary);
  padding: 6px 14px; border-radius: var(--nv-radius-pill);
  font-family: var(--nv-font-body); font-size: 11px;
  font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  margin-bottom: 16px;
}
.nv-article-hero__title {
  color: #fff;
  font-family: var(--nv-font-head);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -.012em;
  margin-bottom: 16px;
  max-width: 820px;
  line-height: 1.1;
}
.nv-article-hero__meta {
  display: flex; gap: 22px;
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  text-transform: uppercase; letter-spacing: .18em;
}

/* ─── BLOG POST LAYOUT ────────────────────────────────────── */
.nv-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  padding: 80px 0 100px;
}
.nv-post {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-xl);
  padding: 50px 56px;
  box-shadow: var(--nv-shadow-sm);
  font-family: var(--nv-font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--nv-text-soft);
}
.nv-post .nv-post__intro {
  font-family: var(--nv-font-head);
  font-size: 1.2rem;
  color: var(--nv-primary);
  margin-bottom: 28px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -.005em;
}
.nv-post h2 {
  font-family: var(--nv-font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--nv-primary);
  margin: 36px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--nv-forest);
  letter-spacing: -.005em;
}
.nv-post p { margin-bottom: 14px; }

.nv-post__cta {
  margin-top: 36px;
  background: var(--nv-mint-50);
  border-radius: var(--nv-radius-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--nv-mint-200);
}
.nv-post__cta-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--nv-forest); color: #fff;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.nv-post__cta p { margin: 0 0 14px; color: var(--nv-primary); font-weight: 500; font-family: var(--nv-font-head); font-size: 1.1rem; }

.nv-post-nav {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.nv-post-nav__btn {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  padding: 18px 24px;
  text-align: left;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: block;
}
.nv-post-nav__btn:hover {
  border-color: var(--nv-forest);
  transform: translateY(-2px);
  box-shadow: var(--nv-shadow-sm);
}
.nv-post-nav__btn--next { text-align: right; }
.nv-post-nav__label {
  display: block;
  font-family: var(--nv-font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--nv-forest);
  font-weight: 600;
  margin-bottom: 6px;
}
.nv-post-nav__title { font-family: var(--nv-font-head); font-size: 1rem; color: var(--nv-primary); font-weight: 500; line-height: 1.3; }

.nv-aside { display: flex; flex-direction: column; gap: 22px; }
.nv-aside__card {
  background: #fff;
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius-lg);
  padding: 28px 26px;
  box-shadow: var(--nv-shadow-sm);
  text-align: center;
}
.nv-aside__card img { margin: 0 auto 14px; max-height: 160px; }
.nv-aside__card h3 { font-family: var(--nv-font-head); font-size: 1.2rem; font-weight: 600; margin-bottom: 6px; color: var(--nv-primary); letter-spacing: -.005em; }
.nv-aside__card .nv-aside__sub { font-size: 13px; color: var(--nv-text-mute); margin-bottom: 12px; }
.nv-aside__rating { color: var(--nv-accent); margin-bottom: 18px; font-size: 14px; letter-spacing: .04em; }
.nv-aside__rating span { color: var(--nv-text-mute); font-family: var(--nv-font-body); margin-left: 6px; font-weight: 600; }

.nv-aside__related { background: #fff; border: 1px solid var(--nv-line); border-radius: var(--nv-radius-lg); padding: 24px; box-shadow: var(--nv-shadow-sm); }
.nv-aside__related h3 {
  font-family: var(--nv-font-head);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nv-line);
  color: var(--nv-primary);
}
.nv-aside__related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.nv-aside__related a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--nv-primary);
  font-size: .92rem;
  line-height: 1.4;
}
.nv-aside__related img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.nv-aside__related a:hover { color: var(--nv-forest); }

.nv-cta-strip {
  background: var(--nv-primary);
  color: #fff;
  position: relative; overflow: hidden;
}
.nv-cta-strip::after {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,106,79,.32), transparent 65%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.nv-cta-strip > * { position: relative; z-index: 1; }
.nv-cta-strip__inner {
  display: flex; flex-wrap: wrap; gap: 22px;
  align-items: center; justify-content: space-between;
  padding: 36px 0;
}
.nv-cta-strip strong {
  display: block;
  font-family: var(--nv-font-head); font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 4px;
}
.nv-cta-strip span { color: rgba(255,255,255,.74); font-size: .95rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.nv-foot {
  background: var(--nv-primary);
  color: rgba(255,255,255,.72);
  padding: 80px 0 0;
  position: relative;
}
.nv-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nv-foot__brand {
  font-family: var(--nv-font-head);
  font-weight: 600;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: -.005em;
  display: inline-block;
  margin-bottom: 14px;
}
.nv-foot__about { font-size: .95rem; line-height: 1.75; max-width: 360px; color: rgba(255,255,255,.68); }
.nv-foot__social { display: flex; gap: 8px; margin-top: 18px; }
.nv-foot__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--nv-accent);
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.nv-foot__social a:hover { background: var(--nv-accent); color: var(--nv-primary); }

.nv-foot__title {
  color: #fff;
  font-family: var(--nv-font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .22em;
  margin-bottom: 18px;
}
.nv-foot ul { list-style: none; padding: 0; margin: 0; }
.nv-foot li { margin-bottom: 9px; font-size: .92rem; }
.nv-foot a { color: rgba(255,255,255,.72); transition: color .2s; }
.nv-foot a:hover { color: var(--nv-accent); }
.nv-foot__contact p { margin: 0 0 8px; font-size: .92rem; }
.nv-foot__disclaimer { font-size: 12px; color: rgba(255,255,255,.50); line-height: 1.7; margin-top: 18px; }

.nv-foot__bottom {
  padding: 24px 0;
}
.nv-foot__bottom-row {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  font-family: var(--nv-font-body);
  font-size: 12px;
  color: rgba(255,255,255,.50);
  letter-spacing: 0;
}
.nv-foot__bottom-row a { color: rgba(255,255,255,.62); }

/* ─── STICKY MOBILE CTA ───────────────────────────────────── */
.nv-stickybar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,25,47,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform .3s;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,.10);
}
.nv-stickybar__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.nv-stickybar span {
  font-family: var(--nv-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

/* ─── LEGAL / ABOUT / GENERIC SUBPAGE ────────────────────── */
.section { padding: 80px 0; }
.section--light { background: var(--nv-bg-soft); }
.legal__content { max-width: 820px; margin: 0 auto; }
.legal__content h1 {
  font-family: var(--nv-font-head);
  font-size: 2rem; font-weight: 600;
  margin-bottom: 22px; color: var(--nv-primary);
  letter-spacing: -.01em;
}
.legal__content h2 {
  font-family: var(--nv-font-head);
  color: var(--nv-primary);
  margin: 28px 0 12px;
  font-size: 1.3rem;
  font-weight: 600;
}
.legal__content p, .legal__content li { line-height: 1.8; margin-bottom: 14px; color: var(--nv-text-soft); }
.legal__content a { color: var(--nv-forest); }

.header { background: #fff; border-bottom: 1px solid var(--nv-line); }
.header__inner { display: flex; align-items: center; padding: 14px 0; }
.header__logo { text-decoration: none; }
.logo-text__name {
  font-family: var(--nv-font-head);
  font-weight: 600;
  color: var(--nv-primary);
  font-size: 1.45rem;
  letter-spacing: 0;
}
.footer { background: var(--nv-primary); color: rgba(255,255,255,.72); padding: 30px 0; margin-top: 60px; }
.footer__inner { text-align: center; }
.footer__copy { margin: 0; font-size: 13px; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 992px) {
  .nv-hero { padding: 56px 0 70px; }
  .nv-hero__grid { grid-template-columns: 1fr; gap: 50px; }
  .nv-hero__visual { max-width: 420px; margin: 0 auto; }
  .nv-section { padding: 70px 0; }
  .nv-compare { grid-template-columns: 1fr; }
  .nv-compare__pivot { transform: rotate(90deg); margin: -10px 0; }
  .nv-ingr { grid-template-columns: 1fr; gap: 50px; }
  .nv-order__grid { grid-template-columns: 1fr; padding: 60px 0; gap: 36px; }
  .nv-order__product { order: -1; }
  .nv-post-layout { grid-template-columns: 1fr; padding: 50px 0; }
  .nv-post { padding: 32px 28px; }
  .nv-foot__grid { grid-template-columns: 1fr 1fr; }
  .nv-metrics__row { grid-template-columns: repeat(2, 1fr); gap: 16px 0; padding: 24px 0; }
  .nv-metrics__cell:nth-child(2) { border-right: 0; }
  .nv-metrics__cell:nth-child(odd) { border-right: 1px solid rgba(10,25,47,.10); }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1240px); }
  .nv-hero__grid { gap: 28px; }
  .nv-hero__visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto 8px;
    aspect-ratio: 1/1.25;
  }
  .nv-hero__product { max-height: 100%; }
  .nv-burger { display: flex; }
  .nv-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--nv-line);
    box-shadow: 0 12px 24px rgba(10,25,47,.06);
  }
  .nv-menu.is-open { display: flex; }
  .nv-menu__list { flex-direction: column; gap: 4px; width: 100%; }
  .nv-menu__list li { width: 100%; }
  .nv-menu__link { padding: 12px 0; }
  .nv-header { position: relative; }
  .nv-strip__inner { gap: 12px; padding: 7px 0; font-size: 12px; }
  .nv-strip__sep { display: none; }
  .nv-article, .nv-post { padding: 32px 24px; }
  .nv-foot__grid { grid-template-columns: 1fr; gap: 32px; }
  .nv-post-nav { grid-template-columns: 1fr; }
  .nv-post-nav__btn--next { text-align: left; }
  .nv-form { padding: 28px 22px; }
  .nv-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .nv-acc__head { grid-template-columns: auto 1fr auto; }
  .nv-acc__icon, .nv-acc__amount { display: none; }
  .nv-acc__body { padding: 0 22px 22px 22px; }
  .nv-hero__rating, .nv-hero__pill { display: none; }
  .nv-hero__trust { grid-template-columns: 1fr; }
}
