/* ==========================================================================
   NAVAL ORIENTATION: Home page sections
   ========================================================================== */

/* =========================================================================
   HERO
   ========================================================================= */
.no-hero {
  position: relative;
  min-height: clamp(540px, 100svh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background: var(--no-ink-900);
  overflow: hidden;
  padding-top: calc(var(--no-header-h) + var(--no-topbar-h) + 1rem);
}
.no-hero__media { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.no-hero__media video,
.no-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Motion layer sits above the poster; the poster stays as the LCP element and
   as the fallback whenever the video is suppressed or blocked. */
.no-hero__media video,
.no-hero__yt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--no-ease-out);
}
.no-hero__media video.is-playing,
.no-hero__yt.is-playing { opacity: 1; }

/* A 16:9 iframe scaled to cover an arbitrary container. */
.no-hero__yt { pointer-events: none; }
.no-hero__yt iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;          /* 100vw / (16/9) */
  min-height: 100%;
  min-width: 177.78vh;      /* 100vh * (16/9) */
  border: 0;
  pointer-events: none;
}
.no-hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(11,30,44,.82) 0%, rgba(11,30,44,.42) 38%, rgba(11,30,44,.55) 62%, rgba(6,15,23,.96) 100%),
    linear-gradient(90deg, rgba(11,30,44,.80) 0%, rgba(11,30,44,.24) 58%, transparent 100%);
}
.no-hero__grid { z-index: -1; opacity: .55; }

/* Animated sonar sweep: subtle "radar" signature */
.no-hero__sonar {
  position: absolute;
  right: -8%; top: 18%;
  width: min(46vw, 620px); aspect-ratio: 1;
  z-index: -1;
  opacity: .3;
  pointer-events: none;
}
.no-hero__sonar span {
  position: absolute; inset: 0;
  border: 1px solid rgba(111,207,255,.4);
  border-radius: 50%;
  animation: noSonar 5s var(--no-ease-out) infinite;
}
.no-hero__sonar span:nth-child(2) { animation-delay: 1.66s; }
.no-hero__sonar span:nth-child(3) { animation-delay: 3.33s; }
@keyframes noSonar {
  0%   { transform: scale(.18); opacity: 0; }
  12%  { opacity: .85; }
  100% { transform: scale(1); opacity: 0; }
}

.no-hero__body {
  position: relative;
  padding-bottom: clamp(1.75rem, 1.2rem + 2.2vw, 3.25rem);
  flex: 1;
  display: flex;
  align-items: center;
}
.no-hero__content { max-width: 860px; }

.no-hero__kicker {
  color: var(--no-accent);
  margin-bottom: var(--no-s-5);
  animation: noRise .8s var(--no-ease-out) both;
}
.no-hero__title {
  font-size: clamp(2rem, 1.62rem + 1.9vw, 3.375rem);
  line-height: 1.12;
  letter-spacing: -.018em;
  color: #fff;
  text-wrap: balance;
  margin-bottom: var(--no-s-6);
}
.no-hero__title .ln { display: block; animation: noRise .9s var(--no-ease-out) both; }
.no-hero__title .ln:nth-child(1) { animation-delay: .08s; }
.no-hero__title .ln:nth-child(2) { animation-delay: .18s; }
.no-hero__title em {
  font-style: normal;
  color: var(--no-accent);
}
/*
 * The gradient is applied only where clipping text to a background actually
 * works. Without the guard, a browser that ignores background-clip renders
 * transparent text on a transparent background: an invisible headline. The
 * same applies in forced-colours mode, which is why it is reverted there.
 */
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .no-hero__title em {
    background: linear-gradient(100deg, var(--no-accent) 0%, #BDEBFF 55%, var(--no-accent) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
}
@media (forced-colors: active) {
  .no-hero__title em {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: currentColor;
  }
}
@keyframes noRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.no-hero__lead {
  font-size: var(--no-fs-md);
  line-height: var(--no-lh-relaxed);
  color: rgba(255,255,255,.82);
  max-width: 58ch;
  margin-bottom: var(--no-s-6);
  animation: noRise .9s var(--no-ease-out) .3s both;
}
.no-hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--no-s-4);
  animation: noRise .9s var(--no-ease-out) .42s both;
}
/*
 * Below 560px the two long labels no longer fit side by side. Stacking them at
 * full width keeps both tap targets a comfortable size and stops the second
 * button from wrapping into a lone, awkward half-row.
 */
@media (max-width: 560px) {
  .no-hero__actions { flex-direction: column; align-items: stretch; }
  .no-hero__actions .no-btn { width: 100%; }
}

/* Stat strip docked to hero bottom */
.no-hero__stats {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(6,15,23,.35), rgba(6,15,23,.72));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.no-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.no-stat {
  padding: clamp(1.25rem, .9rem + 1.2vw, 2rem) clamp(.75rem, .4rem + 1vw, 1.75rem);
  border-left: 1px solid rgba(255,255,255,.1);
}
.no-stat:first-child { border-left: 0; padding-left: 0; }
.no-stat__num {
  font-family: var(--no-font-display);
  font-size: clamp(1.625rem, 1.25rem + 1.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  color: #fff;
  display: flex; align-items: baseline; gap: 2px;
}
.no-stat__num sup {
  font-size: .42em; color: var(--no-accent); font-weight: 600; top: -.1em; position: relative;
}
/* An unconfirmed figure is visibly marked so it cannot ship by accident. */
.no-stat--unverified .no-stat__num { color: rgba(255, 255, 255, .55); }
.no-stat--unverified .no-stat__label {
  color: #FFC46B;
}
.no-stat--unverified .no-stat__label::before {
  content: "⚠ ";
}

.no-stat__label {
  margin-top: .5rem;
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-3xs);
  letter-spacing: var(--no-tr-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  line-height: 1.4;
}
@media (max-width: 780px) {
  .no-hero__stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .no-stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .no-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}

/* Scroll cue */
.no-hero__cue {
  position: absolute;
  left: 50%; bottom: calc(100% + 18px);
  transform: translateX(-50%);
  display: grid; justify-items: center; gap: .5rem;
  font-family: var(--no-font-mono);
  font-size: 9px; letter-spacing: var(--no-tr-wider); text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.no-hero__cue i {
  display: block; width: 1px; height: 34px;
  background: linear-gradient(180deg, transparent, var(--no-accent));
  animation: noCue 2.2s var(--no-ease-in-out) infinite;
}
@keyframes noCue { 0%,100% { transform: scaleY(.35); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 900px) { .no-hero__cue { display: none; } }


/* =========================================================================
   ABOUT / INTRO
   ========================================================================= */
.no-about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 1rem + 4.4vw, 5rem);
  align-items: center;
}
@media (max-width: 960px) { .no-about__grid { grid-template-columns: 1fr; } }

.no-about__visual { position: relative; }
.no-about__frame {
  position: relative;
  border-radius: var(--no-r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--no-sh-lg);
}
.no-about__frame img { width: 100%; height: 100%; object-fit: cover; }
.no-about__frame--sm {
  position: absolute;
  right: -6%; bottom: -8%;
  width: 46%;
  aspect-ratio: 1;
  border-radius: var(--no-r-lg);
  border: 8px solid #fff;
  overflow: hidden;
  box-shadow: var(--no-sh-lg);
}
.no-about__frame--sm img { width: 100%; height: 100%; object-fit: cover; }
/* Single-column layout: the visual is centred and the inset is pulled back
   inside the container, otherwise its negative offset escapes the gutter and
   creates horizontal scroll at tablet widths. */
@media (max-width: 960px) {
  .no-about__visual { max-width: 560px; margin-inline: auto; }
  .no-about__frame--sm { right: 0; bottom: -5%; width: 40%; }
}
@media (max-width: 520px) {
  .no-about__frame--sm { display: none; }
}

.no-about__cta { display: flex; flex-wrap: wrap; gap: var(--no-s-4); align-items: center; }


/* =========================================================================
   COVERAGE / MAP
   ========================================================================= */
.no-coverage { background: var(--no-grad-deep); position: relative; overflow: hidden; }
.no-coverage__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) { .no-coverage__grid { grid-template-columns: 1fr; } }

.no-ports { display: grid; gap: .625rem; margin-top: var(--no-s-8); }
.no-port {
  display: flex; align-items: center; gap: var(--no-s-4);
  width: 100%;
  padding: 1rem 1.125rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--no-r-md);
  color: #fff; text-align: left; cursor: pointer;
  transition: all var(--no-dur) var(--no-ease);
}
.no-port:hover, .no-port.is-active {
  background: rgba(19,134,179,.22);
  border-color: var(--no-accent);
  transform: translateX(5px);
}
.no-port__code {
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-2xs);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--no-accent);
  background: rgba(111,207,255,.1);
  border: 1px solid rgba(111,207,255,.22);
  border-radius: var(--no-r-xs);
  padding: .375rem .5rem;
  flex: none;
}
.no-port__name { display: block; font-family: var(--no-font-display); font-weight: 600; font-size: var(--no-fs-sm); }
.no-port__meta { display: block; font-size: var(--no-fs-2xs); color: rgba(255,255,255,.5); margin-top: 3px; line-height: 1.4; }
.no-port__go { margin-left: auto; opacity: .4; transition: opacity var(--no-dur) var(--no-ease), transform var(--no-dur) var(--no-ease-out); }
.no-port:hover .no-port__go, .no-port.is-active .no-port__go { opacity: 1; transform: translateX(3px); color: var(--no-accent); }

.no-hubs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--no-s-6); }
.no-hub {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .875rem;
  font-size: var(--no-fs-xs); font-weight: 600;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--no-r-pill);
}
.no-hub svg { width: 14px; height: 14px; color: var(--no-accent); }

/* Map panel */
.no-map {
  position: relative;
  border-radius: var(--no-r-xl);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 420px at 30% 30%, rgba(19,134,179,.28), transparent 65%),
    rgba(255,255,255,.03);
  padding: clamp(1rem, .5rem + 1.6vw, 2rem);
  overflow: hidden;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.no-map__lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(111,207,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.no-map svg { width: 100%; height: auto; position: relative; }
.no-map__pin { cursor: pointer; transition: transform var(--no-dur) var(--no-ease-out); transform-box: fill-box; transform-origin: center; }
.no-map__pin circle.core { fill: var(--no-accent); }
.no-map__pin circle.halo { fill: var(--no-accent); opacity: .18; animation: noPinPulse 3s var(--no-ease-out) infinite; transform-box: fill-box; transform-origin: center; }
.no-map__pin.is-active circle.core { fill: #fff; }
.no-map__pin.is-active circle.halo { opacity: .38; }
.no-map__pin text { font-family: var(--no-font-mono); font-size: 2.7px; font-weight: 600; fill: rgba(255,255,255,.75); letter-spacing: .06em; }
.no-map__pin.is-active text { fill: #fff; }
@keyframes noPinPulse { 0% { transform: scale(.55); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }
.no-map__legend {
  position: absolute; left: 1rem; bottom: 1rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-family: var(--no-font-mono); font-size: var(--no-fs-3xs);
  letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5);
}
.no-map__legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .375rem; }

/* =========================================================================
   PARTNERS TICKER
   ========================================================================= */
.no-partners { padding-block: var(--no-section-y-tight); background: var(--no-white); }
.no-partners__head {
  text-align: center; margin-bottom: var(--no-s-8);
}
.no-partners__head p {
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-2xs);
  letter-spacing: var(--no-tr-wider);
  text-transform: uppercase;
  color: var(--no-text-faint);
}
.no-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.no-marquee__track { display: flex; width: max-content; animation: noMarquee 42s linear infinite; }
.no-marquee:hover .no-marquee__track { animation-play-state: paused; }
@keyframes noMarquee { to { transform: translateX(-50%); } }
.no-marquee__item {
  flex: none;
  display: grid; place-items: center;
  width: clamp(150px, 14vw, 210px);
  height: 84px;
  padding: 0 var(--no-s-5);
  filter: grayscale(1);
  opacity: .78;
  transition: filter var(--no-dur) var(--no-ease), opacity var(--no-dur) var(--no-ease);
}
.no-marquee__item:hover { filter: none; opacity: 1; }
.no-marquee__item img { max-height: 44px; width: auto; object-fit: contain; }
.no-marquee__item .ph {
  font-family: var(--no-font-display);
  font-weight: 700; font-size: var(--no-fs-md);
  letter-spacing: -.02em; color: var(--no-ink-600);
  text-align: center; line-height: 1.15;
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.no-services { background: var(--no-bg-soft); position: relative; }

/* Six supporting services fill three columns as two even rows; auto-fill gave
   four across and left a ragged pair on the second row. */
.no-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, .6rem + 1.2vw, 1.5rem);
  margin-top: clamp(2rem, 1.4rem + 2vw, 3rem);
}
@media (max-width: 980px) { .no-svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .no-svc-grid { grid-template-columns: minmax(0, 1fr); } }
.no-svc {
  position: relative;
  display: flex; flex-direction: column;
  gap: var(--no-s-4);
  padding: var(--no-s-6);
  background: var(--no-white);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 246px;
  transition: transform var(--no-dur) var(--no-ease-out), box-shadow var(--no-dur) var(--no-ease), border-color var(--no-dur) var(--no-ease);
}
.no-svc::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--no-grad-deep);
  opacity: 0;
  transition: opacity var(--no-dur) var(--no-ease);
}
.no-svc:hover { transform: translateY(-7px); box-shadow: var(--no-sh-lg); border-color: transparent; }
.no-svc:hover::before { opacity: 1; }
.no-svc:hover .no-svc__title,
.no-svc:hover .no-svc__num { color: #fff; }
.no-svc:hover .no-svc__desc { color: rgba(255,255,255,.72); }
.no-svc:hover .no-svc__ico { background: rgba(111,207,255,.16); border-color: rgba(111,207,255,.3); color: var(--no-accent); }
.no-svc:hover .no-svc__more { color: var(--no-accent); gap: .875rem; }

.no-svc__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.no-svc__ico {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: var(--no-r-md);
  background: var(--no-primary-50);
  border: 1px solid var(--no-primary-100);
  color: var(--no-primary-600);
  transition: all var(--no-dur) var(--no-ease);
}
.no-svc__ico svg { width: 30px; height: 30px; }
.no-svc__num {
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-2xs);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--no-ink-200);
  transition: color var(--no-dur) var(--no-ease);
}
.no-svc__title { font-size: var(--no-fs-md); line-height: 1.28; transition: color var(--no-dur) var(--no-ease); }
.no-svc__desc {
  font-size: var(--no-fs-xs);
  line-height: 1.62;
  color: var(--no-text-muted);
  transition: color var(--no-dur) var(--no-ease);
  flex: 1;
}
.no-svc__more {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--no-fs-2xs); font-weight: 700;
  letter-spacing: var(--no-tr-wide); text-transform: uppercase;
  color: var(--no-primary-600);
  transition: all var(--no-dur) var(--no-ease-out);
  margin-top: auto;
}
.no-svc__more svg { width: 15px; height: 15px; }
.no-svc__flags { display: inline-flex; align-items: center; gap: .5rem; }
.no-svc__tag {
  font-family: var(--no-font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .5rem;
  background: var(--no-accent); color: var(--no-ink-900);
  border-radius: var(--no-r-xs);
}
.no-svc:hover .no-svc__tag { background: var(--no-accent); color: var(--no-ink-900); }
.no-svc[hidden] { display: none; }
.no-svc-foot { margin-top: clamp(2rem, 1.4rem + 2vw, 3rem); display: flex; justify-content: center; }

/* =========================================================================
   WHY US
   ========================================================================= */
.no-why { background: var(--no-ink-900); position: relative; overflow: hidden; }
.no-why::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(760px 460px at 82% 12%, rgba(19,134,179,.3), transparent 62%),
    radial-gradient(620px 420px at 8% 92%, rgba(111,207,255,.13), transparent 62%);
}
.no-why > * { position: relative; }
/* Four reasons in two rows of two. Three columns left the fourth cell alone on
   its own row beside two empty ones, which looked like a rendering failure. */
.no-why__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--no-r-lg);
  overflow: hidden;
}
.no-why__cell {
  position: relative;
  background: rgba(11,30,44,.62);
  padding: clamp(1.25rem, .95rem + 1.1vw, 1.875rem);
  display: flex; flex-direction: column; gap: var(--no-s-3, .75rem);
  transition: background-color var(--no-dur) var(--no-ease);
  overflow: hidden;
}
.no-why__cell::after {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--no-grad-brand);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--no-dur-slow) var(--no-ease-out);
}
.no-why__cell:hover { background: rgba(19,134,179,.14); }
.no-why__cell:hover::after { transform: scaleY(1); }
.no-why__num {
  font-family: var(--no-font-display);
  font-size: clamp(2.25rem, 1.9rem + 1.4vw, 3rem); font-weight: 700; line-height: 1;
  letter-spacing: -.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(111,207,255,.35);
  transition: color var(--no-dur) var(--no-ease);
}
.no-why__cell:hover .no-why__num { color: rgba(111,207,255,.12); }
@media (max-width: 640px)  { .no-why__grid { grid-template-columns: minmax(0, 1fr); } }
.no-why__ico {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: var(--no-r-sm);
  background: rgba(111,207,255,.1);
  border: 1px solid rgba(111,207,255,.2);
  color: var(--no-accent);
}
.no-why__ico svg { width: 28px; height: 28px; }
.no-why__cell h3 { font-size: var(--no-fs-lg); color: #fff; }
.no-why__cell p { font-size: var(--no-fs-sm); line-height: 1.7; color: rgba(255,255,255,.68); }

/* =========================================================================
   CERTIFICATIONS BAR
   ========================================================================= */
.no-certs { background: var(--no-white); padding-block: var(--no-section-y-tight); }
.no-certs__panel {
  background: var(--no-bg-soft);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .no-certs__panel { grid-template-columns: 1fr; } }
.no-certs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--no-s-4);
}
.no-cert {
  display: flex; align-items: center; gap: .875rem;
  padding: 1rem 1.125rem;
  background: var(--no-white);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-md);
  transition: all var(--no-dur) var(--no-ease);
}
.no-cert:hover { border-color: var(--no-primary-300); box-shadow: var(--no-sh-md); transform: translateY(-3px); }
.no-cert__ico {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--no-r-sm);
  background: var(--no-primary-50);
  color: var(--no-primary-700);
}
.no-cert__ico svg { width: 22px; height: 22px; }
.no-cert b { display: block; font-family: var(--no-font-display); font-size: var(--no-fs-sm); color: var(--no-ink-800); line-height: 1.2; }
.no-cert span { font-size: var(--no-fs-2xs); color: var(--no-text-faint); }

/* =========================================================================
   NEWS
   ========================================================================= */
.no-news { background: var(--no-bg-soft); }
.no-post {
  display: flex; flex-direction: column;
  background: var(--no-white);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-lg);
  overflow: hidden;
  transition: transform var(--no-dur) var(--no-ease-out), box-shadow var(--no-dur) var(--no-ease), border-color var(--no-dur) var(--no-ease);
}
.no-post:hover { transform: translateY(-7px); box-shadow: var(--no-sh-lg); border-color: var(--no-primary-200); }
.no-post__media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--no-ink-700); }
.no-post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--no-ease-out); }
.no-post:hover .no-post__media img { transform: scale(1.07); }
.no-post__cat {
  position: absolute; left: .875rem; top: .875rem;
  font-family: var(--no-font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .375rem .625rem;
  background: rgba(11,30,44,.82);
  backdrop-filter: blur(6px);
  color: var(--no-accent);
  border-radius: var(--no-r-xs);
}
.no-post__body { padding: var(--no-s-6); display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.no-post__date {
  font-family: var(--no-font-mono); font-size: var(--no-fs-3xs);
  letter-spacing: var(--no-tr-wide); text-transform: uppercase; color: var(--no-text-faint);
  display: flex; align-items: center; gap: .5rem;
}
.no-post__title { font-size: var(--no-fs-md); line-height: 1.32; }
.no-post__title a { color: inherit; }
.no-post:hover .no-post__title a { color: var(--no-primary-600); }
.no-post__excerpt { font-size: var(--no-fs-xs); line-height: 1.65; color: var(--no-text-muted); flex: 1; }

/* =========================================================================
   FINAL CTA + INQUIRY
   ========================================================================= */
.no-cta { position: relative; background: var(--no-ink-900); overflow: hidden; }
.no-cta__bg { position: absolute; inset: 0; }
.no-cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.no-cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,15,23,.96) 0%, rgba(11,30,44,.88) 45%, rgba(10,65,87,.72) 100%);
}
.no-cta__inner { position: relative; z-index: 2; }
.no-cta__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (max-width: 960px) { .no-cta__grid { grid-template-columns: 1fr; } }

.no-cta__title { font-size: var(--no-fs-3xl); line-height: 1.2; color: #fff; text-wrap: balance; }
.no-cta__answer {
  margin-top: var(--no-s-4);
  max-width: 60ch;
  font-size: var(--no-fs-base);
  line-height: var(--no-lh-relaxed);
  color: var(--no-text-invert-muted);
}
.no-cta__list { display: grid; gap: .875rem; margin-top: var(--no-s-6); }
.no-cta__li { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--no-fs-sm); color: rgba(255,255,255,.76); }
.no-cta__li svg { width: 19px; height: 19px; color: var(--no-accent); flex: none; margin-top: 2px; }
.no-cta__phone {
  display: inline-flex; align-items: center; gap: var(--no-s-4);
  margin-top: var(--no-s-8);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--no-r-md);
  background: rgba(255,255,255,.04);
}
.no-cta__phone-ico {
  width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; background: var(--no-primary-500); color: #fff; flex: none;
}
.no-cta__phone small {
  display: block; font-family: var(--no-font-mono); font-size: var(--no-fs-3xs);
  letter-spacing: var(--no-tr-wide); text-transform: uppercase; color: rgba(255,255,255,.5);
}
.no-cta__phone b { font-family: var(--no-font-display); font-size: var(--no-fs-lg); color: #fff; letter-spacing: -.01em; }

/* Inquiry form card */
.no-form {
  background: var(--no-white);
  border-radius: var(--no-r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--no-sh-xl);
  position: relative;
  overflow: hidden;
}
.no-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--no-grad-brand);
}
.no-form__head { margin-bottom: var(--no-s-6); }
.no-form__head h3 { font-size: var(--no-fs-xl); }
.no-form__head p { font-size: var(--no-fs-xs); color: var(--no-text-muted); margin-top: .375rem; }
.no-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--no-s-4); }
.no-field { display: grid; gap: .4375rem; }
.no-field--full { grid-column: 1 / -1; }
.no-field label {
  font-size: var(--no-fs-2xs); font-weight: 650;
  letter-spacing: .02em; color: var(--no-ink-700);
  text-transform: uppercase;
  font-family: var(--no-font-mono);
}
.no-field label .req { color: var(--no-danger); }
.no-field input, .no-field select, .no-field textarea {
  width: 100%;
  padding: .8125rem .9375rem;
  font-size: var(--no-fs-sm);
  color: var(--no-text);
  background: var(--no-bg-soft);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-sm);
  transition: border-color var(--no-dur) var(--no-ease), box-shadow var(--no-dur) var(--no-ease), background-color var(--no-dur) var(--no-ease);
}
.no-field textarea { resize: vertical; min-height: 96px; }
.no-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23587585' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; background-size: 16px; padding-right: 2.5rem; }
.no-field input:focus, .no-field select:focus, .no-field textarea:focus {
  outline: none;
  background: var(--no-white);
  border-color: var(--no-primary-400);
  box-shadow: 0 0 0 3px rgba(19,134,179,.14);
}
.no-field input::placeholder, .no-field textarea::placeholder { color: var(--no-text-faint); }
.no-form__consent {
  display: flex; gap: .625rem; align-items: flex-start;
  font-family: var(--no-font-body);
  font-size: var(--no-fs-2xs);
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--no-text-muted);
  line-height: 1.55;
}
.no-form__consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--no-primary-500); flex: none; }
.no-form__note {
  display: flex; align-items: center; gap: .5rem;
  margin-top: var(--no-s-4);
  font-size: var(--no-fs-2xs); color: var(--no-text-faint);
}
.no-form__note svg { width: 14px; height: 14px; color: var(--no-success); }
@media (max-width: 520px) { .no-form__grid { grid-template-columns: 1fr; } }


/* =========================================================================
   MOBILE REFINEMENTS
   ========================================================================= */
@media (max-width: 560px) {
  .no-hero__actions { flex-direction: column; align-items: stretch; }
  .no-hero__actions .no-btn { width: 100%; }
  .no-hero__kicker { font-size: 10px; letter-spacing: .1em; }
  .no-about__cta .no-btn { flex: 1 1 100%; }
}


/* =========================================================================
   20 YEARS PLATE
   Replaces the old caption badge. The figure is the trust signal, so it gets
   its own object: a drawn ring, digits that count up, and nothing else
   competing with it.
   ========================================================================= */
.no-years {
  position: absolute;
  left: clamp(-1.5rem, -2vw, -0.5rem);
  top: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: .125rem;
  width: clamp(122px, 11vw, 158px);
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: var(--no-grad-brand);
  box-shadow: 0 18px 42px -14px rgba(10, 65, 87, .65);
}
.no-years__ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid var(--no-primary-300);
  opacity: 0;
  transform: scale(.86);
  transition: opacity .9s var(--no-ease-out), transform 1.1s var(--no-ease-out);
}
.no-years.is-visible .no-years__ring { opacity: .55; transform: scale(1); }

.no-years__num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--no-font-display);
  font-size: clamp(2.5rem, 2.1rem + 1.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}
.no-years__num i {
  font-style: normal;
  font-size: .42em;
  line-height: 1;
  margin-top: .18em;
  opacity: .85;
}
.no-years__label {
  font-family: var(--no-font-mono);
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  max-width: 8.5em;
}
@media (max-width: 560px) {
  .no-years {
    position: static;
    width: auto;
    aspect-ratio: auto;
    border-radius: var(--no-r-lg);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: .875rem;
    text-align: left;
  }
  .no-years__ring { display: none; }
  .no-years__label { max-width: none; }
}


/* =========================================================================
   CERTIFICATIONS: document cards + zoom
   ========================================================================= */
.no-certs { background: var(--no-white); padding-block: var(--no-section-y); }
.no-certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: clamp(.875rem, .6rem + .9vw, 1.375rem);
}
@media (min-width: 1100px) { .no-certs__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
@media (max-width: 1099px) and (min-width: 600px) { .no-certs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 599px) { .no-certs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.no-cert {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: .875rem;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--no-bg-soft);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-md);
  transition: transform .32s var(--no-ease-out), box-shadow .32s var(--no-ease), border-color .32s var(--no-ease);
}
.no-cert--has-doc { cursor: zoom-in; }
.no-cert--has-doc:hover,
.no-cert--has-doc:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--no-sh-md);
  border-color: var(--no-primary-300);
}

.no-cert__doc {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.32;          /* A4-ish preview so scans sit naturally */
  overflow: hidden;
  border-radius: var(--no-r-sm);
  background: var(--no-white);
  border: 1px solid var(--no-border);
}
/* Certificates are contained: cropping a document hides the very details the
   client wants visible. The lightbox shows the full-resolution original. */
.no-cert__doc img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: .25rem;
}
.no-cert__ico { color: var(--no-primary-600); opacity: .8; }

.no-cert__zoom {
  position: absolute;
  right: .5rem; bottom: .5rem;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--no-r-sm);
  background: rgba(11, 30, 44, .82);
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s var(--no-ease), transform .3s var(--no-ease-out);
}
.no-cert--has-doc:hover .no-cert__zoom,
.no-cert--has-doc:focus-visible .no-cert__zoom { opacity: 1; transform: none; }

.no-cert__text { display: block; }
.no-cert__text b {
  display: block;
  font-family: var(--no-font-display);
  font-size: var(--no-fs-sm);
  line-height: 1.3;
  color: var(--no-ink-800);
}
.no-cert__text span { font-size: var(--no-fs-2xs); color: var(--no-text-faint); }

.no-certs__grid--invert .no-cert {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
}
.no-certs__grid--invert .no-cert__doc { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .1); }
.no-certs__grid--invert .no-cert__text b { color: #fff; }
.no-certs__grid--invert .no-cert__text span { color: rgba(255, 255, 255, .6); }
.no-certs__grid--invert .no-cert__ico { color: var(--no-accent); }

/* =========================================================================
   LIGHTBOX
   ========================================================================= */
.no-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--no-z-modal);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(6, 15, 23, .92);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s var(--no-ease);
}
.no-lightbox[hidden] { display: none; }
.no-lightbox.is-open { opacity: 1; }

.no-lightbox__figure {
  display: grid;
  gap: 1rem;
  justify-items: center;
  max-width: min(1000px, 100%);
  max-height: 100%;
  margin: 0;
  transform: scale(.97);
  transition: transform .38s var(--no-ease-out);
}
.no-lightbox.is-open .no-lightbox__figure { transform: none; }
.no-lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 9rem);
  width: auto;
  border-radius: var(--no-r-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
  background: #fff;
}
.no-lightbox__caption {
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-2xs);
  letter-spacing: var(--no-tr-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}
.no-lightbox__close {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--no-r-sm);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: background-color .3s var(--no-ease), border-color .3s var(--no-ease);
}
.no-lightbox__close:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .45); }

/* =========================================================================
   PARTNER LOGOS: static grid variant for short lists
   ========================================================================= */
.no-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr));
  gap: clamp(1rem, .7rem + 1vw, 2rem);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.no-logos__item {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: .5rem;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .32s var(--no-ease), opacity .32s var(--no-ease);
}
.no-logos__item:hover { filter: none; opacity: 1; }
.no-logos__item img { max-height: 48px; width: auto; object-fit: contain; }
.no-logos__item .ph {
  font-family: var(--no-font-display);
  font-weight: 700;
  font-size: var(--no-fs-md);
  letter-spacing: -.02em;
  color: var(--no-ink-600);
  text-align: center;
  line-height: 1.15;
}
.no-marquee--text .no-marquee__item { width: clamp(140px, 13vw, 190px); }


/* =========================================================================
   SERVICES: core tier
   Image leads, detail slides up on hover. The title is always visible, so
   nothing important is hidden behind the interaction; the reveal only adds
   the summary and the link affordance.
   ========================================================================= */
.no-services { background: var(--no-bg-soft); }
.no-services__sub { margin: clamp(2.5rem, 2rem + 2vw, 4rem) 0 1.25rem; }

/* Three core services, three equal columns, so the row is always full. The
   number of columns follows the number of core cards, which the client sets in
   Customize > Core Services. */
.no-core {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, .7rem + 1.1vw, 1.5rem);
}
@media (max-width: 980px) { .no-core { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .no-core { grid-template-columns: minmax(0, 1fr); } }

/*
 * The core tier has to read as more important than the grid beneath it, so the
 * cards are taller, carry a brand-tinted edge and lift further on hover.
 */
.no-core__card {
  min-height: clamp(250px, 17vw, 320px);
  border: 1px solid rgba(255, 255, 255, .1);
}
.no-core__card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, var(--no-primary-500), var(--no-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--no-ease-out);
}
.no-core__card:hover::after,
.no-core__card:focus-within::after { transform: scaleX(1); }

.no-core__card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 26vw, 420px);
  padding: clamp(1.25rem, 1rem + .8vw, 1.75rem);
  border-radius: var(--no-r-lg);
  overflow: hidden;
  background: var(--no-ink-800);
  transition: transform .5s var(--no-ease-out), box-shadow .5s var(--no-ease);
}
.no-core__card:hover,
.no-core__card:focus-within { transform: translateY(-6px); box-shadow: var(--no-sh-lg); }

/* Whole-card link, kept above the media but below the text. */
.no-core__link { position: absolute; inset: 0; z-index: 2; }

.no-core__media { position: absolute; inset: 0; z-index: -2; }
.no-core__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--no-ease-out); }
.no-core__card:hover .no-core__media img,
.no-core__card:focus-within .no-core__media img { transform: scale(1.06); }
.no-core__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,23,.15) 0%, rgba(6,15,23,.62) 55%, rgba(6,15,23,.93) 100%);
  transition: background .5s var(--no-ease);
}
.no-core__card:hover .no-core__media::after,
.no-core__card:focus-within .no-core__media::after {
  background: linear-gradient(180deg, rgba(6,15,23,.3) 0%, rgba(6,15,23,.74) 45%, rgba(6,15,23,.96) 100%);
}
/* Without a photograph the card falls back to the brand gradient, which is a
   finished state rather than a gap. */
.no-core__card--noimg { background: var(--no-grad-deep); }
.no-core__card--noimg::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(111,207,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,207,255,.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

.no-core__body { position: relative; z-index: 1; width: 100%; color: #fff; pointer-events: none; }
.no-core__ico {
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: var(--no-r-md);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(6px);
  margin-bottom: .875rem;
}
.no-core__rank {
  position: absolute;
  right: 0; top: 0;
  font-family: var(--no-font-mono);
  font-size: var(--no-fs-2xs);
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
}
.no-core__title { color: #fff; font-size: var(--no-fs-lg); line-height: 1.3; }

/* The reveal: collapsed to zero height, expanded on hover/focus. */
.no-core__reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .55s var(--no-ease-out), opacity .45s var(--no-ease);
}
.no-core__reveal > * { overflow: hidden; }
.no-core__card:hover .no-core__reveal,
.no-core__card:focus-within .no-core__reveal { grid-template-rows: 1fr; opacity: 1; }
.no-core__reveal p {
  font-size: var(--no-fs-sm);
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  padding-top: .75rem;
}
.no-core__more {
  display: inline-flex; align-items: center; gap: .5rem;
  padding-top: .875rem;
  font-size: var(--no-fs-2xs); font-weight: 700;
  letter-spacing: var(--no-tr-wide); text-transform: uppercase;
  color: var(--no-accent);
}

/*
 * Touch devices have no hover, so the detail is simply always open. Better a
 * slightly taller card than content the user cannot reach.
 */
@media (hover: none) {
  .no-core__reveal { grid-template-rows: 1fr; opacity: 1; }
}

/* =========================================================================
   SERVICES: supporting tier
   ========================================================================= */
.no-more-svc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 800px) { .no-more-svc { grid-template-columns: minmax(0, 1fr); } }

.no-more-svc a {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: 1rem 1.125rem;
  background: var(--no-white);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-md);
  color: var(--no-ink-800);
  font-family: var(--no-font-display);
  font-weight: 600;
  font-size: var(--no-fs-sm);
  line-height: 1.35;
  transition: border-color .32s var(--no-ease), transform .32s var(--no-ease-out), box-shadow .32s var(--no-ease);
}
.no-more-svc a:hover {
  border-color: var(--no-primary-300);
  transform: translateY(-3px);
  box-shadow: var(--no-sh-md);
}
.no-more-svc__ico {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: var(--no-r-sm);
  background: var(--no-primary-50);
  color: var(--no-primary-700);
}
.no-more-svc__text { flex: 1; min-width: 0; }
.no-more-svc__go { color: var(--no-text-faint); transition: color .32s var(--no-ease), transform .32s var(--no-ease-out); }
.no-more-svc a:hover .no-more-svc__go { color: var(--no-primary-action); transform: translate(2px, -2px); }

.no-svc-foot { margin-top: clamp(2rem, 1.5rem + 1.6vw, 3rem); display: flex; justify-content: center; }

/* =========================================================================
   PARTNERS: logos lifted onto their own surface
   ========================================================================= */
.no-partners { background: var(--no-white); padding-block: var(--no-section-y-tight); }
.no-marquee__item,
.no-logos__item {
  /* A white card behind each mark separates it from the page and stops
     transparent PNGs disappearing into the background. */
  background: var(--no-white);
  border: 1px solid var(--no-border);
  border-radius: var(--no-r-md);
  box-shadow: var(--no-sh-xs);
  margin-inline: .5rem;
}
.no-marquee__item {
  width: clamp(160px, 15vw, 210px);
  height: 96px;
  padding: 1rem 1.25rem;
  filter: grayscale(1);
  opacity: .85;
}
.no-marquee__item:hover { filter: none; opacity: 1; }
.no-marquee__item img,
.no-logos__item img { max-height: 52px; max-width: 100%; width: auto; object-fit: contain; }
.no-logos__item { min-height: 96px; padding: 1rem 1.25rem; }

/* =========================================================================
   CERTIFICATIONS: larger previews, compact section
   ========================================================================= */
.no-certs { padding-block: var(--no-section-y-tight); }
.no-certs__grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); }
@media (min-width: 1100px) { .no-certs__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.no-cert__doc { aspect-ratio: 1 / 1.414; }   /* true A4 */
.no-cert { padding: .75rem; gap: .75rem; }
