/* ================================================================
   NUTRIGO — Design tokens & global styles
   Neutri + accento verde #21B4A1
================================================================ */

:root {
  /* Brand */
  --ng-primary: #21B4A1;
  --ng-primary-deep: #178f80;
  --ng-primary-soft: #E8F7F4;
  --ng-primary-tint: #F4FBFA;

  /* Ink (warm neutrals) */
  --ng-ink-900: #0E2A2A;
  --ng-ink-700: #2B3D3D;
  --ng-ink-500: #5A6E6B;
  --ng-ink-400: #8A9B98;
  --ng-ink-300: #B7C3C0;
  --ng-ink-200: #DDE4E2;
  --ng-ink-100: #ECF1EF;
  --ng-ink-50:  #F5F8F6;

  --ng-bg: #FFFFFF;
  --ng-bg-soft: #FAFBFA;
  --ng-bg-warm: #F6F4EF;

  /* Type */
  --ng-font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ng-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Radii */
  --ng-r-sm: 6px;
  --ng-r-md: 10px;
  --ng-r-lg: 16px;
  --ng-r-xl: 24px;
  --ng-r-pill: 999px;

  /* Shadows */
  --ng-shadow-sm: 0 1px 0 rgba(14,42,42,0.04), 0 4px 12px -6px rgba(14,42,42,0.08);
  --ng-shadow-md: 0 1px 0 rgba(14,42,42,0.05), 0 12px 28px -14px rgba(14,42,42,0.16);
  --ng-shadow-lg: 0 1px 0 rgba(14,42,42,0.06), 0 24px 48px -20px rgba(14,42,42,0.22);

  /* Layout */
  --ng-container: 1200px;
  --ng-gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ng-font);
  color: var(--ng-ink-900);
  background: var(--ng-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

.ng-container {
  width: 100%;
  max-width: var(--ng-container);
  margin: 0 auto;
  padding: 0 var(--ng-gutter);
}

/* ============ TYPOGRAPHY ============ */
.ng-eyebrow {
  font-family: var(--ng-mono, var(--ng-font));
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ng-primary-deep);
  font-weight: 500;
  margin: 0 0 12px 0;
}
.ng-h1 {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.ng-h2 {
  font-weight: 600;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  text-wrap: balance;
  color: var(--ng-ink-900);
}
.ng-h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
  color: var(--ng-ink-900);
}
.ng-lead {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
  color: var(--ng-ink-500);
  max-width: 640px;
  margin: 0;
  text-wrap: pretty;
}
.ng-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ng-ink-500);
  margin: 0;
}

/* ============ BADGES ============ */
.ng-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--ng-r-pill);
  background: var(--ng-primary-soft);
  color: var(--ng-primary-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.ng-badge--solid {
  background: var(--ng-primary);
  color: #fff;
}
.ng-badge--outline {
  background: transparent;
  color: var(--ng-primary-deep);
  border: 1px solid var(--ng-ink-200);
}
.ng-badge--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ng-primary);
  box-shadow: 0 0 0 3px rgba(33,180,161,0.22);
  animation: ngPulse 2.4s ease-in-out infinite;
}
@keyframes ngPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(33,180,161,0.22); }
  50%      { box-shadow: 0 0 0 5px rgba(33,180,161,0.10); }
}

/* ============ BUTTONS ============ */
.ng-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--ng-r-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.ng-btn--primary {
  background: var(--ng-primary);
  color: #fff;
  box-shadow: var(--ng-shadow-sm);
}
.ng-btn--primary:hover {
  background: var(--ng-primary-deep);
  transform: translateY(-1px);
  box-shadow: var(--ng-shadow-md);
}
.ng-btn--ghost {
  background: transparent;
  color: var(--ng-ink-900);
}
.ng-btn--ghost:hover { color: var(--ng-primary-deep); }
.ng-btn--outline {
  background: transparent;
  color: var(--ng-ink-900);
  border: 1px solid var(--ng-ink-200);
}
.ng-btn--outline:hover {
  border-color: var(--ng-primary);
  color: var(--ng-primary-deep);
}
.ng-btn--white {
  background: #fff;
  color: var(--ng-ink-900);
  box-shadow: var(--ng-shadow-sm);
}
.ng-btn--white:hover { transform: translateY(-1px); }
.ng-btn__arrow { transition: transform 200ms ease; }
.ng-btn:hover .ng-btn__arrow { transform: translateX(3px); }

/* ============ SECTION ============ */
.ng-section {
  padding: 96px 0;
}
.ng-section--tight { padding: 72px 0; }
.ng-section--soft { background: var(--ng-bg-soft); }
.ng-section--warm { background: var(--ng-bg-warm); }
.ng-section--green { background: var(--ng-primary); color: #fff; }
.ng-section--ink   { background: var(--ng-ink-900); color: #fff; }
.ng-section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  align-items: center;
}
.ng-section__head--left {
  text-align: left;
  margin-left: 0;
  align-items: flex-start;
}

/* ============ NAV ============ */
.ng-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background-color 200ms ease;
}
.ng-nav.is-stuck {
  border-bottom-color: var(--ng-ink-100);
}
.ng-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.ng-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.ng-logo__img {
  height: 32px;
  width: auto;
  display: block;
}
.ng-logo--footer .ng-logo__img {
  height: 36px;
  filter: brightness(0) invert(1);
}
.ng-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ng-nav__links a {
  text-decoration: none;
  color: var(--ng-ink-700);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 160ms ease;
}
.ng-nav__links a:hover { color: var(--ng-primary-deep); }
.ng-nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 860px) {
  .ng-nav__links { display: none; }
  .ng-nav__cta .ng-btn--ghost { display: none; }
  .ng-nav__inner { height: 60px; gap: 12px; }
  .ng-logo__img { height: 26px; }
}
@media (max-width: 480px) {
  .ng-nav__inner { height: 56px; }
  .ng-logo__img { height: 22px; }
  .ng-nav__cta .ng-btn { padding: 8px 14px; font-size: 13px; }
}

/* Responsive globals */
@media (max-width: 860px) {
  :root { --ng-gutter: 18px; }
  .ng-section { padding: 64px 0; }
  .ng-section--tight { padding: 48px 0; }
}
@media (max-width: 480px) {
  :root { --ng-gutter: 14px; }
  .ng-section { padding: 48px 0; }
  .ng-section--tight { padding: 36px 0; }
}

/* ============ STICKY MOBILE CTA ============ */
.ng-mcta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  background: var(--ng-primary);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--ng-r-md);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--ng-shadow-lg);
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.ng-mcta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 860px) {
  .ng-mcta { display: none !important; } /* rimossa dal 25 mag 2026, sostituita dalla chat Nori */
  /* Quando la sticky CTA è visibile, alza il launcher chat Nori così non si
     sovrappone (Android Chrome / iOS Safari / iOS Chrome). Doppio selettore:
     :has() per browser moderni + body class come fallback (gestita da JS). */
  body:has(.ng-mcta.is-visible) .ng-nori-launcher,
  body.ng-mcta-sticky-visible .ng-nori-launcher {
    bottom: 88px !important;
    transition: bottom .25s ease;
  }
}

/* ============ HERO ============ */
.ng-hero {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.ng-hero__media {
  position: relative;
  overflow: hidden;
  background: var(--ng-ink-100);
  min-height: 640px;
}
.ng-hero__media image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.ng-hero__content {
  background: var(--ng-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 80px;
}
.ng-hero__inner { max-width: 540px; }
.ng-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--ng-r-pill);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.ng-hero__badge::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.22);
  animation: ngPulse 2.4s ease-in-out infinite;
}
.ng-hero h1 {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: #fff;
  text-wrap: balance;
}
.ng-hero__sub {
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  margin: 0 0 36px;
  max-width: 460px;
  text-wrap: pretty;
}
.ng-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ng-ink-900);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 28px;
  border-radius: var(--ng-r-md);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  box-shadow: var(--ng-shadow-sm);
  margin-bottom: 32px;
}
.ng-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--ng-shadow-md);
  background: #f7fbfa;
}
.ng-hero__cta-arrow { transition: transform 200ms ease; }
.ng-hero__cta:hover .ng-hero__cta-arrow { transform: translateX(3px); }
.ng-hero__trust {
  display: flex;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.86);
  font-size: 13.5px;
  font-weight: 500;
}
.ng-hero__trust span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 14px;
}
.ng-hero__trust span:first-child { padding-left: 0; }
.ng-hero__trust span + span { border-left: 1px solid rgba(255,255,255,0.28); }
.ng-hero__check { width: 14px; height: 14px; }

@media (max-width: 860px) {
  .ng-hero { grid-template-columns: 1fr; min-height: 0; }
  .ng-hero__media { min-height: 0; height: 240px; }
  .ng-hero__content { padding: 40px 22px 48px; }
  .ng-hero h1 { font-size: 32px; }
  .ng-hero__sub { font-size: 16px; margin-bottom: 28px; }
  .ng-hero__cta { width: 100%; justify-content: center; padding: 16px 24px; margin-bottom: 24px; }
  .ng-hero__trust { flex-direction: column; gap: 10px; font-size: 13px; }
  .ng-hero__trust span { padding: 0 !important; border: 0 !important; }
}

/* ============ HOW IT WORKS ============ */
.ng-how {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.ng-how--3 { grid-template-columns: repeat(3, 1fr); }
.ng-how__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ng-how__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ng-primary-soft);
  color: var(--ng-primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ng-mono);
  font-weight: 600;
  font-size: 15px;
}
.ng-how__title { font-weight: 600; font-size: 18px; margin: 0; color: var(--ng-ink-900); }
.ng-how__desc { font-size: 15px; line-height: 1.55; color: var(--ng-ink-500); margin: 0; }

/* Variant: timeline (horizontal line through the numbers) */
.ng-how--timeline { position: relative; }
.ng-how--timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ng-ink-200) 12%, var(--ng-ink-200) 88%, transparent);
  z-index: 0;
}
.ng-how--timeline .ng-how__num {
  background: #fff;
  border: 1px solid var(--ng-ink-200);
  position: relative;
  z-index: 1;
}

/* Variant: vertical cards */
.ng-how--cards { grid-template-columns: repeat(4, 1fr); }
.ng-how--cards .ng-how__step {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  padding: 24px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.ng-how--cards .ng-how__step:hover {
  transform: translateY(-3px);
  box-shadow: var(--ng-shadow-md);
  border-color: var(--ng-primary-soft);
}

/* Variant: stacked vertical (alternating) */
.ng-how--stacked {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}
.ng-how--stacked .ng-how__step {
  flex-direction: row;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ng-ink-100);
}
.ng-how--stacked .ng-how__step:last-child { border-bottom: 0; }
.ng-how--stacked .ng-how__num { flex: 0 0 40px; }

@media (max-width: 860px) {
  .ng-how, .ng-how--cards, .ng-how--3 { grid-template-columns: 1fr; }
  .ng-how--timeline::before { display: none; }
}

/* ============ UPLOAD MOCKUP ============ */
.ng-upload {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.ng-upload__copy h2 { margin-bottom: 16px; }
.ng-upload__list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ng-upload__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--ng-ink-700);
}
.ng-upload__list svg { flex: 0 0 20px; margin-top: 2px; color: var(--ng-primary); }

/* mockup card */
.ng-mockup {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  box-shadow: var(--ng-shadow-md);
  overflow: hidden;
}
.ng-mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ng-ink-100);
  background: var(--ng-bg-soft);
}
.ng-mockup__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ng-ink-200);
}
.ng-mockup__path {
  margin-left: 12px;
  font-family: var(--ng-mono);
  font-size: 12px;
  color: var(--ng-ink-400);
}
.ng-mockup__body { padding: 28px; }

/* upload variant A: dropzone */
.ng-dz {
  border: 1.5px dashed var(--ng-ink-200);
  border-radius: var(--ng-r-md);
  padding: 32px;
  text-align: center;
  transition: border-color 200ms ease, background 200ms ease;
}
.ng-dz:hover { border-color: var(--ng-primary); background: var(--ng-primary-tint); }
.ng-dz__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ng-primary-soft);
  color: var(--ng-primary-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.ng-dz__title { font-weight: 600; color: var(--ng-ink-900); margin: 0 0 4px; }
.ng-dz__hint { font-size: 13.5px; color: var(--ng-ink-400); margin: 0; }
.ng-dz__file {
  margin-top: 18px;
  display: flex; align-items: center; gap: 12px;
  background: var(--ng-primary-tint);
  border: 1px solid var(--ng-primary-soft);
  border-radius: var(--ng-r-md);
  padding: 10px 14px;
  text-align: left;
}
.ng-dz__file svg { color: var(--ng-primary-deep); }
.ng-dz__file-name { font-size: 14px; font-weight: 500; }
.ng-dz__file-size { font-size: 12.5px; color: var(--ng-ink-400); margin-left: auto; }

/* upload variant B: form parsed */
.ng-form { display: flex; flex-direction: column; gap: 14px; }
.ng-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ng-input {
  display: flex; flex-direction: column; gap: 6px;
}
.ng-input label {
  font-size: 12.5px; font-weight: 500;
  color: var(--ng-ink-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.ng-input__field {
  border: 1px solid var(--ng-ink-200);
  border-radius: var(--ng-r-sm);
  padding: 10px 12px;
  font-size: 14.5px;
  color: var(--ng-ink-900);
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.ng-input__field--ok { border-color: var(--ng-primary); background: var(--ng-primary-tint); }
.ng-input__check { color: var(--ng-primary-deep); }

/* upload variant C: chat with nutritionist */
.ng-chat { display: flex; flex-direction: column; gap: 12px; }
.ng-chat__msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.45;
}
.ng-chat__msg--in {
  background: var(--ng-ink-50);
  color: var(--ng-ink-900);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.ng-chat__msg--out {
  background: var(--ng-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.ng-chat__attach {
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--ng-ink-200);
  border-radius: var(--ng-r-md);
  padding: 10px 14px;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 10px;
}

@media (max-width: 860px) {
  .ng-upload { grid-template-columns: 1fr; gap: 36px; }
  .ng-form__row { grid-template-columns: 1fr; }
}

/* ============ PRICING CONTROLS ============ */
.ng-price-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ng-price-control__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ng-ink-500);
  font-family: var(--ng-mono);
}

/* ============ MENU SAMPLE ============ */
.ng-menu-tabs {
  display: flex; gap: 6px;
  background: var(--ng-ink-50);
  padding: 4px;
  border-radius: var(--ng-r-pill);
  margin: 0 auto 32px;
  width: fit-content;
}
.ng-menu-tab {
  padding: 8px 16px;
  border-radius: var(--ng-r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ng-ink-500);
  cursor: pointer;
  border: 0;
  background: transparent;
  transition: all 160ms ease;
}
.ng-menu-tab.is-active {
  background: #fff;
  color: var(--ng-ink-900);
  box-shadow: var(--ng-shadow-sm);
}

/* Menu — grid cards */
.ng-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ng-meal {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.ng-meal:hover { transform: translateY(-3px); box-shadow: var(--ng-shadow-md); }
.ng-meal__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ng-ink-100);
  position: relative;
}
.ng-meal__media image-slot { width: 100%; height: 100%; }
.ng-meal__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--ng-r-pill);
  color: var(--ng-ink-700);
}
.ng-meal__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.ng-meal__title { font-weight: 600; font-size: 16.5px; margin: 0; line-height: 1.3; }
.ng-meal__macros {
  display: flex; gap: 14px;
  font-size: 13px;
  color: var(--ng-ink-500);
}
.ng-meal__macros b { color: var(--ng-ink-900); font-weight: 600; }
.ng-meal__weight {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ng-mono);
  font-size: 12.5px;
  color: var(--ng-primary-deep);
  margin-top: auto;
}

/* Menu — table */
.ng-menu-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  overflow: hidden;
}
.ng-menu-table th, .ng-menu-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--ng-ink-100);
}
.ng-menu-table th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ng-ink-400);
  font-weight: 500;
  background: var(--ng-bg-soft);
}
.ng-menu-table tr:last-child td { border-bottom: 0; }
.ng-menu-table td b { color: var(--ng-ink-900); }
.ng-menu-table .ng-grams { font-family: var(--ng-mono); color: var(--ng-primary-deep); }

/* Menu — week schedule */
.ng-menu-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.ng-menu-day {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.ng-menu-day__name {
  font-family: var(--ng-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ng-ink-400);
  margin: 0 0 4px;
}
.ng-menu-day__meal {
  font-size: 13px;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--ng-ink-100);
}
.ng-menu-day__meal:last-child { border-bottom: 0; padding-bottom: 0; }
.ng-menu-day__meal b { display: block; color: var(--ng-ink-900); font-weight: 600; }
.ng-menu-day__meal span { color: var(--ng-ink-500); font-size: 12px; }

@media (max-width: 1100px) {
  .ng-menu-week { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .ng-menu-grid { grid-template-columns: 1fr; }
  .ng-menu-table { display: block; overflow-x: auto; }
  .ng-menu-week { grid-template-columns: repeat(2, 1fr); }
}

/* ============ PRICING ============ */
.ng-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ng-price {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.ng-price:hover { transform: translateY(-3px); box-shadow: var(--ng-shadow-md); }
.ng-price--featured {
  border-color: var(--ng-primary);
  background: var(--ng-primary-tint);
}
.ng-price--featured::before {
  content: "Più scelto";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--ng-primary);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--ng-r-pill);
}
.ng-price__name { font-weight: 600; font-size: 17px; margin: 0; }
.ng-price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.ng-price__amount .num {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ng-ink-900);
  line-height: 1;
}
.ng-price__amount .cur { font-size: 22px; font-weight: 600; color: var(--ng-ink-900); }
.ng-price__amount .per { font-size: 14px; color: var(--ng-ink-500); }
.ng-price__sub { font-size: 13.5px; color: var(--ng-ink-500); margin: -10px 0 0; }
.ng-price__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ng-price__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ng-ink-700);
}
.ng-price__list svg { flex: 0 0 16px; margin-top: 4px; color: var(--ng-primary); }

/* Pricing variant: compact table */
.ng-price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  overflow: hidden;
}
.ng-price-table th, .ng-price-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--ng-ink-100);
}
.ng-price-table th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ng-ink-400);
  font-weight: 500;
  background: var(--ng-bg-soft);
}
.ng-price-table tr:last-child td { border-bottom: 0; }
.ng-price-table .ng-feat { background: var(--ng-primary-tint); }
.ng-price-table .ng-amt { font-weight: 600; color: var(--ng-ink-900); }
.ng-price-table .ng-amt small { font-weight: 400; color: var(--ng-ink-500); }

/* Pricing variant: slider/calculator */
.ng-calc {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  padding: 36px;
  max-width: 720px;
  margin: 0 auto;
}
.ng-calc__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.ng-calc__label { font-size: 14px; color: var(--ng-ink-500); }
.ng-calc__val { font-size: 28px; font-weight: 600; letter-spacing: -0.01em; }
.ng-calc__slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--ng-ink-100);
  border-radius: 999px;
  outline: none;
}
.ng-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ng-primary);
  border: 3px solid #fff;
  box-shadow: var(--ng-shadow-md);
  cursor: pointer;
}
.ng-calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ng-primary);
  border: 3px solid #fff;
  box-shadow: var(--ng-shadow-md);
  cursor: pointer;
}
.ng-calc__total {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--ng-ink-100);
  display: flex; justify-content: space-between; align-items: center;
}
.ng-calc__total-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.ng-calc__total-price {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ng-calc__total-per {
  font-size: 15px;
  font-weight: 400;
  color: var(--ng-ink-500);
  white-space: nowrap;
}
.ng-calc__total-extra {
  font-size: 13px;
  color: var(--ng-ink-500);
  margin-top: 4px;
}
@media (max-width: 480px) {
  .ng-calc__total-price { font-size: 30px; }
}

@media (max-width: 860px) {
  .ng-pricing { grid-template-columns: 1fr; }
  .ng-price-table { display: block; overflow-x: auto; }
}

/* ============ MAP ============ */
.ng-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.ng-map-zones { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 8px; }
.ng-map-zones li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-md);
  font-size: 14.5px;
  background: #fff;
  transition: border-color 160ms ease;
}
.ng-map-zones li:hover { border-color: var(--ng-primary); }
.ng-map-zones__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ng-primary);
}
.ng-map-zones__dot--soon { background: var(--ng-ink-300); }
.ng-map-zones__name { font-weight: 600; }
.ng-map-zones__meta { color: var(--ng-ink-400); font-size: 13px; margin-left: auto; }

.ng-map {
  position: relative;
  background: var(--ng-bg-soft);
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ng-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }

@media (max-width: 860px) {
  .ng-map-wrap { grid-template-columns: 1fr; }
}

/* ============ TESTIMONIALS ============ */
.ng-testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ng-testi__card {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ng-testi__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ng-ink-900);
  margin: 0;
  text-wrap: pretty;
}
.ng-testi__person {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ng-ink-100);
}
.ng-testi__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ng-primary-soft);
  color: var(--ng-primary-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.ng-testi__name { font-weight: 600; font-size: 14.5px; }
.ng-testi__role { font-size: 13px; color: var(--ng-ink-500); }
.ng-testi__stars { display: flex; gap: 2px; color: var(--ng-primary); }

@media (max-width: 860px) { .ng-testi { grid-template-columns: 1fr; } }

/* ============ TRUST / CERTS ============ */
.ng-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ng-trust-item {
  background: #fff;
  border: 1px solid var(--ng-ink-100);
  border-radius: var(--ng-r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ng-trust-item__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--ng-primary-soft);
  color: var(--ng-primary-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.ng-trust-item h4 { font-weight: 600; font-size: 15.5px; margin: 0; }
.ng-trust-item p { font-size: 13.5px; color: var(--ng-ink-500); margin: 0; line-height: 1.5; }

@media (max-width: 860px) { .ng-trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ SUSTAINABILITY ============ */
.ng-sust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ng-sust__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--ng-r-lg);
  background: var(--ng-ink-100);
  overflow: hidden;
}
.ng-sust__media image-slot { width: 100%; height: 100%; }
.ng-sust__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 28px; }
.ng-sust__stat .num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ng-primary-deep);
  display: block;
}
.ng-sust__stat .lbl { font-size: 13.5px; color: var(--ng-ink-500); }
@media (max-width: 860px) { .ng-sust { grid-template-columns: 1fr; gap: 32px; } }

/* ============ B2B ============ */
.ng-b2b {
  background: var(--ng-ink-900);
  color: #fff;
  border-radius: var(--ng-r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ng-b2b::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,180,161,0.18), transparent 70%);
}
.ng-b2b h2 { color: #fff; }
.ng-b2b p { color: rgba(255,255,255,0.8); }
.ng-b2b .ng-eyebrow { color: var(--ng-primary); }
.ng-b2b__list { list-style: none; padding: 0; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.ng-b2b__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.86); }
.ng-b2b__list svg { flex: 0 0 18px; color: var(--ng-primary); margin-top: 3px; }
.ng-b2b__panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ng-r-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.ng-b2b__panel-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 14px; }
.ng-b2b__panel-row:last-child { border-bottom: 0; }
.ng-b2b__panel-row .lbl { color: rgba(255,255,255,0.6); }
.ng-b2b__panel-row .val { color: #fff; font-weight: 500; }

@media (max-width: 860px) {
  .ng-b2b { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* B2B segmented hero — large card-tabs */
.ng-b2b__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 8px;
  background: rgba(15, 24, 31, 0.04);
  border: 1px solid rgba(15, 24, 31, 0.08);
  border-radius: 22px;
  margin: 8px 0 36px;
}
.ng-b2b__hero-btn {
  appearance: none;
  background: #fff;
  border: 1.5px solid rgba(15, 24, 31, 0.08);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  font: inherit;
  color: var(--ng-ink-900, #0f181f);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.ng-b2b__hero-btn:hover {
  border-color: rgba(33, 180, 161, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15, 24, 31, 0.06);
}
.ng-b2b__hero-btn.is-active {
  border-color: var(--ng-primary, #21b4a1);
  background: linear-gradient(180deg, #fff 0%, rgba(33, 180, 161, 0.04) 100%);
  box-shadow: 0 0 0 3px rgba(33, 180, 161, 0.12), 0 8px 24px rgba(33, 180, 161, 0.1);
}
.ng-b2b__hero-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(15, 24, 31, 0.05);
  color: var(--ng-ink-700, #4a5560);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ng-b2b__hero-btn.is-active .ng-b2b__hero-icon {
  background: var(--ng-primary, #21b4a1);
  color: #fff;
}
.ng-b2b__hero-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.ng-b2b__hero-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ng-b2b__hero-sub {
  font-size: 13.5px;
  color: var(--ng-ink-700, #4a5560);
  line-height: 1.35;
}
.ng-b2b__hero-check {
  flex: 0 0 auto;
  color: rgba(15, 24, 31, 0.15);
  display: flex;
  transition: color 0.2s ease;
}
.ng-b2b__hero-btn.is-active .ng-b2b__hero-check {
  color: var(--ng-primary, #21b4a1);
}
@media (max-width: 720px) {
  .ng-b2b__hero { grid-template-columns: 1fr; gap: 10px; }
  .ng-b2b__hero-btn { padding: 18px 18px; gap: 14px; }
  .ng-b2b__hero-icon { width: 48px; height: 48px; }
  .ng-b2b__hero-title { font-size: 17px; }
  .ng-b2b__hero-sub { font-size: 12.5px; }
}

/* ============ FAQ ============ */
.ng-faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ng-ink-100);
}
.ng-faq__item { border-bottom: 1px solid var(--ng-ink-100); }
.ng-faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ng-ink-900);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: inherit;
}
.ng-faq__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ng-ink-50);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.ng-faq__item.is-open .ng-faq__icon {
  background: var(--ng-primary);
  color: #fff;
  transform: rotate(45deg);
}
.ng-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease, padding 280ms ease;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ng-ink-500);
}
.ng-faq__item.is-open .ng-faq__a {
  max-height: 400px;
  padding: 0 0 22px;
}

/* ============ FINAL CTA ============ */
.ng-final {
  background: var(--ng-primary);
  color: #fff;
  border-radius: var(--ng-r-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ng-final h2 { color: #fff; max-width: 640px; margin: 0 auto 16px; }
.ng-final p { color: rgba(255,255,255,0.86); max-width: 540px; margin: 0 auto 28px; }
.ng-final .ng-btn--white { padding: 17px 28px; font-size: 16px; }
.ng-final::before, .ng-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.ng-final::before { width: 240px; height: 240px; left: -80px; bottom: -80px; }
.ng-final::after  { width: 180px; height: 180px; right: -40px; top: -60px; }

/* ============ FOOTER ============ */
.ng-footer {
  background: var(--ng-ink-900);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.ng-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.ng-footer h5 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.ng-footer__brand-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 320px;
}
.ng-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ng-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 160ms ease; }
.ng-footer a:hover { color: #fff; }
.ng-footer__bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.ng-footer__bottom > span { flex: 1; max-width: 820px; }
.ng-footer__bottom-links { display: flex; gap: 20px; flex-shrink: 0; }
.ng-footer__bottom-links a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ng-footer__bottom-links a:hover { color: #fff; }
.ng-footer .ng-logo { color: #fff; }

@media (max-width: 860px) {
  .ng-footer__grid { grid-template-columns: 1fr 1fr; }
  .ng-footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============ Reveal on scroll ============ */
.ng-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.ng-reveal.is-in {
  opacity: 1;
  transform: none;
}


/* ================================================================
   SEO Helpers + SEO Copy section
================================================================ */
.ng-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.ng-seo {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ng-seo__head {
  max-width: 760px;
}
.ng-seo__head .ng-h2 {
  margin-top: 8px;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.ng-seo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ng-seo__col h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ng-ink-900, #0F1F1E);
}
.ng-seo__col p {
  color: var(--ng-ink-700, #2B3D3D);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.ng-seo__col strong {
  color: var(--ng-ink-900, #0F1F1E);
  font-weight: 600;
}
.ng-seo__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ng-seo__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ng-ink-700, #2B3D3D);
}
.ng-seo__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ng-primary, #21B4A1);
}
.ng-seo__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ng-ink-100, #EFF2F1);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ng-ink-100, #EFF2F1);
}
.ng-seo__strip-item {
  background: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.ng-seo__strip-item span:last-child {
  font-size: 13px;
  color: var(--ng-ink-500, #5A6E6B);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.ng-seo__big {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ng-primary-deep, #178577);
  font-family: var(--ng-font, "DM Sans", sans-serif);
  line-height: 1;
}
@media (max-width: 760px) {
  .ng-seo__grid { grid-template-columns: 1fr; gap: 32px; }
  .ng-seo__strip { grid-template-columns: 1fr 1fr; }
  .ng-seo__big { font-size: 28px; }
}


/* ============ B2B Toggle pill (option C) ============ */
.ng-b2b__toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 40px;
}
.ng-b2b__toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(15, 31, 30, 0.06);
  border: 1px solid rgba(15, 31, 30, 0.10);
  position: relative;
}
.ng-b2b__toggle-pill {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 999px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: rgba(15, 31, 30, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: -0.005em;
}
.ng-b2b__toggle-pill:hover { color: rgba(15, 31, 30, 0.85); }
.ng-b2b__toggle-pill.is-active {
  background: #0F1F1E;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 31, 30, 0.18), 0 1px 0 rgba(255,255,255,0.08) inset;
}
.ng-b2b__toggle-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.ng-b2b__toggle-pill.is-active .ng-b2b__toggle-dot {
  opacity: 1;
  background: #21B4A1;
  transform: scale(1.15);
  box-shadow: 0 0 0 3px rgba(33, 180, 161, 0.25);
}
.ng-b2b__toggle-label { white-space: nowrap; }

@media (max-width: 520px) {
  .ng-b2b__toggle-pill { padding: 11px 18px; font-size: 14px; }
}
