:root {
  --nsv-bg-start: #0a0618;
  --nsv-bg-end: #140828;
  --nsv-panel: #140a24;
  --nsv-panel-strong: #19102f;
  --nsv-lead: #2a2a2a;
  --nsv-cobalt: #1e40af;
  --nsv-cobalt-soft: #3b5fc9;
  --nsv-ruby: #9f1239;
  --nsv-ruby-soft: #be1e45;
  --nsv-emerald: #047857;
  --nsv-emerald-soft: #10b981;
  --nsv-amber: #b45309;
  --nsv-amber-soft: #d97706;
  --nsv-ivory: #f5f0e0;
  --nsv-lavender: #c9bfd9;
  --nsv-max: 1180px;
  --nsv-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --nsv-glass-strip: linear-gradient(90deg, #1e40af 0% 25%, #9f1239 25% 50%, #047857 50% 75%, #b45309 75% 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lora", serif;
  background:
    radial-gradient(circle at top left, rgba(59, 95, 201, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(190, 30, 69, 0.1), transparent 24%),
    linear-gradient(180deg, var(--nsv-bg-start), var(--nsv-bg-end));
  color: var(--nsv-ivory);
  line-height: 1.6;
}

body.nsv-lock {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.nsv-page {
  width: min(var(--nsv-max), calc(100% - 40px));
  margin: 0 auto;
}

.nsv-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180, 83, 9, 0.24);
}

.nsv-header-inner {
  width: min(var(--nsv-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nsv-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.nsv-logo-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(180, 83, 9, 0.18), rgba(30, 64, 175, 0.18));
  border: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 224, 0.08);
}

.nsv-logo-icon::before,
.nsv-logo-icon::after {
  content: "";
  position: absolute;
  background: var(--nsv-amber-soft);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nsv-logo-icon::before {
  width: 0.7rem;
  height: 2.1rem;
}

.nsv-logo-icon::after {
  width: 2.1rem;
  height: 0.7rem;
}

.nsv-logo-text {
  display: block;
  font-family: "Cinzel Decorative", serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nsv-logo-text span {
  display: block;
  color: var(--nsv-lavender);
  font-size: 0.73rem;
  letter-spacing: 0.16em;
}

.nsv-nav-toggle {
  display: none;
  border: 1px solid rgba(217, 119, 6, 0.4);
  background: rgba(20, 10, 36, 0.88);
  padding: 0.75rem;
  border-radius: 0.9rem;
  cursor: pointer;
}

.nsv-nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--nsv-ivory);
  margin: 0.2rem 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nsv-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.81rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nsv-nav a {
  color: var(--nsv-ivory);
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nsv-nav a:hover,
.nsv-nav a:focus-visible {
  color: #ffd7a3;
  border-color: var(--nsv-cobalt-soft);
}

.nsv-main {
  padding-bottom: 3rem;
}

.nsv-section {
  position: relative;
  background: linear-gradient(180deg, rgba(25, 16, 47, 0.95), rgba(20, 10, 36, 0.95));
  border: 1.5px solid var(--nsv-lead);
  border-radius: 24px 24px 18px 18px;
  box-shadow: var(--nsv-shadow);
  padding: 2rem;
  margin-bottom: 1.7rem;
  overflow: hidden;
}

.nsv-section::after,
.nsv-card::after,
.nsv-footer-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--nsv-glass-strip);
}

.nsv-section h1,
.nsv-section h2,
.nsv-section h3,
.nsv-page-hero h1,
.nsv-article-title {
  font-family: "Cinzel Decorative", serif;
  line-height: 1.12;
}

.nsv-section h2,
.nsv-article-title {
  font-size: clamp(1.2rem, 3vw, 2.35rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.9rem;
}

.nsv-kicker {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f6c66a;
}

.nsv-button,
.nsv-link-button,
.nsv-form button,
.nsv-age-actions button,
.nsv-cookie-banner button,
.nsv-back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border: 2px solid #1a1a1a;
  color: var(--nsv-ivory);
  font-weight: 700;
  font-family: "Cinzel Decorative", serif;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--nsv-cobalt) 0 50%, var(--nsv-ruby) 50% 100%);
  box-shadow: inset 0 0 0 1px rgba(245, 240, 224, 0.08), 0 12px 28px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
}

.nsv-button:hover,
.nsv-link-button:hover,
.nsv-form button:hover,
.nsv-age-actions button:hover,
.nsv-cookie-banner button:hover,
.nsv-back-top:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--nsv-emerald) 0 50%, var(--nsv-amber) 50% 100%);
}

.nsv-button[data-nsv-button="ghost"],
.nsv-cookie-banner button[data-nsv-cookie="reject"] {
  background: rgba(20, 10, 36, 0.95);
}

.nsv-lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.nsv-calculator-panel {
  padding: 1.2rem;
  background: rgba(10, 6, 24, 0.56);
  border-radius: 18px;
  border: 1px solid rgba(59, 95, 201, 0.35);
}

.nsv-calculator-copy p {
  margin-top: 0.1rem;
}

.nsv-form {
  display: grid;
  gap: 1rem;
}

.nsv-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.96rem;
  color: var(--nsv-lavender);
}

.nsv-form input,
.nsv-form select,
.nsv-form textarea {
  width: 100%;
  border: 1px solid rgba(180, 83, 9, 0.36);
  border-radius: 14px;
  background: rgba(245, 240, 224, 0.06);
  color: var(--nsv-ivory);
  padding: 0.9rem 1rem;
  font: inherit;
}

.nsv-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.nsv-result-card {
  min-width: 0;
  border: 1px solid rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.08);
  border-radius: 16px;
  padding: 0.95rem;
}

.nsv-result-label {
  display: block;
  color: var(--nsv-lavender);
  font-size: 0.82rem;
}

.nsv-result-value {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.nsv-hero,
.nsv-page-hero {
  position: relative;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.nsv-hero::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 1.8rem;
  width: min(400px, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      rgba(30, 64, 175, 0.12) 0 12.5%,
      rgba(159, 18, 57, 0.12) 12.5% 25%,
      rgba(4, 120, 87, 0.12) 25% 37.5%,
      rgba(180, 83, 9, 0.12) 37.5% 50%,
      rgba(30, 64, 175, 0.12) 50% 62.5%,
      rgba(159, 18, 57, 0.12) 62.5% 75%,
      rgba(4, 120, 87, 0.12) 75% 87.5%,
      rgba(180, 83, 9, 0.12) 87.5% 100%
    );
  filter: blur(1px);
}

.nsv-hero-inner,
.nsv-page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.nsv-arch-line {
  width: min(200px, 42vw);
  height: 28px;
  border: 2px solid rgba(246, 198, 106, 0.82);
  border-bottom: none;
  border-radius: 999px 999px 0 0;
  margin: 0 auto 1.2rem;
}

.nsv-hero h1,
.nsv-page-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0;
}

.nsv-hero p,
.nsv-page-hero p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--nsv-lavender);
  font-size: 1.06rem;
}

.nsv-trust-row,
.nsv-counter-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.nsv-trust-pill,
.nsv-counter-pill,
.nsv-feature-pill,
.nsv-payment-pill,
.nsv-reg-badge {
  min-width: 0;
  border: 1px solid rgba(245, 240, 224, 0.14);
  background: rgba(245, 240, 224, 0.06);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: var(--nsv-ivory);
}

.nsv-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.nsv-mosaic {
  position: relative;
  min-height: 260px;
  margin-top: 2rem;
}

.nsv-mini-card {
  position: absolute;
  width: min(190px, 42vw);
  padding: 0.8rem;
  background: rgba(20, 10, 36, 0.94);
  border: 1.5px solid var(--nsv-lead);
  border-top: 2px solid rgba(246, 198, 106, 0.76);
  border-radius: 18px 18px 12px 12px;
  box-shadow: var(--nsv-shadow);
}

.nsv-mini-card:nth-child(1) { left: 0; top: 30px; transform: rotate(-8deg); }
.nsv-mini-card:nth-child(2) { right: 4%; top: 12px; transform: rotate(9deg); }
.nsv-mini-card:nth-child(3) { left: 6%; bottom: 12px; transform: rotate(6deg); }
.nsv-mini-card:nth-child(4) { right: 0; bottom: 14px; transform: rotate(-7deg); }

.nsv-logo-wrap {
  padding: 6px;
  width: min(140px, 100%);
  max-width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
  flex-shrink: 0;
}

.nsv-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.nsv-mini-rating {
  margin-top: 0.6rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.8rem;
  color: #f6c66a;
  letter-spacing: 0.08em;
}

.nsv-card-grid,
.nsv-spotlight-grid,
.nsv-contact-grid,
.nsv-review-grid {
  display: grid;
  gap: 1.1rem;
}

.nsv-card,
.nsv-spotlight-card,
.nsv-footer-box,
.nsv-query,
.nsv-contact-panel,
.nsv-review-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 10, 36, 0.98), rgba(16, 9, 30, 0.98));
  border: 1.5px solid var(--nsv-lead);
  border-top: 2px solid rgba(246, 198, 106, 0.76);
  border-radius: 20px 20px 14px 14px;
  box-shadow: var(--nsv-shadow);
  overflow: hidden;
}

.nsv-card {
  padding: 1.3rem;
}

.nsv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nsv-card-top > * {
  min-width: 0;
}

.nsv-brand-column {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.nsv-brand-meta {
  min-width: 0;
}

.nsv-brand-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.nsv-brand-icon {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--nsv-cobalt-soft), var(--nsv-amber-soft));
  border: 1px solid rgba(245, 240, 224, 0.14);
}

.nsv-brand-name {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.nsv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.22), rgba(180, 83, 9, 0.18));
  border: 1px solid rgba(180, 83, 9, 0.35);
  border-radius: 999px;
  color: #ffe7bc;
}

.nsv-brand-meta p {
  margin: 0.4rem 0 0;
  color: var(--nsv-lavender);
}

.nsv-score {
  text-align: right;
}

.nsv-score-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.nsv-score-label {
  color: #ffe7bc;
  font-size: 0.84rem;
}

.nsv-bonus-row,
.nsv-card-actions,
.nsv-detail-grid,
.nsv-rg-grid,
.nsv-footer-legal,
.nsv-footer-icons,
.nsv-inline-links,
.nsv-about-metrics,
.nsv-disclaimer-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.nsv-bonus-row,
.nsv-card-actions,
.nsv-detail-grid,
.nsv-disclaimer-row {
  margin-top: 1rem;
}

.nsv-bonus {
  flex: 1 1 260px;
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(245, 240, 224, 0.06);
  border: 1px solid rgba(159, 18, 57, 0.28);
  font-weight: 600;
}

.nsv-card-actions {
  align-items: center;
  justify-content: space-between;
}

.nsv-card-actions p,
.nsv-disclaimer-row p {
  margin: 0;
  flex: 1 1 240px;
  min-width: 0;
  color: var(--nsv-lavender);
  font-size: 0.88rem;
}

.nsv-detail-toggle {
  margin-top: 1rem;
  border-top: 1px solid rgba(245, 240, 224, 0.08);
  padding-top: 1rem;
}

.nsv-detail-toggle summary {
  list-style: none;
  cursor: pointer;
  font-family: "Cinzel Decorative", serif;
  color: #f6c66a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nsv-detail-toggle summary::-webkit-details-marker {
  display: none;
}

.nsv-detail-grid {
  align-items: start;
}

.nsv-detail-column {
  flex: 1 1 270px;
  min-width: 0;
}

.nsv-detail-column h3 {
  margin: 0 0 0.6rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.nsv-detail-column ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--nsv-lavender);
}

.nsv-detail-column p {
  margin: 0.55rem 0 0;
}

.nsv-spotlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.nsv-spotlight-card,
.nsv-contact-panel,
.nsv-review-panel {
  padding: 1.3rem;
}

.nsv-spotlight-card p,
.nsv-contact-panel p,
.nsv-review-panel p {
  color: var(--nsv-lavender);
}

.nsv-timeline {
  position: relative;
  margin-top: 1.2rem;
  padding-left: 1.6rem;
}

.nsv-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.42rem;
  width: 2px;
  background: linear-gradient(180deg, var(--nsv-cobalt-soft), var(--nsv-amber-soft));
}

.nsv-timeline-step {
  position: relative;
  padding: 0 0 1.4rem 1.1rem;
}

.nsv-timeline-step::before {
  content: "";
  position: absolute;
  left: -1.45rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--nsv-amber-soft);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.nsv-timeline-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.06rem;
  font-family: "Cinzel Decorative", serif;
  letter-spacing: 0.05em;
}

.nsv-query-list {
  display: grid;
  gap: 0.95rem;
}

.nsv-query button {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--nsv-ivory);
  font: inherit;
  cursor: pointer;
}

.nsv-query button span:first-child {
  font-family: "Cinzel Decorative", serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}

.nsv-query button span:last-child {
  font-size: 1.35rem;
  line-height: 1;
}

.nsv-query-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 1.2rem;
}

.nsv-query[data-nsv-open="true"] .nsv-query-answer {
  max-height: 320px;
  padding-bottom: 1.1rem;
}

.nsv-query-answer p {
  margin: 0.7rem 0 0;
  color: var(--nsv-lavender);
}

.nsv-rg-grid {
  align-items: start;
}

.nsv-rg-item {
  flex: 1 1 280px;
  min-width: 0;
}

.nsv-rg-quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--nsv-amber-soft);
  background: rgba(245, 240, 224, 0.05);
  color: #f8e7c4;
}

.nsv-rg-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.nsv-rg-checklist li {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  background: rgba(245, 240, 224, 0.05);
  border: 1px solid rgba(245, 240, 224, 0.1);
}

.nsv-about-metrics {
  margin: 1rem 0 1.3rem;
}

.nsv-counter-pill strong {
  font-size: 1.4rem;
  display: block;
}

.nsv-footer {
  padding: 0 0 2.2rem;
}

.nsv-footer-box {
  padding: 1.7rem;
}

.nsv-footer-title {
  margin: 0;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.nsv-footer-icons {
  margin: 1rem 0;
}

.nsv-trust-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 240, 224, 0.06);
  border: 1px solid rgba(245, 240, 224, 0.12);
}

.nsv-trust-icon strong {
  font-family: "Cinzel Decorative", serif;
}

.nsv-footer-legal,
.nsv-inline-links {
  align-items: center;
  color: var(--nsv-lavender);
  font-size: 0.92rem;
}

.nsv-inline-links a {
  color: #ffe7bc;
}

.nsv-footer-note {
  margin-top: 0.9rem;
  color: var(--nsv-lavender);
}

.nsv-page-hero {
  padding-top: 5rem;
}

.nsv-page-hero .nsv-page {
  position: relative;
  z-index: 1;
}

.nsv-page-hero::before {
  content: "";
  position: absolute;
  inset: auto 12% 0 auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(30, 64, 175, 0.1), rgba(159, 18, 57, 0.1), rgba(4, 120, 87, 0.1), rgba(180, 83, 9, 0.1));
}

.nsv-contact-grid,
.nsv-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nsv-article-body {
  color: var(--nsv-lavender);
}

.nsv-article-body h2,
.nsv-article-body h3 {
  color: var(--nsv-ivory);
}

.nsv-article-body section {
  margin-bottom: 1.4rem;
}

.nsv-article-body ul {
  padding-left: 1.2rem;
}

.nsv-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nsv-cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  width: min(360px, calc(100% - 20px));
  padding: 14px;
  border-radius: 18px;
  background: rgba(20, 10, 36, 0.98);
  border: 1.5px solid var(--nsv-lead);
  box-shadow: var(--nsv-shadow);
  display: grid;
  gap: 12px;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nsv-cookie-banner[data-nsv-cookie-state="shown"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nsv-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nsv-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(7, 4, 18, 0.94);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nsv-age-overlay[data-nsv-age-state="accepted"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nsv-age-box {
  width: min(520px, 100%);
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(20, 10, 36, 0.98), rgba(11, 7, 25, 0.98));
  border: 1.5px solid var(--nsv-lead);
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--nsv-shadow);
}

.nsv-age-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.nsv-back-top {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nsv-back-top[data-nsv-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nsv-header-inner {
    position: relative;
  }

  .nsv-nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nsv-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 40px));
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 6, 24, 0.98);
    border: 1px solid rgba(180, 83, 9, 0.3);
    border-radius: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nsv-nav.nsv-nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nsv-lead-grid,
  .nsv-contact-grid,
  .nsv-review-grid,
  .nsv-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .nsv-hero {
    padding-top: 5rem;
  }

  .nsv-mosaic {
    min-height: 430px;
  }

  .nsv-mini-card:nth-child(1) { left: 4%; top: 10px; }
  .nsv-mini-card:nth-child(2) { right: 4%; top: 28px; }
  .nsv-mini-card:nth-child(3) { left: 6%; bottom: 92px; }
  .nsv-mini-card:nth-child(4) { right: 4%; bottom: 70px; }
}

@media (max-width: 700px) {
  .nsv-page {
    width: min(var(--nsv-max), calc(100% - 20px));
  }

  .nsv-section,
  .nsv-card,
  .nsv-spotlight-card,
  .nsv-footer-box,
  .nsv-contact-panel,
  .nsv-review-panel {
    padding: 1.2rem;
  }

  .nsv-card-top,
  .nsv-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nsv-score {
    text-align: left;
  }

  .nsv-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  body { overflow-x: hidden; }
  .nsv-page { width: min(var(--nsv-max, 1180px), calc(100% - 12px)); }
  .nsv-header-inner { padding: 0.65rem 0.75rem; gap: 0.5rem; position: relative; }
  .nsv-logo { min-width: 0; align-items: center; }
  .nsv-logo-text { font-size: clamp(0.58rem, 2.9vw, 0.78rem); letter-spacing: 0.05em; line-height: 1.2; word-break: break-word; overflow-wrap: anywhere; }
  .nsv-logo-icon { width: 2.25rem; height: 2.25rem; flex-shrink: 0; }
  .nsv-nav { left: 8px; right: 8px; padding: 12px; }
  .nsv-nav a { font-size: 0.72rem; letter-spacing: 0.1em; padding-block: 0.2rem; }
  .nsv-hero, .nsv-page-hero { padding: 4.75rem 0.6rem 2.5rem; }
  .nsv-hero h1, .nsv-page-hero h1 { font-size: clamp(1.05rem, 5.8vw, 2rem); letter-spacing: 0.055em; word-break: break-word; overflow-wrap: anywhere; }
  .nsv-kicker { font-size: 0.65rem; letter-spacing: 0.12em; max-width: 100%; }
  .nsv-cta-row { gap: 0.65rem; margin-top: 1.35rem; }
  .nsv-button, .nsv-link-button, .nsv-form button, .nsv-age-actions button, .nsv-cookie-banner button, .nsv-back-top { padding: 0.72rem 1rem; font-size: 0.88rem; }
  .nsv-section { padding: 0.95rem 0.75rem; border-radius: 18px; margin-bottom: 1.25rem; }
  .nsv-section h2 { font-size: clamp(1.02rem, 4.8vw, 1.55rem); letter-spacing: 0.06em; word-break: break-word; overflow-wrap: anywhere; }
  .nsv-methodology-table, table { font-size: 0.78rem; table-layout: auto; width: max-content; min-width: 100%; }
  .nsv-methodology-table thead th, table thead th { white-space: nowrap; }
  .nsv-methodology-table th, .nsv-methodology-table td, table th, table td { padding: 0.5rem 0.4rem; word-break: normal; overflow-wrap: break-word; hyphens: none; }
  .nsv-table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nsv-card { padding: 0.95rem 0.75rem; border-radius: 18px; }
  .nsv-card:hover, .nsv-card[data-hover="active"] { transform: none; }
  .nsv-card-top { flex-wrap: wrap; align-items: flex-start; gap: 0.55rem; }
  .nsv-score { text-align: left; flex: 1 1 auto; min-width: 0; }
  .nsv-badge { font-size: 0.65rem; padding: 0.32rem 0.55rem; max-width: 100%; white-space: normal; text-align: left; }
  .nsv-logo-wrap { width: min(140px, 100%); max-width: 100%; height: auto; min-height: 4.25rem; }
  .nsv-brand-meta { min-width: 0; width: 100%; }
  .nsv-bonus { padding: 0.65rem 0.7rem; font-size: 0.88rem; }
  .nsv-cookie-banner { padding: 10px 10px; gap: 10px; font-size: 0.84rem; }
  .nsv-footer-box { padding: 1.15rem 0.75rem; border-radius: 20px; }
  .nsv-footer-title { letter-spacing: 0.08em; font-size: clamp(0.95rem, 4vw, 1.2rem); word-break: break-word; }
  .nsv-back-top { right: 0.45rem; bottom: 5.25rem; width: 2.65rem; height: 2.65rem; font-size: 1.05rem; }
  .nsv-age-overlay { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; }
  .nsv-age-box { padding: 1.1rem 0.75rem; }
  .nsv-age-box h2 { font-size: clamp(1rem, 4.5vw, 1.35rem); letter-spacing: 0.06em; word-break: break-word; }
  .nsv-rg-item { min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
  .nsv-rg-checklist { gap: 0.55rem; padding-inline: 0; }
  .nsv-rg-checklist li, .nsv-rg-checklist p { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; min-width: 0; }
  .nsv-reg-badge { white-space: normal; text-align: center; padding: 0.28rem 0.5rem; font-size: 0.72rem; max-width: 100%; flex-shrink: 1; }
}
@media (max-width: 380px) {
  .nsv-page { width: min(var(--nsv-max, 1180px), calc(100% - 8px)); }
  .nsv-logo-text { font-size: 0.52rem; letter-spacing: 0.02em; }
  .nsv-hero h1, .nsv-page-hero h1 { font-size: clamp(1rem, 5.2vw, 1.75rem); }
  .nsv-header-inner { padding: 0.55rem 0.55rem; }
  .nsv-section, .nsv-card, .nsv-footer-box { padding-inline: 0.65rem; }
  .nsv-methodology-table th, .nsv-methodology-table td, table th, table td { padding: 0.42rem 0.32rem; font-size: 0.72rem; }
}
@media (max-width: 900px) {
  .nsv-header-inner { position: relative; }
}
