@import url('fonts.css');

/* ==========================================================================
   NEXMON SOLUTIONS — hoja de estilo principal
   Tokens y escalas documentados en /IDENTIDAD.md
   ========================================================================== */

:root {
  /* Color */
  --nx-navy:        #0D1B2A;
  --nx-navy-text:   #0E1A28;
  --nx-amber:       #F59E0B;
  --nx-amber-dark:  #D98B09;
  --nx-white:       #FFFFFF;
  --nx-gray-bg:     #F1F4F9;
  --nx-gray-text:   #445566;
  --nx-border:      #E5E7EB;
  --nx-gray-mid:    #C6C6C6;
  --nx-growth-blue: #0077B6;
  --nx-growth-dark: #005B8C;

  /* Tipografía */
  --nx-font-display: 'Mulish', 'Avenir Next', Avenir, 'Segoe UI', system-ui, sans-serif;
  --nx-font-ui:      'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --nx-font-growth:  'Oswald', 'Mulish', sans-serif;

  /* Métrica */
  --nx-container: 1320px;
  --nx-gutter: clamp(1rem, 3vw, 2.5rem);
  --nx-section-y: clamp(3.5rem, 7vw, 6.5rem);
  --nx-radius-card: 20px;
  --nx-header-h: 84px;
}

/* --- Reset acotado ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nx-header-h); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--nx-font-display);
  font-weight: 600;
  font-size: 1.1125rem;   /* 17.8px */
  line-height: 1.6;
  color: var(--nx-gray-text);
  background: var(--nx-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--nx-font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--nx-navy-text);
  letter-spacing: -0.01em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--nx-amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.nx-skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--nx-amber); color: var(--nx-navy);
  padding: .75rem 1.25rem; font-family: var(--nx-font-ui); font-weight: 700;
}
.nx-skip:focus { left: 1rem; top: 1rem; }

.nx-visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout -------------------------------------------------------------- */
.nx-container {
  width: 100%;
  max-width: var(--nx-container);
  margin-inline: auto;
  padding-inline: var(--nx-gutter);
}

.nx-section { padding-block: var(--nx-section-y); }
.nx-section--gray  { background: var(--nx-gray-bg); }
.nx-section--navy  { background: var(--nx-navy); color: #fff; }
.nx-section--navy h1, .nx-section--navy h2,
.nx-section--navy h3, .nx-section--navy h4 { color: #fff; }

/* --- Tipografía ---------------------------------------------------------- */
.nx-h1 { font-size: clamp(2.35rem, 4.07vw, 3.66rem); font-weight: 900; }
.nx-h2 { font-size: clamp(2rem, 4.64vw, 4.175rem); font-weight: 800; }
.nx-h3 { font-size: clamp(1.375rem, 2.32vw, 2.09rem); font-weight: 800; }
.nx-lead { font-size: clamp(1.125rem, 1.55vw, 1.39rem); font-weight: 600; line-height: 1.5; }
.nx-body-sm { font-size: 1.1125rem; }

.nx-eyebrow {
  font-family: var(--nx-font-ui);
  font-size: clamp(1rem, 1.86vw, 1.67rem);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nx-amber);
}

.nx-num {
  font-family: var(--nx-font-ui);
  font-weight: 700;
  color: var(--nx-amber);
  line-height: 1;
}

.nx-center { text-align: center; }
.nx-amber { color: var(--nx-amber); }
.nx-highlight-amber { color: var(--nx-amber); }

/* --- Botones ------------------------------------------------------------- */
.nx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--nx-font-ui);
  font-weight: 700;
  font-size: clamp(.95rem, 1.24vw, 1.1125rem);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: .95rem 1.85rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}
.nx-btn:hover { transform: translateY(-2px); }
.nx-btn--primary   { background: var(--nx-amber); }
.nx-btn--primary:hover { background: var(--nx-amber-dark); }
.nx-btn--secondary { background: var(--nx-navy); }
.nx-btn--secondary:hover { background: #060F1A; }
.nx-btn--growth    { background: var(--nx-growth-blue); }
.nx-btn--growth:hover { background: var(--nx-growth-dark); }
.nx-btn--lg { padding: 1.15rem 2.75rem; font-size: clamp(1.05rem, 1.55vw, 1.39rem); }

.nx-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.nx-cta-center { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3.5rem); }

/* --- Cabecera ------------------------------------------------------------ */
.nx-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--nx-navy-text);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nx-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: var(--nx-header-h);
}
.nx-header__logo img { width: auto; height: 56px; }

.nx-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nx-nav a {
  font-family: var(--nx-font-display);
  font-weight: 700;
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nx-nav a:hover { border-bottom-color: var(--nx-amber); }
.nx-nav__lang {
  color: var(--nx-amber) !important;
  border: 1px solid rgba(245,158,11,.5) !important;
  border-radius: 999px;
  padding: .3rem .85rem !important;
}
.nx-nav__lang:hover { background: var(--nx-amber); color: var(--nx-navy) !important; }

.nx-burger {
  display: none;
  width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer; padding: 10px;
}
.nx-burger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nx-burger span + span { margin-top: 6px; }
.nx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nx-burger { display: block; }
  .nx-nav {
    position: absolute; inset-inline: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--nx-navy-text);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: .5rem var(--nx-gutter) 1.5rem;
    display: none;
  }
  .nx-nav[data-open="true"] { display: flex; }
  .nx-nav a { padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nx-nav__lang { align-self: flex-start; margin-top: 1rem; border-bottom: 0 !important; }
}

/* --- Hero ---------------------------------------------------------------- */
.nx-hero { background: #fff; padding-block: clamp(2.5rem, 5vw, 4.5rem) 0; }
.nx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.nx-hero__title { margin-bottom: .1em; }
/* El original usa el mismo navy en las dos líneas del titular (rgb(14,26,40)). */
.nx-hero__title--muted { color: var(--nx-navy-text); }
.nx-hero__lead { margin: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(1.75rem, 3vw, 2.5rem); max-width: 42ch; }
.nx-hero__media img { width: 100%; border-radius: var(--nx-radius-card); }
.nx-hero__grid > * { animation: nx-rise .7s both cubic-bezier(.22,.75,.25,1); }
.nx-hero__grid > :last-child { animation-delay: .13s; }
.nx-reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s cubic-bezier(.22,.75,.25,1); }
.nx-reveal.is-visible { opacity: 1; transform: none; }
@keyframes nx-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.nx-stats {
  background: var(--nx-navy-text);
  color: #fff;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-block: clamp(1.25rem, 2.4vw, 2rem);
}
.nx-stats ul {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1rem clamp(1.5rem, 4vw, 4rem);
  font-family: var(--nx-font-ui);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.77vw, 2.5rem);
  line-height: 1.2;
}

@media (max-width: 860px) {
  .nx-hero__grid { grid-template-columns: 1fr; }
  .nx-hero__media { order: -1; max-width: 520px; margin-inline: auto; }
}

/* --- Rejilla de 4 puntos (numerada) -------------------------------------- */
.nx-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.nx-pillar .nx-num { font-size: clamp(1.5rem, 2.32vw, 2.09rem); margin-bottom: .5rem; }
.nx-pillar h3 { margin-bottom: .5rem; }

@media (max-width: 700px) { .nx-pillars { grid-template-columns: 1fr; } }

/* --- Rejilla de servicios ------------------------------------------------ */
.nx-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.6vw, 2.6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.nx-service__media {
  border-radius: var(--nx-radius-card);
  overflow: hidden;
  background: var(--nx-gray-bg);
  aspect-ratio: 3 / 2;
}
.nx-service__media img { width: 100%; height: 100%; object-fit: cover; }
.nx-service h3 { margin: 1.15rem 0 .85rem; font-size: clamp(1.2rem, 1.7vw, 1.55rem); }
.nx-service ul { display: grid; gap: .25rem; padding-left: 1.05rem; }
.nx-service li {
  position: relative;
  font-size: .975rem;
  font-weight: 600;
  color: var(--nx-navy-text);
  line-height: 1.35;
}
.nx-service li::before {
  content: ""; position: absolute; left: -1.05rem; top: .52em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--nx-amber);
}

@media (max-width: 1080px) { .nx-services { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .nx-services { grid-template-columns: 1fr; } }

/* --- Proyectos a medida -------------------------------------------------- */
.nx-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2.6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.nx-projects figure { margin: 0; border-radius: var(--nx-radius-card); overflow: hidden; }
.nx-projects img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

@media (max-width: 760px) { .nx-projects { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* --- Sectores ------------------------------------------------------------ */
.nx-sectors {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 3.5vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.nx-sector__icon {
  height: 120px;
  display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 1.1rem;
}
.nx-sector__icon img { max-height: 120px; width: auto; }
.nx-sector h3 { font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 700; }

@media (max-width: 900px) { .nx-sectors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* --- Proceso ------------------------------------------------------------- */
.nx-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2.2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.nx-step {
  background: var(--nx-navy);
  color: #fff;
  border-radius: var(--nx-radius-card);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
}
.nx-step .nx-num { font-size: clamp(2.25rem, 4.17vw, 3.76rem); display: block; margin-bottom: .6rem; }
.nx-step h3 { color: #fff; font-size: clamp(1.15rem, 1.6vw, 1.45rem); margin-bottom: .6rem; }
.nx-step p { color: rgba(255,255,255,.82); font-size: 1rem; }

.nx-tagline {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--nx-gray-text);
}

@media (max-width: 1000px) { .nx-process { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .nx-process { grid-template-columns: 1fr; } }

/* --- Nosotros / EST. 1984 ------------------------------------------------ */
.nx-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.nx-about__grid p { color: rgba(255,255,255,.85); }
.nx-about__grid h3 { margin: clamp(1.5rem, 3vw, 2.25rem) 0 1rem; }
.nx-about__grid .nx-eyebrow { display: block; margin-bottom: 1.25rem; }
/* La foto de archivo llegó vertical; se corrige en el marco sin modificar el original. */
.nx-about__media { aspect-ratio: 601 / 677; overflow: hidden; border-radius: var(--nx-radius-card); }
.nx-about__media img { width: 100%; height: 100%; max-width:none; object-fit: cover; transform:rotate(90deg) scale(1.78); transition:transform .8s cubic-bezier(.22,.75,.25,1); }
.nx-about__media:hover img { transform:rotate(90deg) scale(1.86); }

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

/* Marquesina */
.nx-marquee {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-block: 1.1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.nx-marquee__track {
  display: flex; width: max-content;
  animation: nx-scroll 32s linear infinite;
}
.nx-marquee__track span {
  font-family: var(--nx-font-ui);
  font-weight: 600;
  letter-spacing: .12em;
  font-size: clamp(.9rem, 1.1vw, 1.05rem);
  color: rgba(255,255,255,.8);
  padding-inline: 1.25rem;
  white-space: nowrap;
}
@keyframes nx-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Banner NEXMON GROWTH ------------------------------------------------ */
.nx-growth-banner { background: #fff; }
.nx-growth-banner__badge {
  display: inline-block;
  background: var(--nx-growth-blue);
  color: #fff;
  font-family: var(--nx-font-ui); font-weight: 700; letter-spacing: .18em;
  font-size: .8rem; text-transform: uppercase;
  padding: .55rem 1.5rem; border-radius: 999px;
  margin-bottom: 1.5rem;
}
.nx-growth-banner__name {
  font-family: var(--nx-font-display);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: clamp(1.25rem, 1.88vw, 1.7rem);
  color: var(--nx-navy-text);
  margin-bottom: .75rem;
}
.nx-growth-banner__claim {
  font-family: var(--nx-font-growth);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.12;
  font-size: clamp(1.9rem, 4.08vw, 3.67rem);
  color: var(--nx-navy-text);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 800px;
}

/* --- Contacto ------------------------------------------------------------ */
.nx-contact__intro { max-width: 62ch; margin: clamp(1.25rem, 2.5vw, 2rem) auto 0; text-align: center; }
.nx-form {
  max-width: 760px;
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  display: grid;
  gap: 1.1rem;
}
.nx-field { display: grid; gap: .4rem; }
.nx-field label {
  font-family: var(--nx-font-ui);
  font-size: .9rem; font-weight: 600;
  color: var(--nx-navy-text);
}
.nx-field input, .nx-field textarea {
  font-family: var(--nx-font-ui);
  font-size: 1rem;
  color: var(--nx-navy-text);
  background: #fff;
  border: 1px solid var(--nx-gray-mid);
  border-radius: 4px;
  padding: .75rem .9rem;
  width: 100%;
}
.nx-field textarea { min-height: 120px; resize: vertical; }
.nx-field input:focus, .nx-field textarea:focus { border-color: var(--nx-amber); }
.nx-form .nx-btn {
  border-radius: 4px;
  width: 100%;
  padding: .85rem 1rem;
  font-size: 1rem;
  margin-top: .5rem;
}
.nx-form__status {
  font-family: var(--nx-font-ui); font-size: .95rem;
  padding: .85rem 1rem; border-radius: 4px;
  background: #FFF6E6; border: 1px solid var(--nx-amber); color: #7A4E00;
}
.nx-form__status[hidden] { display: none; }

.nx-contact-band {
  background: var(--nx-navy-text);
  color: #fff;
  border-radius: var(--nx-radius-card);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.nx-contact-band ul {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem clamp(2rem, 6vw, 6rem);
  font-size: clamp(1.15rem, 1.88vw, 1.7rem);
  font-weight: 700;
}
.nx-contact-band a { text-decoration: none; }
.nx-contact-band a:hover { color: var(--nx-amber); }

/* --- Pie ----------------------------------------------------------------- */
.nx-footer {
  background: var(--nx-navy-text);
  color: #fff;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.nx-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.nx-footer h2 {
  font-family: var(--nx-font-display);
  font-size: clamp(1rem, 1.86vw, 1.67rem);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.nx-footer li, .nx-footer p { font-size: 1.1125rem; color: rgba(255,255,255,.85); line-height: 1.7; }
.nx-footer a { text-decoration: none; }
.nx-footer a:hover { color: var(--nx-amber); }
.nx-footer__legal {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.nx-footer__legal p, .nx-footer__legal a {
  font-family: var(--nx-font-ui); font-size: .95rem; color: rgba(255,255,255,.7);
}
.nx-footer__logo img { height: 52px; width: auto; border-radius: 6px; }

@media (max-width: 800px) { .nx-footer__grid { grid-template-columns: 1fr; } }

/* --- Página legal -------------------------------------------------------- */
.nx-legal { max-width: 860px; }
.nx-legal h1 { font-size: clamp(2rem, 3.3vw, 3rem); margin-bottom: 2rem; }
/* El primer bloque legal es un h2 (bajo un h1 oculto) para no saltarse
   niveles de encabezado, pero se ve con el tamaño del titular de página. */
.nx-legal h2.nx-legal__first {
  font-size: clamp(2rem, 3.3vw, 3rem);
  margin: 0 0 2rem;
  padding-top: 0;
  border-top: 0;
}
.nx-legal h2 {
  font-size: clamp(1.5rem, 2.32vw, 2.09rem);
  margin: clamp(2.5rem, 4vw, 3.5rem) 0 1.25rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 2px solid var(--nx-amber);
}
.nx-legal h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); margin: 2rem 0 .75rem; }
.nx-legal p { margin-bottom: 1rem; }
.nx-legal ul { margin: 0 0 1.25rem 1.25rem; }
.nx-legal li { position: relative; margin-bottom: .35rem; }
.nx-legal li::before {
  content: ""; position: absolute; left: -1.1rem; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--nx-amber);
}
.nx-legal a { color: var(--nx-navy-text); text-decoration: underline; text-decoration-color: var(--nx-amber); }

/* ==========================================================================
   NEXMON GROWTH — sub-marca (azul). Solo en /Nexmongrowth
   ========================================================================== */
.nx-growth { --nx-amber: var(--nx-growth-blue); --nx-amber-dark: var(--nx-growth-dark); }

.nx-growth .nx-hero__grid { align-items: center; }
.nx-growth .nx-hero__media img { border-radius: var(--nx-radius-card); }

.nx-growth-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.nx-growth-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--nx-radius-card);
  padding: clamp(1.5rem, 2.6vw, 2.35rem);
}
.nx-growth-card .nx-num { font-size: 1.9rem; display: block; margin-bottom: .75rem; color: var(--nx-growth-blue); }
.nx-growth-card h3 { color: #fff; font-size: clamp(1.15rem, 1.65vw, 1.5rem); margin-bottom: .6rem; }
.nx-growth-card p { color: rgba(255,255,255,.82); font-size: 1rem; margin-bottom: .5rem; }
.nx-growth-card__link {
  font-family: var(--nx-font-ui); font-weight: 700; font-size: .95rem;
  color: var(--nx-growth-blue); text-decoration: none;
}
.nx-growth-card__link:hover { text-decoration: underline; }

@media (max-width: 760px) { .nx-growth-cards { grid-template-columns: 1fr; } }

.nx-growth-block__label {
  font-family: var(--nx-font-ui); font-weight: 700; letter-spacing: .14em;
  font-size: .9rem; text-transform: uppercase; color: var(--nx-growth-blue);
  display: block; margin-bottom: 1.25rem;
}
.nx-growth-block__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}
@media (max-width: 860px) { .nx-growth-block__grid { grid-template-columns: 1fr; } }

.nx-compare {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.nx-compare__col {
  border-radius: var(--nx-radius-card);
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
  background: var(--nx-gray-bg);
}
.nx-compare__col--good { background: #E6F2FA; border: 1px solid var(--nx-growth-blue); }
.nx-compare__col h3 {
  font-family: var(--nx-font-ui); font-size: .9rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem;
}
.nx-compare__col--good h3 { color: var(--nx-growth-blue); }
.nx-compare li { font-size: 1rem; font-weight: 600; color: var(--nx-navy-text); padding-left: 1.4rem; position: relative; margin-bottom: .5rem; }
.nx-compare__col li::before { content: "·"; position: absolute; left: .3rem; font-weight: 900; }
.nx-compare__col--good li::before { content: "✓"; color: var(--nx-growth-blue); font-size: .85rem; top: .1em; }

.nx-channels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 2.4vw, 2.25rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.nx-channel { background: #fff; border: 1px solid var(--nx-border); border-radius: var(--nx-radius-card); padding: clamp(1.5rem, 2.4vw, 2.1rem); }
.nx-channel__name { font-family: var(--nx-font-ui); font-weight: 700; letter-spacing: .1em; font-size: .85rem; text-transform: uppercase; color: var(--nx-growth-blue); display: block; margin-bottom: .85rem; }
.nx-channel h3 { font-size: clamp(1.2rem, 1.7vw, 1.5rem); margin-bottom: .6rem; }
.nx-channel p { font-size: 1rem; margin-bottom: 1rem; }
.nx-channel__flow { display: flex; align-items: center; gap: .6rem; font-family: var(--nx-font-ui); font-weight: 700; font-size: .78rem; letter-spacing: .06em; color: var(--nx-navy-text); flex-wrap: wrap; }
.nx-channel__flow span:nth-child(2) { color: var(--nx-growth-blue); }
@media (max-width: 860px) { .nx-channels { grid-template-columns: 1fr; } }

.nx-pills { display: grid; gap: .65rem; margin-top: 1.5rem; }
.nx-pills li { display: flex; align-items: baseline; gap: .65rem; font-weight: 600; color: var(--nx-navy-text); }
.nx-pills li::before { content: "✓"; color: var(--nx-growth-blue); font-weight: 900; }

.nx-web-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.nx-web-grid div { background: var(--nx-gray-bg); border-radius: 12px; padding: 1.25rem; }
.nx-web-grid strong { display: block; font-family: var(--nx-font-ui); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nx-growth-blue); margin-bottom: .35rem; }
.nx-web-grid p { font-size: 1rem; }
