:root {
  --nx-green: #0f6b4c;
  --nx-green-dark: #0a4a35;
  --nx-green-mid: #1a8a62;
  --nx-green-soft: #e8f4ee;
  --nx-green-mist: #f4faf7;
  --nx-ink: #12221a;
  --nx-muted: #5c6b64;
  --nx-line: #d9e6de;
  --nx-white: #ffffff;
  --nx-shadow: 0 18px 50px rgba(15, 43, 32, 0.08);
  --nx-shadow-sm: 0 8px 24px rgba(15, 43, 32, 0.06);
  --nx-radius: 1.25rem;
  --nx-radius-sm: 0.9rem;
  --nx-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --bs-primary: #0f6b4c;
  --bs-primary-rgb: 15, 107, 76;
  --bs-body-font-family: var(--nx-font);
  --bs-body-color: #12221a;
  --bs-body-bg: #f7faf8;
  --bs-border-radius: 0.9rem;
  --bs-link-color: #0f6b4c;
  --bs-link-hover-color: #0a4a35;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--nx-font);
  color: var(--nx-ink);
  background: var(--nx-green-mist);
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

.nx-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nx-wrap { position: relative; z-index: 1; }

h1, h2, h3, h4 { letter-spacing: -0.03em; font-weight: 700; color: var(--nx-ink); }
.display-hero { font-size: clamp(2.1rem, 4.4vw, 3.55rem); line-height: 1.12; max-width: 17ch; }
.lead-quiet { color: var(--nx-muted); font-size: 1.05rem; max-width: 42rem; }

.num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Header */
.nx-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(247, 250, 248, 0.72);
  backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid transparent;
  box-shadow: inset 0 2px 0 var(--nx-green);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.nx-header.is-compact {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 2px 0 var(--nx-green), 0 12px 36px rgba(18, 34, 26, 0.08);
  border-bottom-color: var(--nx-line);
}
.nx-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 76px;
  transition: min-height 0.25s ease;
}
.nx-header.is-compact .nx-nav-bar { min-height: 62px; }
.nx-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--nx-ink);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.18rem;
  flex-shrink: 0;
}
.nx-logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.nx-logo-text { line-height: 1; }
.nx-logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nx-muted);
}
.nx-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--nx-green-mid), var(--nx-green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(15, 107, 76, 0.25);
  transition: transform 0.2s ease;
}
.nx-logo:hover .nx-mark { transform: rotate(-8deg) scale(1.05); }
.nx-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0.22rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  box-shadow: var(--nx-shadow-sm);
}
.nx-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  color: var(--nx-ink);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.nx-menu a i {
  color: var(--nx-green);
  font-size: 0.92rem;
}
.nx-menu a:hover {
  background: var(--nx-green-soft);
  color: var(--nx-green-dark);
}
.nx-menu a.is-active {
  background: var(--nx-green);
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 107, 76, 0.22);
}
.nx-menu a.is-active i { color: #fff; }
.nx-menu a:focus-visible,
.btn-nav:focus-visible,
.nx-burger:focus-visible {
  outline: 2px solid var(--nx-green);
  outline-offset: 2px;
}
.nx-lab-short { display: none; }
.nx-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.05rem;
  font-size: 0.86rem;
  white-space: nowrap;
}
.btn-nav-sm { padding: 0.55rem 0.95rem; }
.nx-burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--nx-line);
  background: #fff;
  border-radius: 14px;
  display: grid;
  place-content: center;
  gap: 5px;
  padding: 0;
}
.nx-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nx-green-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nx-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nx-burger.is-open span:nth-child(2) { opacity: 0; }
.nx-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nx-drawer-nav { width: min(400px, 100%); background: #f4faf7; }
.nx-drawer-nav .offcanvas-header {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--nx-line);
  background: #fff;
}
.nx-drawer-nav .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.2rem 1.35rem 2rem;
}
.nx-drawer-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nx-muted);
}
.nx-drawer-nav .nx-drawer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  color: var(--nx-ink);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--nx-line);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.nx-drawer-nav .nx-drawer-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nx-drawer-nav .nx-drawer-link small {
  font-weight: 600;
  color: var(--nx-muted);
  font-size: 0.75rem;
  margin-top: 0.12rem;
}
.nx-drawer-nav .nx-drawer-link i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--nx-green-soft);
  color: var(--nx-green);
  display: grid;
  place-items: center;
}
.nx-drawer-nav .nx-drawer-link:hover,
.nx-drawer-nav .nx-drawer-link.is-active {
  border-color: var(--nx-green);
  transform: translateX(4px);
  box-shadow: var(--nx-shadow-sm);
}
.nx-drawer-nav .nx-drawer-link.is-active i {
  background: var(--nx-green);
  color: #fff;
}
.nx-drawer-nav .offcanvas-body .btn-nx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  color: #fff;
}
.nx-drawer-nav .offcanvas-body .btn-nx i {
  background: rgba(255,255,255,0.18);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .nx-menu a i,
  .nx-lab-full { display: none; }
  .nx-lab-short { display: inline; }
  .nx-menu a { padding: 0.48rem 0.62rem; font-size: 0.78rem; }
  .nx-logo-sub { display: none; }
}
@media (min-width: 1400px) {
  .nx-menu a { padding: 0.5rem 0.78rem; }
}

.btn-nx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nx-green);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(15, 107, 76, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn-nx:hover, .btn-nx:focus {
  background: var(--nx-green-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-nx-ghost {
  background: #fff;
  color: var(--nx-green-dark);
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
}
.btn-nx-ghost:hover { border-color: var(--nx-green); color: var(--nx-green); background: #fff; }
.btn-nx-lg { padding: 1rem 1.5rem; font-size: 1.02rem; }

/* Hero */
.nx-hero {
  position: relative;
  padding: 1.6rem 0 1.4rem;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(26, 138, 98, 0.14), transparent 55%),
    radial-gradient(700px 360px at -10% 20%, rgba(15, 107, 76, 0.09), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, #eef6f1 100%);
}
.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
}
.orb-a {
  width: 340px; height: 340px; left: -90px; top: 40px;
  background: radial-gradient(circle, rgba(26, 138, 98, 0.28), transparent 70%);
  animation: orbDrift 14s ease-in-out infinite;
}
.orb-b {
  width: 280px; height: 280px; right: 8%; top: -60px;
  background: radial-gradient(circle, rgba(15, 107, 76, 0.22), transparent 70%);
  animation: orbDrift 18s ease-in-out infinite reverse;
}
.orb-c {
  width: 180px; height: 180px; right: 28%; bottom: 12%;
  background: radial-gradient(circle, rgba(232, 244, 238, 0.9), rgba(26, 138, 98, 0.18));
  animation: orbDrift 12s ease-in-out infinite 1s;
}
.nx-hero > .container { position: relative; z-index: 1; }
.hero-top { padding-bottom: 0.4rem; min-height: 0; }

.hero-in {
  animation: nxFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-in.d1 { animation-delay: 0.05s; }
.hero-in.d2 { animation-delay: 0.14s; }
.hero-in.d3 { animation-delay: 0.24s; }
.hero-in.d4 { animation-delay: 0.34s; }
.hero-in.d5 { animation-delay: 0.44s; }
.hero-in.d6 { animation-delay: 0.54s; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--nx-green-dark);
  box-shadow: var(--nx-shadow-sm);
  animation: pillBob 4.8s ease-in-out infinite;
}
.hero-pills li:nth-child(2) { animation-delay: 0.4s; }
.hero-pills li:nth-child(3) { animation-delay: 0.8s; }
.hero-pills li:nth-child(4) { animation-delay: 1.2s; }
.hero-pills i { color: var(--nx-green); font-size: 1rem; }

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
@media (min-width: 576px) {
  .hero-metrics { grid-template-columns: repeat(3, 1fr); }
}
.hero-metrics > div {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--nx-line);
  border-radius: 1rem;
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-metrics > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--nx-shadow-sm);
}
.hero-metrics i {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--nx-green-soft);
  color: var(--nx-green);
  display: grid; place-items: center;
  margin-bottom: 0.25rem;
  animation: icoPulse 3.4s ease-in-out infinite;
}
.hero-metrics strong { font-size: 0.86rem; line-height: 1.25; }
.hero-metrics span { font-size: 0.75rem; color: var(--nx-muted); }

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 48%, transparent 66%);
  transform: translateX(-120%);
  animation: shineSweep 4.2s ease-in-out infinite;
}

.hero-stage {
  position: relative;
  height: 520px;
  margin: 0 auto;
  max-width: 540px;
}
.hero-ring {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  right: 4%;
  top: 6%;
  border: 1.5px dashed rgba(15, 107, 76, 0.28);
  border-radius: 50%;
  animation: spinSlow 36s linear infinite;
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(15, 107, 76, 0.12);
  border-radius: 50%;
  animation: spinSlow 48s linear infinite reverse;
}
.hero-stage-photo {
  position: absolute;
  inset: 28px 18px 70px 40px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(12, 40, 28, 0.18);
  border: 1px solid rgba(255,255,255,0.7);
}
.hero-stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-desk-card {
  position: absolute;
  width: 46%;
  left: -2%;
  bottom: 8%;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 40, 28, 0.16);
  border: 3px solid #fff;
  animation: floatY 5.5s ease-in-out infinite;
}
.hero-desk-card img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.par-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.par-layer .float-card,
.par-layer .hero-desk-card,
.par-layer .calc-inset,
.par-layer .float-ico { pointer-events: auto; }
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 16px 40px rgba(15, 43, 32, 0.12);
  border-radius: 1.1rem;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.fc-yield {
  right: -4%;
  top: 12%;
  min-width: 230px;
  animation: floatY 4.8s ease-in-out infinite;
}
.fc-yield span { display: block; font-size: 0.7rem; color: var(--nx-muted); font-weight: 600; }
.fc-yield strong { display: block; font-size: 1.45rem; color: var(--nx-green); letter-spacing: -0.04em; line-height: 1.1; }
.fc-yield em { display: block; font-style: normal; font-size: 0.82rem; font-weight: 700; color: var(--nx-ink); }
.fc-ccy {
  right: 6%;
  bottom: 18%;
  flex-direction: column;
  align-items: flex-start;
  animation: floatXY 6s ease-in-out infinite;
}
.fc-flags { display: flex; gap: 0.45rem; }
.fc-flags span {
  background: var(--nx-green-soft);
  color: var(--nx-green-dark);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.fc-trust {
  left: 8%;
  top: 8%;
  animation: floatY 6.4s ease-in-out infinite reverse;
}
.fc-trust i { font-size: 1.35rem; color: var(--nx-green); }
.fc-trust small { display: block; color: var(--nx-muted); font-size: 0.75rem; }
.fc-icon {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--nx-green);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(15, 107, 76, 0.28);
  animation: icoPulse 2.8s ease-in-out infinite;
}

.float-ico {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 16px;
  background: #fff;
  color: var(--nx-green);
  display: grid; place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 43, 32, 0.12);
  border: 1px solid var(--nx-line);
}
.ico-a { top: 42%; right: -8px; animation: floatY 3.8s ease-in-out infinite; }
.ico-b { bottom: 6%; right: 28%; animation: floatXY 5.2s ease-in-out infinite; }
.ico-c { top: 28%; left: 2%; animation: floatY 4.4s ease-in-out infinite 0.6s; }
.ico-d { bottom: 36%; left: 38%; animation: pillBob 3.6s ease-in-out infinite; }

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.08); }
}
@keyframes kenBurns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-2%, -1.5%); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatXY {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -14px); }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pillBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes icoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes shineSweep {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

@media (max-width: 991.98px) {
  .hero-stage { height: 430px; max-width: 100%; margin-top: 0.5rem; }
  .hero-stage-photo { inset: 20px 24px 80px 24px; }
  .fc-yield { right: 0; top: 6%; min-width: 200px; }
  .hero-desk-card { width: 42%; }
}
@media (max-width: 575.98px) {
  .hero-stage { height: 380px; }
  .fc-trust { display: none; }
  .ico-d { display: none; }
  .hero-desk-card img { height: 110px; }
}

.hero-register {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  scroll-margin-top: 88px;
  animation: nxFadeUp 0.7s ease 0.25s both;
}
.hero-register-media {
  position: relative;
  height: 148px;
  border-radius: 1.4rem 1.4rem 0 0;
  overflow: hidden;
}
.hero-register-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-register-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 74, 53, 0.15) 0%, rgba(10, 74, 53, 0.55) 100%);
}
.hero-register-badges {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hero-register-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.92);
  color: var(--nx-green-dark);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 800;
}
.hero-register-card {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-top: 0;
  border-radius: 0 0 1.4rem 1.4rem;
  box-shadow: var(--nx-shadow);
  padding: 1.2rem 1.2rem 1.3rem;
}
.reg-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.reg-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--nx-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px rgba(15, 107, 76, 0.25);
}
.reg-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nx-green-dark);
}
.reg-title {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}
.reg-lead {
  color: var(--nx-muted);
  font-size: 0.9rem;
  margin-bottom: 0.95rem;
}
.reg-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nx-muted);
  margin: 0 0 0.4rem;
}
.reg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.reg-chip {
  appearance: none;
  border: 1px solid var(--nx-line);
  background: var(--nx-green-mist);
  color: var(--nx-ink);
  border-radius: 999px;
  padding: 0.42rem 0.75rem;
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.reg-chip:hover { border-color: var(--nx-green); }
.reg-chip.is-active {
  background: var(--nx-green);
  border-color: var(--nx-green);
  color: #fff;
}
.hero-register .form-label {
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}
.hero-register .form-control {
  border-radius: 12px;
  border: 1px solid var(--nx-line);
  padding: 0.7rem 0.85rem;
  font-weight: 650;
}
.hero-register .form-control:focus {
  border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(15, 107, 76, 0.12);
}
.hero-register .form-check-label {
  font-size: 0.78rem;
  color: var(--nx-muted);
}
.reg-legal {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--nx-muted);
}
.hero-reg-success {
  text-align: center;
  padding: 1.2rem 0.4rem 0.4rem;
}
.hero-reg-success i {
  font-size: 2.4rem;
  color: var(--nx-green);
}
.hero-reg-success h3 { margin: 0.7rem 0 0.35rem; font-size: 1.25rem; }

@media (max-width: 991.98px) {
  .hero-register { max-width: none; margin: 0.4rem 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hero-ring, .hero-ring::after, .hero-stage-photo img,
  .hero-desk-card, .float-card, .float-ico, .hero-pills li,
  .hero-metrics i, .btn-shine::after, .fc-icon,
  .hero-register-media img {
    animation: none !important;
  }
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--nx-line);
  color: var(--nx-green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.hero-panel {
  margin-top: 1.8rem;
  background:
    radial-gradient(520px 220px at 0% 0%, rgba(26, 138, 98, 0.10), transparent 60%),
    #fff;
  border: 1px solid var(--nx-line);
  border-radius: calc(var(--nx-radius) + 8px);
  box-shadow: var(--nx-shadow);
  overflow: hidden;
  animation: nxFadeUp 0.8s ease 0.5s both;
}
.finder-shell {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .finder-shell { grid-template-columns: 220px 1fr; }
}
.finder-rail {
  padding: 1.2rem 1.1rem 1.3rem;
  background: linear-gradient(180deg, var(--nx-green-mist), #fff);
  border-bottom: 1px solid var(--nx-line);
}
@media (min-width: 992px) {
  .finder-rail {
    border-bottom: 0;
    border-right: 1px solid var(--nx-line);
    background: linear-gradient(180deg, var(--nx-green-mist) 0%, #fff 70%);
  }
}
.finder-rail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nx-green-dark);
}
.finder-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
}
@media (min-width: 992px) {
  .finder-steps { flex-direction: column; overflow: visible; }
}
.finder-steps li button {
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.15rem;
  color: var(--nx-muted);
  font-weight: 700;
  white-space: nowrap;
}
.finder-steps li span {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--nx-line);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--nx-green-dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.finder-steps li em { font-style: normal; font-size: 0.82rem; }
.finder-steps li.is-done span {
  background: var(--nx-green-soft);
  border-color: var(--nx-green);
}
.finder-steps li.is-current span {
  background: var(--nx-green);
  border-color: var(--nx-green);
  color: #fff;
  box-shadow: 0 8px 16px rgba(15, 107, 76, 0.22);
}
.finder-steps li.is-current em { color: var(--nx-ink); }
.finder-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}
.finder-picks span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--nx-ink);
}
.finder-picks i { color: var(--nx-green); }
.finder-main { min-width: 0; }
.finder-head-note {
  align-items: center;
  gap: 0.4rem;
  color: var(--nx-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.finder-head-note i { color: var(--nx-green); }
.finder-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--nx-muted);
  margin-bottom: 0.55rem;
}
.finder-slider-card {
  margin-top: 1.1rem;
  padding: 1rem 1.05rem 1.05rem;
  background: var(--nx-green-mist);
  border: 1px solid var(--nx-line);
  border-radius: 1.1rem;
}
.finder-hint {
  margin: 0.95rem 0 0;
  font-size: 0.82rem;
  color: var(--nx-muted);
}
.finder-extra {
  margin-top: 1.2rem;
  padding: 1rem;
  background: var(--nx-green-mist);
  border: 1px dashed var(--nx-line);
  border-radius: 1.1rem;
}
.finder-flex-lead { font-weight: 650; margin-bottom: 0.85rem; }
.finder-done {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: var(--nx-green-mist);
  border: 1px solid var(--nx-line);
  border-radius: 1.15rem;
}
.finder-done i {
  font-size: 1.8rem;
  color: var(--nx-green);
  line-height: 1;
}
.finder-done p { margin: 0; font-weight: 650; }

.results-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 380px at 8% 0%, rgba(26, 138, 98, 0.10), transparent 55%),
    radial-gradient(640px 300px at 100% 40%, rgba(15, 107, 76, 0.07), transparent 50%),
    #f7faf8;
}
.results-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.results-section > .container { position: relative; z-index: 1; }
.results-stage .fc-yield strong { font-size: 1.25rem; }
.results-section .hero-metrics { margin-top: 1.25rem; }

.compare-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 340px at 92% 8%, rgba(26, 138, 98, 0.11), transparent 55%),
    #ffffff;
}
.compare-stage .fc-yield strong { font-size: 1.2rem; }

.security-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 320px at 12% 10%, rgba(15, 107, 76, 0.10), transparent 55%),
    #ffffff;
}
.trust-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--nx-green-soft);
  color: var(--nx-green);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  animation: icoPulse 3.6s ease-in-out infinite;
}
.trust-card:hover .trust-ico {
  background: var(--nx-green);
  color: #fff;
}

.assets-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(760px 360px at 88% 0%, rgba(26, 138, 98, 0.10), transparent 55%),
    #f7faf8;
}

.how-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 340px at 8% 12%, rgba(15, 107, 76, 0.09), transparent 55%),
    #ffffff;
}
.how-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .how-grid { grid-template-columns: repeat(4, 1fr); } }
.how-card {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 1.15rem;
  padding: 1.1rem 1rem 1.15rem;
  box-shadow: var(--nx-shadow-sm);
  position: relative;
  min-height: 140px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.how-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nx-shadow);
}
.how-card i {
  font-size: 1.45rem;
  color: var(--nx-green);
  display: block;
  margin: 0.35rem 0 0.45rem;
  animation: icoPulse 3.4s ease-in-out infinite;
}
.how-card h3 { font-size: 0.95rem; margin: 0; }
.how-num {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--nx-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.providers-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 300px at 90% 8%, rgba(26, 138, 98, 0.10), transparent 55%),
    #f7faf8;
}
.icon-stage {
  position: relative;
  height: 460px;
  max-width: 520px;
  margin: 0 auto;
}
.icon-orbit {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  left: 14%;
  top: 10%;
  border: 1.5px dashed rgba(15, 107, 76, 0.28);
  border-radius: 50%;
  animation: spinSlow 32s linear infinite;
}
.icon-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(15, 107, 76, 0.12);
  border-radius: 50%;
  animation: spinSlow 44s linear infinite reverse;
}
.icon-core {
  position: absolute;
  width: 120px;
  height: 120px;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border-radius: 36px;
  background: var(--nx-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 3rem;
  box-shadow: 0 22px 50px rgba(15, 107, 76, 0.28);
  z-index: 2;
}
.icon-core i { animation: icoPulse 3.2s ease-in-out infinite; }
.icon-float-a { right: -2%; top: 8%; animation: floatY 4.8s ease-in-out infinite; }
.icon-float-b { left: 0; bottom: 12%; animation: floatXY 6s ease-in-out infinite; }
.ico-orbit { position: absolute; }
.o1 { top: 8%; left: 46%; animation: floatY 3.6s ease-in-out infinite; }
.o2 { top: 28%; right: 4%; animation: floatXY 4.4s ease-in-out infinite; }
.o3 { bottom: 22%; right: 10%; animation: floatY 5s ease-in-out infinite 0.4s; }
.o4 { bottom: 8%; left: 38%; animation: pillBob 3.2s ease-in-out infinite; }
.o5 { top: 36%; left: 2%; animation: floatXY 5.4s ease-in-out infinite 0.2s; }
.o6 { top: 58%; left: 18%; animation: floatY 4.2s ease-in-out infinite 0.6s; }
.provider-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--nx-green-dark);
  font-weight: 650;
}
.provider-meta i { color: var(--nx-green); margin-right: 0.2rem; }
@media (prefers-reduced-motion: reduce) {
  .icon-orbit, .icon-orbit::after, .icon-core, .icon-float-a, .icon-float-b, .ico-orbit {
    animation: none !important;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(680px 320px at 10% 8%, rgba(15, 107, 76, 0.09), transparent 55%),
    #ffffff;
}
.faq-core { background: var(--nx-green-dark); }
.faq-q-ico {
  color: var(--nx-green);
  margin-right: 0.65rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq .accordion-button { display: flex; align-items: center; }

.lead-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 340px at 88% 0%, rgba(26, 138, 98, 0.11), transparent 55%),
    #f7faf8;
}
.lead-visual {
  position: relative;
  height: 150px;
  margin-bottom: 0.4rem;
}
.lead-orbit {
  width: 180px;
  height: 180px;
  left: auto;
  right: 8%;
  top: -10px;
  opacity: 0.7;
}
.lead-float-a {
  left: 0;
  top: 18px;
  animation: floatY 4.6s ease-in-out infinite;
}
.lead-o1 { top: 8px; right: 18%; animation: floatY 3.5s ease-in-out infinite; }
.lead-o2 { top: 52px; right: 4%; animation: floatXY 4.8s ease-in-out infinite; }
.lead-o3 { top: 20px; right: 38%; animation: pillBob 3.2s ease-in-out infinite; }
.lead-o4 { top: 88px; right: 22%; animation: floatY 5s ease-in-out infinite 0.3s; }
.lead-form-card { position: relative; z-index: 2; }
.form-label i { color: var(--nx-green); margin-right: 0.25rem; }

/* Calculator section — magazine overlay, distinct from stacked stages */
.calc-section {
  padding: 3.5rem 0 4.2rem;
  background: linear-gradient(180deg, #0a4a35 0%, #0f6b4c 38%, #f4faf7 38%);
}
.calc-media {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(8, 32, 24, 0.28);
  border: 1px solid rgba(255,255,255,0.18);
}
.calc-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
.calc-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 32, 24, 0.62) 0%, rgba(8, 32, 24, 0.18) 55%, rgba(8, 32, 24, 0.08) 100%);
  pointer-events: none;
}
.calc-media-copy {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  right: 42%;
  color: #f3faf6;
  z-index: 2;
}
.calc-media-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  margin: 0.7rem 0 0.35rem;
  letter-spacing: -0.03em;
}
.calc-media-copy p {
  margin: 0;
  color: rgba(243, 250, 246, 0.86);
  max-width: 34rem;
}
.kicker-light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
  color: #e8f6ee;
  backdrop-filter: blur(10px);
}
.calc-inset {
  position: absolute;
  width: 28%;
  min-width: 160px;
  right: 5%;
  bottom: 12%;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  animation: floatY 5.8s ease-in-out infinite;
}
.calc-inset img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.calc-float-a {
  left: 36%;
  top: 14%;
  animation: floatY 4.6s ease-in-out infinite;
}
.calc-float-a strong { font-size: 1.45rem; color: var(--nx-green); }
.calc-float-a span, .calc-float-a em { display: block; }
.calc-float-a em { font-style: normal; font-size: 0.8rem; font-weight: 700; }
.calc-float-b {
  right: 8%;
  top: 10%;
  animation: floatXY 6.2s ease-in-out infinite;
}
.calc-float-b i { font-size: 1.3rem; color: var(--nx-green); }
.calc-ico-a { position: absolute; left: 48%; bottom: 18%; animation: floatY 3.8s ease-in-out infinite; }
.calc-ico-b { position: absolute; right: 32%; top: 38%; animation: floatXY 5s ease-in-out infinite; }
.calc-ico-c { position: absolute; left: 30%; bottom: 10%; animation: pillBob 3.4s ease-in-out infinite; }

.calc-board {
  margin-top: -4.2rem;
  position: relative;
  z-index: 3;
}
.calc-form-card,
.calc-output-shell {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  border: 1px solid #fff;
  border-radius: 1.4rem;
  box-shadow: 0 22px 50px rgba(12, 40, 28, 0.12);
  padding: 1.35rem 1.4rem 1.5rem;
}
.calc-form-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--nx-line);
}
.calc-form-head i {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--nx-green);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.2rem;
  animation: icoPulse 3s ease-in-out infinite;
}
.calc-form-head span { display: block; font-size: 0.78rem; color: var(--nx-muted); }
.calc-output-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nx-green-dark);
  margin-bottom: 0.8rem;
}
.calc-output-shell { min-height: 280px; }

@media (max-width: 991.98px) {
  .calc-section { background: linear-gradient(180deg, #0a4a35 0%, #0f6b4c 22%, #f4faf7 22%); }
  .calc-media { height: 340px; }
  .calc-media-copy { right: 8%; left: 1.2rem; bottom: 1.2rem; }
  .calc-inset { display: none; }
  .calc-float-a, .calc-float-b { display: none; }
  .calc-board { margin-top: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  .calc-banner, .calc-inset, .calc-float-a, .calc-float-b,
  .calc-ico-a, .calc-ico-b, .calc-ico-c, .calc-form-head i {
    animation: none !important;
  }
}
.finder-progress {
  height: 5px;
  background: var(--nx-green-soft);
}
.finder-progress span {
  display: block;
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--nx-green), var(--nx-green-mid));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.finder-head {
  padding: 1.25rem 1.4rem 0.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.step-index {
  color: var(--nx-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.finder-body { padding: 0.35rem 1.4rem 1.15rem; min-height: 240px; }
.step-pane { animation: nxFadeUp 0.38s ease both; }
@keyframes nxFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes nxPop {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: none; }
}

.choice-grid { display: grid; gap: 0.75rem; }
@media (min-width: 768px) {
  .choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .choice-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.choice {
  appearance: none;
  background: var(--nx-green-mist);
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-radius-sm);
  padding: 1rem 1rem 0.95rem;
  text-align: left;
  font-weight: 700;
  color: var(--nx-ink);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  min-height: 64px;
}
.choice:hover, .choice:focus-visible {
  border-color: var(--nx-green);
  transform: translateY(-2px);
  box-shadow: var(--nx-shadow-sm);
  outline: none;
}
.choice.is-active {
  background: #fff;
  border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(15, 107, 76, 0.12);
}
.choice small { display: block; font-weight: 500; color: var(--nx-muted); margin-top: 0.2rem; }
.choice .rate-preview { color: var(--nx-green); font-size: 1.15rem; }
.choice-amt,
.choice-ccy,
.choice-term {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}
.choice-amt i,
.choice-product i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #fff;
  color: var(--nx-green);
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
  border: 1px solid var(--nx-line);
}
.choice.is-active .choice-amt i,
.choice-amt.is-active i,
.choice-product.is-active i {
  background: var(--nx-green);
  color: #fff;
  border-color: var(--nx-green);
}
.choice-product {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.choice-product i { margin-bottom: 0; flex-shrink: 0; }
.choice-ccy .ccy-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  color: var(--nx-green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  border: 1px solid var(--nx-line);
  margin-bottom: 0.35rem;
}
.choice-ccy.is-active .ccy-mark {
  background: var(--nx-green);
  color: #fff;
  border-color: var(--nx-green);
}
.choice-term {
  align-items: center;
  text-align: center;
  min-height: 88px;
  justify-content: center;
}
.choice-term strong {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  color: var(--nx-green-dark);
  line-height: 1;
}
.choice-term.is-active strong { color: var(--nx-green); }

.amount-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nx-green) var(--pct, 33%), var(--nx-line) var(--pct, 33%));
  outline: none;
}
.amount-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--nx-green);
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(15, 107, 76, 0.28);
  cursor: pointer;
}
.amount-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--nx-green);
  border: 3px solid #fff;
  box-shadow: 0 6px 14px rgba(15, 107, 76, 0.28);
  cursor: pointer;
}
.custom-amount {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.9rem;
}
.custom-amount input {
  border-radius: 999px;
  border: 1px solid var(--nx-line);
  padding: 0.85rem 1rem;
  width: 100%;
  font-weight: 700;
  font-size: 1.05rem;
  background: #fff;
}
.custom-amount input:focus {
  outline: none;
  border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(15, 107, 76, 0.12);
}
.amount-unit {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--nx-green-dark);
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
}

.finder-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1.4rem 1.35rem;
}
.finder-actions .btn-nx-ghost:disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Cards */
.nx-section { padding: 4.2rem 0; }
.nx-section.alt { background: #fff; }
.section-title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 0.5rem; }
.nx-card {
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-radius);
  padding: 1.25rem;
  box-shadow: var(--nx-shadow-sm);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nx-card:hover { transform: translateY(-3px); box-shadow: var(--nx-shadow); }
.offer-rate {
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--nx-green);
  line-height: 1;
}
.offer-interest { font-size: 1.15rem; font-weight: 700; }
.badge-nx {
  background: var(--nx-green-soft);
  color: var(--nx-green-dark);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.28rem 0.6rem;
}
.badge-warn {
  background: #fff4e5;
  color: #8a5a12;
}
.badge-model { background: #eef2f7; color: #3d4a5c; }
.logo-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-box svg { width: 48px; height: 48px; display: block; }

.calc-hero-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--nx-green);
}

.table-nx { width: 100%; }
.table-nx th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nx-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--nx-line);
  padding: 0.7rem;
}
.table-nx td { padding: 0.85rem 0.7rem; border-bottom: 1px solid #eef3f0; vertical-align: middle; }

.faq .accordion-item {
  border: 1px solid var(--nx-line);
  border-radius: var(--nx-radius-sm) !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: #fff;
}
.faq .accordion-button { font-weight: 700; box-shadow: none !important; background: #fff; }
.faq .accordion-button:not(.collapsed) { color: var(--nx-green-dark); background: var(--nx-green-mist); }

.nx-footer {
  background: var(--nx-green-dark);
  color: #d7ebe3;
  padding: 3.2rem 0 1.8rem;
  position: relative;
  overflow: hidden;
}
.nx-footer a { color: #eef7f3; text-decoration: none; }
.nx-footer a:hover { color: #fff; }
.nx-footer .fine { color: #9fbfb2; font-size: 0.85rem; }
.footer-title {
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0.7rem 0 0;
}
.nx-footer .section-shared-lead { color: #c5ddd4; max-width: 38rem; }
.nx-footer .hero-pills li {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #e8f6ee;
}
.nx-footer .hero-pills i { color: #b7e0cc; }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0;
}
.footer-links a i { color: #8fceb3; }
.footer-col-title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fbfb2;
  margin-bottom: 0.7rem;
}
.footer-stage { height: 280px; max-width: 340px; }
.footer-orbit { border-color: rgba(255,255,255,0.22); }
.footer-core {
  background: #fff;
  color: var(--nx-green-dark);
  width: 96px;
  height: 96px;
  border-radius: 28px;
  font-size: 2.4rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.fo1 { top: 6%; left: 42%; }
.fo2 { top: 30%; right: 2%; }
.fo3 { bottom: 18%; right: 12%; }
.fo4 { bottom: 8%; left: 28%; }

.legal-strip {
  background: #083628;
  color: #b7d0c6;
  font-size: 0.8rem;
  padding: 1rem 0 1.4rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--nx-line);
  display: none;
}
@media (max-width: 991.98px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 84px; }
  .nx-desktop-nav { display: none !important; }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 28, 22, 0.42);
  z-index: 1080;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.nx-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 100%);
  background: #fff;
  z-index: 1085;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  box-shadow: -20px 0 50px rgba(0,0,0,0.12);
}
.nx-drawer.show { transform: none; }

.confirm-view { display: none; }
.confirm-view.show { display: block; animation: nxFadeUp 0.4s ease; }

.filter-bar select, .filter-bar .form-select, .filter-bar .form-control {
  border-radius: 999px;
  border-color: var(--nx-line);
  font-weight: 600;
  font-size: 0.88rem;
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  background: var(--nx-green-mist);
  border-radius: var(--nx-radius);
  border: 1px dashed var(--nx-line);
}

.source-pop {
  font-size: 0.82rem;
  color: var(--nx-muted);
}

.how-step {
  counter-increment: how;
  position: relative;
  padding-left: 3.2rem;
}
.how-step::before {
  content: counter(how);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: var(--nx-green);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.trust-grid { display: grid; gap: 0.8rem; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.phase-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 0.6rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eef3f0;
}

.form-control, .form-select {
  border-radius: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-color: var(--nx-line);
}
.form-control:focus, .form-select:focus {
  border-color: var(--nx-green);
  box-shadow: 0 0 0 4px rgba(15, 107, 76, 0.12);
}

.admin-shell { min-height: 100vh; background: #f3f7f5; }
.admin-side {
  background: var(--nx-green-dark);
  min-height: 100vh;
  color: #dceee6;
}
.admin-side a { color: #dceee6; text-decoration: none; display: block; padding: 0.55rem 0.2rem; }
.admin-side a:hover, .admin-side a.active { color: #fff; }

[data-animate] { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-animate].in { opacity: 1; transform: none; }

.nx-chat {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.nx-chat-fab {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 20px;
  background: var(--nx-green);
  color: #fff;
  font-size: 1.45rem;
  box-shadow: 0 16px 36px rgba(15, 107, 76, 0.32);
  display: grid;
  place-items: center;
  position: relative;
}
.nx-chat-fab:hover { background: var(--nx-green-dark); }
.nx-chat-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7dffb3;
  box-shadow: 0 0 0 0 rgba(125, 255, 179, 0.7);
  animation: chatPulse 2.2s ease-out infinite;
}
.nx-chat-fab.is-open .nx-chat-dot { display: none; }
@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(125, 255, 179, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(125, 255, 179, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 255, 179, 0); }
}
.nx-chat-panel {
  width: min(380px, calc(100vw - 1.6rem));
  height: min(540px, calc(100vh - 7.5rem));
  background: #fff;
  border: 1px solid var(--nx-line);
  border-radius: 1.35rem;
  box-shadow: 0 24px 60px rgba(12, 40, 28, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.nx-chat-panel.is-open { display: flex; animation: nxPop 0.22s ease; }
.nx-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(160deg, var(--nx-green-dark), var(--nx-green));
  color: #fff;
}
.nx-chat-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.nx-chat-brand .nx-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: none;
  background: rgba(255,255,255,0.16);
}
.nx-chat-brand strong { display: block; font-size: 0.95rem; }
.nx-chat-brand small { display: block; opacity: 0.8; font-size: 0.72rem; }
.nx-chat-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.nx-chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 0.9rem 0.95rem;
  background: var(--nx-green-mist);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.nx-chat-msg {
  max-width: 92%;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.86rem;
  line-height: 1.45;
}
.nx-chat-msg p { margin: 0.35rem 0 0; }
.nx-chat-msg p:first-child { margin-top: 0; }
.nx-chat-msg.bot {
  background: #fff;
  border: 1px solid var(--nx-line);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}
.nx-chat-msg.user {
  background: var(--nx-green);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}
.nx-chat-msg a { font-weight: 700; }
.nx-chat-suggest {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.55rem 0.8rem 0.2rem;
  background: #fff;
}
.nx-chat-chip {
  appearance: none;
  border: 1px solid var(--nx-line);
  background: var(--nx-green-mist);
  color: var(--nx-ink);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.nx-chat-chip:hover { border-color: var(--nx-green); color: var(--nx-green-dark); }
.nx-chat-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem 0.85rem;
  background: #fff;
  border-top: 1px solid var(--nx-line);
}
.nx-chat-form input {
  flex: 1;
  border: 1px solid var(--nx-line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  font-weight: 650;
}
.nx-chat-form input:focus {
  outline: none;
  border-color: var(--nx-green);
  box-shadow: 0 0 0 3px rgba(15, 107, 76, 0.12);
}
.nx-chat-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--nx-green);
  color: #fff;
}
@media (max-width: 991.98px) {
  .nx-chat { bottom: 5.6rem; right: 0.85rem; }
  .nx-chat-panel { height: min(460px, calc(100vh - 11rem)); }
}

#nxToast {
  z-index: 1090;
  right: 5.5rem !important;
  background: var(--nx-ink);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#nxToast.show { opacity: 1; transform: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 0.5rem 1rem;
  z-index: 2000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
