:root {
  --nq-bg: #071311;
  --nq-bg-2: #0b1c19;
  --nq-surface: rgba(255, 255, 255, .075);
  --nq-surface-strong: rgba(255, 255, 255, .12);
  --nq-text: #f5fffb;
  --nq-muted: rgba(245, 255, 251, .72);
  --nq-soft: rgba(245, 255, 251, .1);
  --nq-line: rgba(255, 255, 255, .13);
  --nq-accent: #36f2b2;
  --nq-accent-2: #6cf7ff;
  --nq-dark: #06100e;
  --nq-radius: 28px;
  --nq-radius-sm: 18px;
  --nq-shadow: 0 24px 80px rgba(0, 0, 0, .36);
  --nq-container: 1160px;
  --nq-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--nq-font);
  background:
    radial-gradient(circle at 20% 0%, rgba(54, 242, 178, .16), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(108, 247, 255, .12), transparent 30%),
    var(--nq-bg);
  color: var(--nq-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.nq-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

.nq-container {
  width: min(100% - 40px, var(--nq-container));
  margin-inline: auto;
}

.nq-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  transition:
    background .24s ease,
    border-color .24s ease,
    padding .24s ease,
    backdrop-filter .24s ease;
}

.nq-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 19, 17, .78);
  border-bottom: 1px solid var(--nq-line);
  backdrop-filter: blur(18px);
}

.nq-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nq-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: -.04em;
}

.nq-brand__logo {
  display: block;
  width: auto;
  height: 38px;
  max-width: 150px;
  object-fit: contain;
}

.nq-brand__logo--footer {
  height: 36px;
  max-width: 144px;
}

.nq-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(54, 242, 178, .45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(54, 242, 178, .95), rgba(108, 247, 255, .78));
  color: #04110e;
  font-size: 14px;
  box-shadow: 0 12px 38px rgba(54, 242, 178, .22);
}

.nq-brand__mark-img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nq-brand__text {
  font-size: 20px;
}

.nq-brand--footer {
  width: fit-content;
  margin-bottom: 14px;
}

.nq-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nq-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nq-nav__list a,
.nq-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--nq-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.nq-nav__list a:hover,
.nq-nav__link:hover,
.nq-nav__link:focus-visible {
  color: var(--nq-text);
  background: var(--nq-soft);
  outline: 0;
}

.nq-nav__link svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nq-nav__link--login {
  border: 1px solid rgba(54, 242, 178, .2);
  background: rgba(54, 242, 178, .06);
  color: var(--nq-text);
}

.nq-nav__link--login svg {
  color: var(--nq-accent);
}

.nq-nav__link--login:hover,
.nq-nav__link--login:focus-visible {
  border-color: rgba(54, 242, 178, .42);
  background: rgba(54, 242, 178, .11);
  box-shadow: 0 14px 34px rgba(54, 242, 178, .12);
}

.nq-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--nq-line);
  border-radius: 16px;
  background: var(--nq-surface);
  color: var(--nq-text);
}

.nq-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform .2s ease,
    opacity .2s ease;
}

.nq-menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nq-menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nq-main {
  overflow: hidden;
}

.nq-hero {
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: center;
  padding: 64px 0 96px;
}

.nq-hero__grid,
.nq-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.nq-pill,
.nq-eyebrow,
.nq-plan {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(54, 242, 178, .28);
  border-radius: 999px;
  background: rgba(54, 242, 178, .08);
  color: var(--nq-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  max-width: 800px;
  margin: 22px 0 22px;
  font-size: clamp(48px, 8vw, 94px);
}

h2 {
  max-width: 820px;
  margin: 12px 0 16px;
  font-size: clamp(34px, 5vw, 62px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 32px);
}

.nq-hero__copy > p,
.nq-section-head p,
.nq-split > div > p,
.nq-cta p,
.nq-page p {
  max-width: 660px;
  color: var(--nq-muted);
  font-size: clamp(17px, 2vw, 21px);
}

.nq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.nq-actions--center {
  justify-content: center;
}

.nq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(54, 242, 178, .55);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nq-accent), var(--nq-accent-2));
  color: #04110e;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(54, 242, 178, .22);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.nq-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px rgba(54, 242, 178, .28);
  filter: saturate(1.06);
}

.nq-btn--ghost {
  background: rgba(255, 255, 255, .07);
  color: var(--nq-text);
  border-color: var(--nq-line);
  box-shadow: none;
}

.nq-btn--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.nq-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nq-trust span {
  padding: 9px 12px;
  border: 1px solid var(--nq-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--nq-muted);
  font-size: 13px;
  font-weight: 750;
}

.nq-phone-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--nq-line);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .04));
  box-shadow: var(--nq-shadow);
}

.nq-phone-card::before {
  content: '';
  position: absolute;
  inset: -80px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(54, 242, 178, .22);
  filter: blur(60px);
  pointer-events: none;
}

.nq-phone {
  position: relative;
  min-height: 560px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 242, 178, .14), transparent 42%),
    #071311;
}

.nq-phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.nq-phone__top span {
  font-weight: 900;
  font-size: 22px;
}

.nq-phone__top small {
  color: var(--nq-accent);
  font-weight: 800;
}

.nq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nq-tabs span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--nq-line);
  border-radius: 999px;
  color: var(--nq-muted);
  font-size: 13px;
  font-weight: 800;
}

.nq-tabs .is-active {
  background: var(--nq-accent);
  color: #04110e;
}

.nq-product {
  position: relative;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid var(--nq-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .065);
}

.nq-product strong {
  display: block;
  padding-right: 70px;
  font-size: 18px;
}

.nq-product span {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--nq-accent);
  font-weight: 900;
}

.nq-product p {
  margin: 7px 0 0;
  color: var(--nq-muted);
  font-size: 14px;
}

.nq-section {
  padding: clamp(74px, 10vw, 130px) 0;
}

.nq-section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border-block: 1px solid var(--nq-line);
}

.nq-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.nq-steps,
.nq-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nq-pricing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nq-card,
.nq-price-card,
.nq-demo-panel,
.nq-cta__box,
.nq-page__content {
  border: 1px solid var(--nq-line);
  border-radius: var(--nq-radius);
  background: var(--nq-surface);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .18);
}

.nq-card,
.nq-price-card,
.nq-demo-panel,
.nq-page__content {
  padding: clamp(22px, 3vw, 34px);
}

.nq-card p,
.nq-price-card p,
.nq-feature-list p,
.nq-demo-panel p,
.nq-footer p {
  color: var(--nq-muted);
}

.nq-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid rgba(54, 242, 178, .28);
  border-radius: 18px;
  background: rgba(54, 242, 178, .09);
  color: var(--nq-accent);
}

.nq-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nq-icon--mini {
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 15px;
  flex: 0 0 auto;
}

.nq-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.nq-feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--nq-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .05);
}

.nq-feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.nq-feature-list p {
  grid-column: 2;
  margin: -4px 0 0;
}

.nq-demo-panel {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(54, 242, 178, .16), rgba(108, 247, 255, .08)),
    var(--nq-surface);
}

.nq-demo-panel span {
  color: var(--nq-muted);
  font-weight: 800;
}

.nq-demo-panel strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--nq-accent);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.04em;
}

.nq-price-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nq-price-card--featured {
  background:
    radial-gradient(circle at 85% 10%, rgba(54, 242, 178, .22), transparent 35%),
    rgba(255, 255, 255, .1);
  border-color: rgba(54, 242, 178, .34);
}

.nq-price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--nq-muted);
}

.nq-price-card li {
  position: relative;
  padding-left: 24px;
}

.nq-price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--nq-accent);
  font-weight: 900;
}

.nq-price-card .nq-btn {
  margin-top: auto;
}

.nq-cta {
  padding-top: 30px;
}

.nq-cta__box {
  padding: clamp(34px, 7vw, 78px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(54, 242, 178, .18), transparent 45%),
    var(--nq-surface);
}

.nq-cta h2,
.nq-cta p,
.nq-cta .nq-eyebrow {
  margin-inline: auto;
}

.nq-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--nq-line);
  background: rgba(0, 0, 0, .16);
}

.nq-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 28px;
}

.nq-footer strong,
.nq-footer a {
  display: block;
}

.nq-footer strong {
  margin-bottom: 12px;
}

.nq-footer a {
  color: var(--nq-muted);
  margin: 8px 0;
}

.nq-footer a:hover {
  color: var(--nq-text);
}

.nq-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--nq-line);
  color: var(--nq-muted);
  font-size: 13px;
}


.nq-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--nq-muted);
}

.nq-legal-links a {
  display: inline-flex;
  margin: 0;
  color: var(--nq-muted);
}

.nq-legal-links a:hover,
.nq-legal-links a:focus-visible {
  color: var(--nq-accent);
  outline: 0;
}

.site-credit {
  --netbridge-blue: #007bff;
  --netbridge-yellow: #ffd539;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  width: min(100% - 40px, var(--nq-container));
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.site-credit .company-info,
.site-credit .netbridge-credit,
.site-credit .netbridge-credit__label {
  color: inherit;
}

.site-credit .netbridge-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.4;
}

.site-credit .netbridge-credit__link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px 5px;
  border: 1px solid rgba(0, 123, 255, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 123, 255, .08), rgba(255, 213, 57, .08));
  color: var(--nq-text);
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(0, 123, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    color .22s ease;
}

.site-credit .netbridge-credit__link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--netbridge-blue), var(--netbridge-yellow));
  opacity: .75;
  transform: scaleX(.34);
  transform-origin: left;
  transition:
    transform .22s ease,
    opacity .22s ease;
}

.site-credit .netbridge-credit__link:hover,
.site-credit .netbridge-credit__link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 123, 255, .38);
  background: linear-gradient(135deg, rgba(0, 123, 255, .12), rgba(255, 213, 57, .13));
  color: var(--nq-text);
  box-shadow:
    0 12px 28px rgba(0, 123, 255, .12),
    0 0 0 5px rgba(255, 213, 57, .08),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.site-credit .netbridge-credit__link:hover::after,
.site-credit .netbridge-credit__link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nq-page {
  min-height: 65vh;
}

.nq-entry h1 {
  margin-top: 12px;
}

.nq-content {
  color: var(--nq-muted);
  font-size: 18px;
}

.nq-content a {
  color: var(--nq-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nq-center {
  text-align: center;
}

.nq-center .nq-page__content {
  margin-inline: auto;
  max-width: 760px;
}

@media (max-width: 960px) {
  .nq-menu-toggle {
    display: block;
  }

  .nq-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--nq-line);
    border-radius: 24px;
    background: rgba(7, 19, 17, .95);
    box-shadow: var(--nq-shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity .2s ease,
      visibility .2s ease,
      transform .2s ease;
  }

  .nq-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nq-nav__list {
    display: contents;
  }

  .nq-nav__list a,
  .nq-nav__link,
  .nq-nav .nq-btn {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 16px;
  }

  .nq-nav__link--login {
    min-height: 50px;
  }

  .nq-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .nq-hero__grid,
  .nq-split,
  .nq-footer__grid {
    grid-template-columns: 1fr;
  }

  .nq-steps {
    grid-template-columns: 1fr;
  }

  .nq-phone {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .nq-container {
    width: min(100% - 28px, var(--nq-container));
  }

  .nq-header {
    padding: 10px 0;
  }

  .nq-brand__logo {
    height: 34px;
    max-width: 132px;
  }

  .nq-brand__logo--footer {
    height: 34px;
    max-width: 132px;
  }

  .nq-brand__mark,
  .nq-brand__mark-img {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .nq-brand__text {
    font-size: 19px;
  }

  .nq-hero {
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(31px, 10vw, 44px);
  }

  .nq-hero__copy > p,
  .nq-section-head p,
  .nq-split > div > p,
  .nq-cta p,
  .nq-page p {
    font-size: 17px;
  }

  .nq-actions {
    display: grid;
  }

  .nq-btn {
    width: 100%;
    min-height: 54px;
  }

  .nq-trust {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nq-phone-card {
    padding: 10px;
    border-radius: 30px;
  }

  .nq-phone {
    padding: 16px;
    border-radius: 24px;
  }

  .nq-product strong {
    font-size: 17px;
  }

  .nq-section {
    padding: 72px 0;
  }

  .nq-pricing {
    grid-template-columns: 1fr;
  }

  .nq-feature-list > div {
    grid-template-columns: 1fr;
  }

  .nq-feature-list p {
    grid-column: auto;
    margin: 0;
  }

  .nq-footer__bottom {
    flex-direction: column;
  }

  .nq-legal-links {
    max-width: 340px;
  }

  
.nq-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--nq-muted);
}

.nq-legal-links a {
  display: inline-flex;
  margin: 0;
  color: var(--nq-muted);
}

.nq-legal-links a:hover,
.nq-legal-links a:focus-visible {
  color: var(--nq-accent);
  outline: 0;
}

.site-credit {
    width: min(100% - 28px, var(--nq-container));
    gap: 7px;
    font-size: 13px;
  }

  .site-credit .company-info {
    max-width: 340px;
  }

  .site-credit .netbridge-credit {
    flex-wrap: wrap;
  }

  .site-credit .netbridge-credit__link {
    min-height: 32px;
    padding-inline: 12px;
  }
}

@media (hover: none) {
  .nq-btn:hover,
  .site-credit .netbridge-credit__link:hover {
    transform: none;
  }
}

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

  .site-credit .netbridge-credit__link,
  .site-credit .netbridge-credit__link::after {
    transition: none !important;
  }
}

/* WordPress login branding ------------------------------------------------- */
body.login.netqr-login {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(54, 242, 178, .18), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(108, 247, 255, .14), transparent 30%),
    var(--nq-bg);
  color: var(--nq-text);
}

body.login.netqr-login #login {
  width: min(100% - 32px, 420px);
  padding: 7vh 0 40px;
}

body.login.netqr-login h1 a {
  width: 164px;
  height: 48px;
  margin: 0 auto 24px;
  background-image: url("../img/netqr-logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

body.login.netqr-login form {
  border: 1px solid var(--nq-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .075);
  color: var(--nq-text);
  box-shadow: var(--nq-shadow);
  backdrop-filter: blur(18px);
}

body.login.netqr-login label,
body.login.netqr-login .forgetmenot label {
  color: var(--nq-muted);
  font-weight: 750;
}

body.login.netqr-login input[type="text"],
body.login.netqr-login input[type="password"] {
  min-height: 48px;
  border: 1px solid var(--nq-line);
  border-radius: 16px;
  background: rgba(6, 16, 14, .72);
  color: var(--nq-text);
  box-shadow: none;
}

body.login.netqr-login input[type="text"]:focus,
body.login.netqr-login input[type="password"]:focus {
  border-color: rgba(54, 242, 178, .62);
  box-shadow: 0 0 0 4px rgba(54, 242, 178, .14);
  outline: 0;
}

body.login.netqr-login .button-primary {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nq-accent), var(--nq-accent-2));
  color: #04110e;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(54, 242, 178, .18);
}

body.login.netqr-login .button-primary:hover,
body.login.netqr-login .button-primary:focus {
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(54, 242, 178, .24);
}

body.login.netqr-login #nav,
body.login.netqr-login #backtoblog,
body.login.netqr-login .privacy-policy-page-link {
  text-align: center;
}

body.login.netqr-login #nav a,
body.login.netqr-login #backtoblog a,
body.login.netqr-login .privacy-policy-page-link a {
  color: var(--nq-muted);
  font-weight: 700;
}

body.login.netqr-login #nav a:hover,
body.login.netqr-login #backtoblog a:hover,
body.login.netqr-login .privacy-policy-page-link a:hover {
  color: var(--nq-accent);
}

body.login.netqr-login .message,
body.login.netqr-login .notice,
body.login.netqr-login .success {
  border-left-color: var(--nq-accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  color: var(--nq-text);
}

@media (max-width: 480px) {
  body.login.netqr-login #login {
    padding-top: 34px;
  }

  body.login.netqr-login h1 a {
    width: 148px;
    height: 44px;
  }

  body.login.netqr-login form {
    padding: 24px;
    border-radius: 24px;
  }
}

/* NetQR app-like additions ------------------------------------------------- */
.nq-btn svg,
.nq-pill svg,
.nq-eyebrow svg,
.nq-trust svg,
.nq-floating-whatsapp svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nq-btn,
.nq-pill,
.nq-eyebrow,
.nq-trust span {
  gap: 8px;
}

.nq-btn svg {
  width: 19px;
  height: 19px;
}

.nq-btn--ghost svg {
  color: var(--nq-accent);
}

.nq-trust span {
  display: inline-flex;
  align-items: center;
}

.nq-trust svg {
  width: 16px;
  height: 16px;
  color: var(--nq-accent);
}

.nq-feature-grid,
.nq-mini-grid,
.nq-chip-grid,
.nq-faq-layout {
  display: grid;
  gap: 16px;
}

.nq-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nq-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nq-chip-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nq-faq-layout {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: start;
}

.nq-mini-card,
.nq-offer-card,
.nq-offer-box {
  border: 1px solid var(--nq-line);
  background: var(--nq-surface);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .16);
}

.nq-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--nq-radius-sm);
}

.nq-mini-card .nq-icon {
  grid-row: span 2;
}

.nq-mini-card strong {
  display: block;
  color: var(--nq-text);
  line-height: 1.18;
}

.nq-mini-card p {
  margin: 0;
  color: var(--nq-muted);
}

.nq-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--nq-radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(54, 242, 178, .13), transparent 34%),
    var(--nq-surface);
}

.nq-offer-card p,
.nq-offer-box p {
  color: var(--nq-muted);
}

.nq-offer-box {
  padding: clamp(26px, 5vw, 46px);
  border-radius: var(--nq-radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 247, 255, .11), transparent 42%),
    rgba(255, 255, 255, .065);
}

.nq-offer-box > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--nq-accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nq-offer-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(54px, 7vw, 88px);
  line-height: .9;
  letter-spacing: -.08em;
  background: linear-gradient(135deg, var(--nq-accent), var(--nq-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nq-offer-box .nq-btn {
  margin-top: 22px;
}

.nq-chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(54, 242, 178, .18);
  border-radius: 999px;
  background: rgba(54, 242, 178, .07);
  color: var(--nq-text);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.nq-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid rgba(54, 242, 178, .34);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(54, 242, 178, .22), rgba(108, 247, 255, .12));
  color: var(--nq-accent);
  font-size: 14px;
  font-weight: 950;
}

.nq-demo-panel__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 22px;
}

.nq-demo-panel__meta small {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--nq-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--nq-muted);
  font-size: 12px;
  font-weight: 800;
}

.nq-section--problem {
  position: relative;
}

.nq-section--problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(54, 242, 178, .08), transparent 34%);
  pointer-events: none;
}

.nq-section--problem > .nq-container {
  position: relative;
}

.nq-product--featured {
  border-color: rgba(54, 242, 178, .32);
  background:
    linear-gradient(180deg, rgba(54, 242, 178, .08), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .07);
}

.nq-phone__bar {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid var(--nq-line);
  border-radius: 22px;
  background: rgba(6, 16, 14, .88);
  backdrop-filter: blur(16px);
}

.nq-phone__bar span {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 46px;
  color: var(--nq-muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.nq-phone__bar svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--nq-accent);
}

.nq-faq-list {
  display: grid;
  gap: 12px;
}

.nq-faq-list details {
  border: 1px solid var(--nq-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .055);
  overflow: hidden;
}

.nq-faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--nq-text);
  font-weight: 850;
  list-style: none;
}

.nq-faq-list summary::-webkit-details-marker {
  display: none;
}

.nq-faq-list summary::after {
  content: '+';
  float: right;
  color: var(--nq-accent);
  font-size: 22px;
  line-height: 1;
}

.nq-faq-list details[open] summary::after {
  content: '–';
}

.nq-faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--nq-muted);
}

.nq-floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(54, 242, 178, .55);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--nq-accent), var(--nq-accent-2));
  color: #04110e;
  box-shadow:
    0 20px 54px rgba(54, 242, 178, .28),
    0 0 0 8px rgba(54, 242, 178, .08);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.nq-floating-whatsapp:hover,
.nq-floating-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 24px 66px rgba(54, 242, 178, .34),
    0 0 0 10px rgba(54, 242, 178, .1);
  filter: saturate(1.06);
  outline: 0;
}

.nq-floating-whatsapp svg {
  width: 27px;
  height: 27px;
}

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

  .nq-chip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nq-feature-grid,
  .nq-mini-grid,
  .nq-faq-layout,
  .nq-offer-card {
    grid-template-columns: 1fr;
  }

  .nq-nav__link svg {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 680px) {
  .nq-hero__grid {
    gap: 34px;
  }

  .nq-actions .nq-btn {
    justify-content: center;
  }

  .nq-mini-card {
    padding: 16px;
    border-radius: 20px;
  }

  .nq-chip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nq-tabs,
  .nq-trust {
    gap: 8px;
  }

  .nq-trust span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .nq-demo-panel__meta {
    grid-template-columns: 1fr;
  }

  .nq-phone__bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 18px;
  }

  .nq-phone__bar span {
    min-height: 42px;
    font-size: 9px;
  }

  .nq-floating-whatsapp {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }
}

@media (hover: none) {
  .nq-floating-whatsapp:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nq-floating-whatsapp,
  .nq-floating-whatsapp:hover,
  .nq-floating-whatsapp:focus-visible {
    transform: none;
    transition: none;
  }
}
