/* Natipay — section styles */

/* ============================================
   NAV
   ============================================ */
.np-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s, background .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.np-nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(11,30,55,0.18);
}
.np-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.np-nav__logo img { height: 26px; display: block; }
.np-nav__links { display: flex; gap: 28px; }
.np-nav__links a {
  font-size: 15px; color: var(--ink-2); font-weight: 500;
  transition: color .2s;
}
.np-nav__links a:hover { color: var(--ink); }
.np-nav__cta { display: flex; align-items: center; gap: 16px; }
.np-nav__login {
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.np-nav__signup { padding: 10px 18px; font-size: 14.5px; }
@media (max-width: 920px) {
  .np-nav__links { display: none; }
}
@media (max-width: 560px) {
  .np-nav__login { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.np-hero {
  position: relative;
  background: linear-gradient(180deg, #06152B 0%, #0A1F3D 60%, #0E2A52 100%);
  color: white;
  overflow: hidden;
  padding-top: 64px;
}
.np-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(63,184,238,0.30), transparent 55%),
    radial-gradient(circle at 0% 90%, rgba(63,184,238,0.12), transparent 60%);
  pointer-events: none;
}
.np-hero__grid { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.np-hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
  padding: 80px 32px 100px;
}
@media (max-width: 980px) {
  .np-hero__inner { grid-template-columns: 1fr; padding: 60px 20px 80px; gap: 80px; }
}
.np-hero__left h1 { color: white; margin-top: 22px; }
.np-hero__accent {
  background: linear-gradient(180deg, var(--blue) 0%, #87D5F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.np-hero__lede {
  margin-top: 26px; max-width: 540px;
  color: rgba(255,255,255,0.72);
  font-size: 19px; line-height: 1.55;
}
.np-hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.np-hero__metrics {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  max-width: 560px;
}
.np-metric__value {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 600; color: var(--blue);
  letter-spacing: -0.02em;
}
.np-metric__label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 4px; font-family: var(--f-mono);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.np-hero__right { display: flex; justify-content: center; align-items: center; min-height: 540px; }

/* Hero bottom bar / marquee */
.np-hero__bar {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
  overflow: hidden;
}
.np-hero__bar-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
  position: relative;
}
.np-hero__bar-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.45); flex-shrink: 0;
}
.np-hero__bar-track {
  display: flex; gap: 64px; animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.np-hero__bar-item {
  font-family: var(--f-display); font-size: 18px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: -0.01em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   TOTEM MOCKUP
   ============================================ */
.totem {
  position: relative;
  width: 320px;
  animation: drift 6s ease-in-out infinite;
}
.totem__shadow {
  position: absolute;
  bottom: -30px; left: 10%; right: 10%; height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.45), transparent 70%);
  filter: blur(8px);
}
.totem__body { position: relative; }
.totem__bezel {
  background: linear-gradient(180deg, #1B2740 0%, #0E1A30 100%);
  border-radius: 28px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 20px 50px -20px rgba(63,184,238,0.25);
}
.totem__screen {
  background: linear-gradient(180deg, #F5F8FB 0%, #E8F1F8 100%);
  border-radius: 18px;
  padding: 22px 20px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.totem__topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.totem__logo { height: 18px; }
.totem__time { font-size: 11px; color: var(--ink-3); }

.totem__stage {
  flex: 1; position: relative;
}
.totem__panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s, transform .5s;
  pointer-events: none;
}
.totem__stage.stage-0 .totem__panel.idle,
.totem__stage.stage-1 .totem__panel.qr,
.totem__stage.stage-2 .totem__panel.pending,
.totem__stage.stage-3 .totem__panel.paid {
  opacity: 1; transform: translateY(0);
}
.totem__label {
  font-size: 11px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.14em;
}
.totem__amount {
  font-family: var(--f-display);
  font-size: 52px; font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink);
}
.totem__amount.sm { font-size: 28px; }
.totem__amount .cur { font-size: 0.55em; vertical-align: top; opacity: 0.55; margin-right: 6px; font-weight: 500; }
.totem__amount .val small { font-size: 0.5em; opacity: 0.6; }
.totem__cta { margin-top: 16px; width: 100%; }
.totem__cta-btn {
  background: var(--ink);
  color: white;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(11,30,55,0.15);
}

.totem__qr-wrap {
  position: relative;
  background: white;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(11,30,55,0.08);
  width: 188px;
  height: 188px;
}
.totem__qr { width: 100%; height: 100%; aspect-ratio: 1 / 1; line-height: 0; }
.totem__qr svg { display: block; width: 100%; height: 100%; }
.totem__scan {
  position: absolute; left: 14px; right: 14px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue);
  animation: scanLine 1.6s ease-in-out infinite;
  top: 14px;
}

.totem__spinner {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 4px solid var(--blue-100);
  border-top-color: var(--blue);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.totem__pending-text {
  font-family: var(--f-display); font-weight: 500;
  color: var(--ink-2); font-size: 16px;
}

.totem__check svg { animation: checkPop 0.5s cubic-bezier(.2,.7,.2,1.2); }
.totem__paid-title {
  font-family: var(--f-display); font-size: 32px; font-weight: 600;
  color: var(--pix-green); letter-spacing: -0.02em;
}
.totem__paid-sub { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }

.totem__footer {
  display: flex; justify-content: center; gap: 8px;
  font-size: 10px; color: var(--ink-3);
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--line);
}

.totem__base {
  display: flex; flex-direction: column; align-items: center;
  margin-top: -2px;
}
.totem__stem {
  width: 36px; height: 70px;
  background: linear-gradient(180deg, #1B2740 0%, #0A1325 100%);
  border-radius: 0 0 6px 6px;
  position: relative;
  z-index: -1;
}
.totem__foot {
  width: 180px; height: 14px;
  background: linear-gradient(180deg, #1B2740 0%, #060E1F 100%);
  border-radius: 6px;
  margin-top: -2px;
}

/* Floating chip */
.totem__chip {
  position: absolute; top: 30%; right: -60px;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(11,30,55,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 12px; color: white;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  animation: fadeUp 0.5s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
}
.totem__chip.chip-paid { background: rgba(0,194,155,0.95); border-color: rgba(255,255,255,0.2); }
.totem__chip .chip__icon { font-size: 14px; }
@media (max-width: 1100px) {
  .totem__chip { right: auto; left: 50%; top: -50px; transform: translateX(-50%); }
}

/* Phone variant */
.phone {
  width: 280px;
  animation: drift 6s ease-in-out infinite;
}
.phone__body {
  background: #0A1325;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 20px 50px -20px rgba(63,184,238,0.25);
}
.phone__notch {
  width: 90px; height: 22px; background: #0A1325;
  border-radius: 0 0 12px 12px; margin: 0 auto;
  position: relative; z-index: 2;
}
.phone__screen {
  background: linear-gradient(180deg, white 0%, #F0F6FB 100%);
  border-radius: 30px;
  margin-top: -12px;
  padding: 40px 24px 24px;
  min-height: 480px;
  display: flex; flex-direction: column; align-items: center;
}
.phone__app-bar { width: 100%; display: flex; justify-content: space-between; font-size: 11px; color: var(--ink-3); }
.phone__dots { display: flex; gap: 4px; }
.phone__dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); }
.phone__merchant { margin-top: 30px; font-family: var(--f-display); font-weight: 600; font-size: 18px; }
.phone__amount { font-family: var(--f-display); font-size: 42px; font-weight: 600; letter-spacing: -0.03em; margin: 10px 0 18px; }
.phone__amount small { font-size: 0.5em; opacity: 0.6; }
.phone__qr { width: 180px; height: 180px; background: white; padding: 10px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; }
.phone__qr .totem__qr { width: 160px; height: 160px; }
.phone__paybtn { margin-top: 22px; width: 100%; background: var(--ink); color: white; padding: 14px; border-radius: 12px; text-align: center; font-family: var(--f-display); font-weight: 500; }
.phone__note { margin-top: 12px; font-size: 11px; color: var(--ink-3); }

/* Flow variant */
.flowm {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 460px;
  display: flex; flex-direction: column; gap: 24px;
  backdrop-filter: blur(10px);
}
.flowm__step { display: flex; flex-direction: column; gap: 8px; }
.flowm__num { font-size: 11px; color: var(--blue); letter-spacing: 0.16em; }
.flowm__title { color: white; font-family: var(--f-display); font-weight: 500; }
.flowm__bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.flowm__fill { height: 100%; background: var(--blue); border-radius: 2px; transition: width 1s; }
.flowm__step.active .flowm__title { color: var(--pix-green); }

/* ============================================
   PRODUTOS
   ============================================ */
.np-produtos { background: var(--white); }
.np-produtos__head {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .np-produtos__head { grid-template-columns: 1fr; gap: 24px; } }
.np-produtos__sub { font-size: 18px; max-width: 380px; }

.np-produtos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 920px) { .np-produtos__grid { grid-template-columns: 1fr; } }

.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  cursor: pointer;
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 24px 60px -20px rgba(14,134,192,0.25);
}
.pcard__visual {
  height: 220px;
  background: linear-gradient(135deg, var(--blue) 0%, #1FA1DC 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pcard__body { padding: 28px 26px 32px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.pcard__body .tag { align-self: flex-start; }
.pcard__body h3 { font-size: 24px; }
.pcard__body p { font-size: 15.5px; line-height: 1.55; }
.pcard__bullets { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; }
.pcard__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--ink-2);
}
.pcard__bullet-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
.pcard__link {
  margin-top: auto; padding-top: 12px;
  font-family: var(--f-display); font-weight: 500; color: var(--blue-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.pcard__link .arr { transition: transform .25s; }
.pcard:hover .pcard__link .arr { transform: translateX(4px); }

/* visual: PIX */
.pviz { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pviz--pix .pviz__qr {
  width: 110px; height: 110px;
  background: white; padding: 8px; border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
}
.pviz--pix .pviz__qr .totem__qr { width: 94px; height: 94px; }
.pviz__ping {
  position: absolute; width: 130px; height: 130px;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 50%;
  animation: ping 2.4s ease-out infinite;
}
.pviz__ping--2 { animation-delay: 1.2s; }
@keyframes ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.pviz__amount {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(11,30,55,0.85); color: white;
  padding: 6px 10px; border-radius: 8px;
  font-size: 12px;
}
.pviz__chip {
  position: absolute; top: 16px; right: 16px;
  background: var(--pix-green); color: white;
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; display: flex; align-items: center; gap: 5px;
  font-weight: 500;
}

/* visual: Checkout */
.pviz--checkout { padding: 20px; }
.chk {
  background: white; border-radius: 12px;
  padding: 14px; width: 100%; max-width: 240px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  font-size: 12px;
}
.chk__head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.chk__brand { font-family: var(--f-mono); font-size: 10px; color: var(--ink-3); }
.chk__lock { font-size: 9px; color: var(--ink-3); }
.chk__row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--ink-2); }
.chk__row--total { font-weight: 600; color: var(--ink); padding-top: 8px; border-top: 1px dashed var(--line); margin-top: 4px; font-size: 14px; }
.chk__methods { display: flex; gap: 6px; margin: 12px 0 10px; }
.chk__method { flex: 1; text-align: center; padding: 6px; border-radius: 6px; background: var(--surface); font-size: 10px; color: var(--ink-2); border: 1px solid transparent; }
.chk__method--active { background: var(--blue-50); border-color: var(--blue); color: var(--blue-700); font-weight: 600; }
.chk__pay { background: var(--ink); color: white; text-align: center; padding: 8px; border-radius: 8px; font-weight: 500; font-size: 11px; }

/* visual: API */
.pviz--api {
  background: linear-gradient(135deg, #0A1F3D 0%, #061429 100%);
  padding: 20px;
  align-items: flex-start;
  justify-content: flex-start;
  display: block;
}
.codey {
  margin: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  color: #87D5F7;
  line-height: 1.6;
  white-space: pre;
}
.codey__badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,194,155,0.2); color: var(--pix-green);
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 600;
  border: 1px solid rgba(0,194,155,0.4);
}

/* ============================================
   SEGMENTOS
   ============================================ */
.np-segmentos { background: var(--surface); }
.np-segmentos__head { margin-bottom: 56px; max-width: 720px; }
.np-segmentos__head .eyebrow { margin-bottom: 18px; display: inline-flex; }
.np-segmentos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 820px) { .np-segmentos__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .np-segmentos__grid { grid-template-columns: 1fr; } }

.seg {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
}
.seg:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: 0 16px 40px -16px rgba(14,134,192,0.18);
}
.seg__icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.seg:hover .seg__icon { background: var(--blue); color: white; }
.seg h3 { font-size: 19px; margin-bottom: 6px; }
.seg p { font-size: 14.5px; }
.seg__arr {
  position: absolute; top: 28px; right: 28px;
  color: var(--ink-3); font-size: 18px;
  transition: transform .25s, color .25s;
}
.seg:hover .seg__arr { color: var(--blue); transform: translate(4px, -4px); }

/* ============================================
   API SECTION
   ============================================ */
.np-api {
  background: linear-gradient(180deg, #0A1F3D 0%, #06152B 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.np-api::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(63,184,238,0.18), transparent 50%);
  pointer-events: none;
}
.np-api__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .np-api__inner { grid-template-columns: 1fr; gap: 56px; } }
.np-api h2 { color: white; }
.np-api__hl { color: var(--blue); }
.np-api__left p { color: rgba(255,255,255,0.7); font-size: 17px; margin: 22px 0 32px; max-width: 480px; }
.np-api__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
@media (max-width: 480px) { .np-api__feats { grid-template-columns: 1fr; } }
.api-feat { display: flex; gap: 14px; align-items: flex-start; }
.api-feat__icon {
  width: 36px; height: 36px;
  background: rgba(63,184,238,0.15); color: var(--blue);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.api-feat__title { font-family: var(--f-display); font-weight: 500; color: white; font-size: 15px; }
.api-feat__desc { color: rgba(255,255,255,0.55); font-size: 13.5px; margin-top: 2px; }

.codeblock {
  background: #06152B;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.6), 0 20px 60px -20px rgba(63,184,238,0.25);
}
.codeblock__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.codeblock__tabs { display: flex; gap: 4px; }
.codeblock__tab {
  padding: 8px 14px;
  font-family: var(--f-mono); font-size: 12px;
  color: rgba(255,255,255,0.5);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.codeblock__tab:hover { color: white; }
.codeblock__tab.is-active { background: rgba(63,184,238,0.15); color: var(--blue); }
.codeblock__lights { display: flex; gap: 6px; }
.codeblock__lights span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.codeblock__code {
  margin: 0;
  padding: 22px 24px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: #C4E5FA;
  line-height: 1.7;
  white-space: pre;
  overflow-x: auto;
}
.codeblock__foot {
  display: flex; gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  font-size: 11px; color: rgba(255,255,255,0.5);
}

/* ============================================
   SEGURANÇA
   ============================================ */
.np-seg { background: var(--white); }
.np-seg__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.np-seg__head .eyebrow { margin-bottom: 16px; }
.np-seg__sub { margin: 22px auto 0; font-size: 17px; color: var(--ink-2); }

.np-seg__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 820px) { .np-seg__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .np-seg__grid { grid-template-columns: 1fr; } }
.cert {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.cert:hover { transform: translateY(-3px); border-color: var(--blue); }
.cert__shield {
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cert__title { font-family: var(--f-display); font-weight: 600; font-size: 20px; color: var(--ink); }
.cert__sub { font-size: 11px; color: var(--blue-700); letter-spacing: 0.12em; text-transform: uppercase; margin: 4px 0 12px; }
.cert__desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

.np-seg__bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: white;
  gap: 32px;
}
@media (max-width: 720px) { .np-seg__bar { grid-template-columns: 1fr; } }
.np-seg__bar-item { border-left: 2px solid var(--blue); padding-left: 18px; }
.np-seg__bar-num { font-family: var(--f-display); font-size: 32px; font-weight: 600; color: var(--blue); letter-spacing: -0.02em; }
.np-seg__bar-lbl { color: rgba(255,255,255,0.65); margin-top: 4px; font-size: 14px; line-height: 1.4; }

/* ============================================
   CTA BANNER
   ============================================ */
.np-cta { background: var(--surface); }
.np-cta__card {
  background: linear-gradient(135deg, var(--blue) 0%, #1FA1DC 70%, #0E86C0 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px -30px rgba(14,134,192,0.5);
}
.np-cta__card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 0% 0%, rgba(11,30,55,0.18), transparent 50%);
  pointer-events: none;
}
@media (max-width: 820px) {
  .np-cta__card { grid-template-columns: 1fr; padding: 48px 32px; }
  .np-cta__deco { order: 2; }
}
.np-cta__deco {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.np-cta__qr {
  width: 220px; height: 220px;
  background: white;
  padding: 14px; border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
  transform: rotate(-6deg);
  animation: drift 5s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
.np-cta__qr .totem__qr { width: 192px; height: 192px; }
.np-cta__text h2 { color: var(--ink); margin-top: 18px; }
.np-cta__text p { color: rgba(11,30,55,0.75); margin-top: 18px; font-size: 17px; }
.np-cta__btns { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.np-cta .btn-ghost-light { color: var(--ink); border-color: rgba(11,30,55,0.3); }
.np-cta .btn-ghost-light:hover { background: rgba(11,30,55,0.08); border-color: var(--ink); }
.np-cta .eyebrow { color: var(--navy); }

/* ============================================
   FOOTER
   ============================================ */
.np-footer {
  background: var(--navy);
  color: white;
  padding: 80px 0 32px;
}
.np-footer__top {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) { .np-footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .np-footer__top { grid-template-columns: 1fr; } }
.np-footer__brand img { height: 30px; margin-bottom: 18px; filter: brightness(1.1); }
.np-footer__brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; line-height: 1.6; }
.np-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.np-footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: var(--f-mono); font-size: 12px;
  text-transform: lowercase;
  transition: background .2s, border-color .2s;
}
.np-footer__social a:hover { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.np-footer__col h4 {
  color: white;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 18px;
}
.np-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.np-footer__col a {
  color: rgba(255,255,255,0.55);
  font-size: 14.5px;
  transition: color .2s;
}
.np-footer__col a:hover { color: var(--blue); }
.np-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 16px;
}
.np-footer__legal { display: flex; gap: 20px; }
.np-footer__legal a { color: rgba(255,255,255,0.55); }
.np-footer__legal a:hover { color: var(--blue); }
