/* ════════════════════════════════════════════════════════════════
   NOVAVOLT BETA — Apple-inspired clean design
   No neon. No glow. Just clear, honest, premium.
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; background: #0f172a; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── Design tokens ─── */
:root {
  --bg:      #f5f5f7;
  --bg2:     #ffffff;
  --bg3:     #fafafa;
  --sf:      #ffffff;
  --sf2:     #f5f5f7;
  --sf3:     #ffffff;
  --t:       #1d1d1f;
  --t2:      #6e6e73;
  --t3:      #b0b0b5;
  --bd:      #d2d2d7;
  --bd2:     #b8b8bf;
  --bd3:     #e5e5ea;
  --p:       #0071e3;
  --p-l:     #2997ff;
  --p-d:     #0051a8;
  --p-dd:    #003676;
  --glow:    rgba(0,113,227,.12);
  --sh:      0 4px 24px rgba(0,0,0,.08);
  --sh-lg:   0 8px 40px rgba(0,0,0,.10);
  --nb:      rgba(255,255,255,.92);
  --r:       12px;
  --rl:      18px;
  --rx:      20px;
  --fd: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --fb: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.25,.1,.25,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

html, body {
  background: var(--bg);
  color: var(--t);
}
html {
  /* Match footer so overscroll / page-end never shows white */
  background: #0f172a !important;
}
body {
  font-family: var(--fb);
  line-height: 1.6;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* Page content fills all vertical space so the footer is always flush at the bottom */
#page-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.site-footer {
  margin-top: auto;
}

/* ─── Kill ALL animated background elements ─── */
#nvBg, #bg, .nv-glow, .bg-glow, .nv-vinyl, .vinyl,
#nvEqCanvas, #eq-canvas, #nvWaveSvg, #wave-svg,
#nvNotes, #notes, .nv-note, .note,
.nv-g1, .nv-g2, .nv-g3,
.bg-g1, .bg-g2, .bg-g3,
.nv-v1, .nv-v2, .v1, .v2 {
  display: none !important;
}
.site-bg { display: none !important; }

a, button, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--bd2); border-radius: 3px; }
::selection { background: var(--p); color: #fff; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fd);
  color: var(--t);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.1;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: 24px; }
p { color: var(--t2); line-height: 1.65; }
a { color: var(--p); transition: opacity .2s; }
a:hover { opacity: .8; }
em { font-style: normal; color: var(--t); }

.section-kicker, .nv-section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.section-h2, .nv-section-h2 {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--t);
  text-wrap: balance;
  margin-bottom: 16px;
  font-weight: 700;
}
.section-h2 em, .nv-section-h2 em { color: var(--p); }
.section-sub, .nv-section-sub {
  font-size: 19px;
  color: var(--t2);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.55;
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn, .nv-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -.01em;
  transition: all .2s var(--ease);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn svg, .nv-btn svg { width: 16px; height: 16px; transition: transform .2s; }
.nv-btn .nv-wa-icon { width: 18px; height: 18px; }

.btn-primary, .nv-btn-primary {
  background: var(--p);
  color: #fff;
}
.btn-primary:hover, .nv-btn-primary:hover {
  background: var(--p-d);
  color: #fff;
}
.btn-primary:hover svg, .nv-btn-primary:hover svg { transform: translateX(2px); }

.btn-ghost, .nv-btn-ghost, .btn-secondary {
  background: transparent;
  border: 1px solid var(--bd);
  color: var(--t);
}
.btn-ghost:hover, .nv-btn-ghost:hover, .btn-secondary:hover {
  border-color: var(--bd2);
  background: var(--sf2);
  color: var(--t);
}
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg, .nv-btn-lg { padding: 11px 22px; font-size: 15px; }
.btn:disabled, .nv-btn:disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
@media (hover: none) {
  .btn:hover, .nv-btn:hover,
  .btn-primary:hover, .nv-btn-primary:hover { transform: none !important; }
}

/* ════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════ */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 7px;
  letter-spacing: -.005em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r);
  background: var(--sf);
  border: 1px solid var(--bd);
  color: var(--t);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--bd2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}
.form-textarea { min-height: 96px; resize: vertical; }

/* Password field with show/hide toggle */
.password-input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
}
.password-input-wrapper .form-input {
  grid-area: 1 / 1;
  padding-right: 44px;
}
.password-toggle-btn {
  grid-area: 1 / 1;
  justify-self: end;
  align-self: center;
  margin-right: 10px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--t2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0;
  transition: color .15s;
}
.password-toggle-btn:hover { color: var(--t); }
.form-hint { display: block; font-size: 12px; color: var(--t3); margin-top: 5px; }
.form-label-req { color: var(--p); }
.form-label-opt { font-size: 11px; font-weight: 400; color: var(--t3); letter-spacing: 0; }

.phone-input-group {
  display: flex;
  border-radius: var(--r);
  border: 1px solid var(--bd);
  overflow: hidden;
  background: var(--sf);
  transition: border-color .2s, box-shadow .2s;
}
.phone-input-group:focus-within {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.15);
}
.phone-code-select {
  flex-shrink: 0;
  width: 160px;
  padding: 12px 28px 12px 14px;
  border: none;
  border-right: 1px solid var(--bd);
  background: transparent;
  color: var(--t);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.phone-code-select:focus { outline: none; }
.phone-local-input { flex: 1; border: none !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }

.form-input.is-invalid, .form-input.err {
  border-color: #ef4444;
  animation: shake .4s;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* ════════════════════════════════════════════════
   CARDS & ALERTS
═══════════════════════════════════════════════════ */
.card, .surface-card {
  padding: 24px;
  border-radius: var(--rx);
  background: var(--sf);
  border: 1px solid var(--bd3);
  box-shadow: var(--sh);
}
.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border-radius: var(--r);
  background: var(--sf);
  border: 1px solid var(--bd3);
  font-size: 14px;
  color: var(--t);
  margin-bottom: 16px;
}
.alert-icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.alert-success { background: #f0faf5; border-color: #34c759; color: #1a7a3a; }
.alert-error   { background: #fff5f5; border-color: #ef4444; color: #b91c1c; }
.alert-info    { background: #f0f7ff; border-color: var(--p); color: var(--p-d); }
.alert-warn    { background: #fffbeb; border-color: #f59e0b; color: #92400e; }.alert-content { flex: 1; min-width: 0; }
.alert-content p { margin: 0; color: inherit; }

/* ════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  padding: 0;
  pointer-events: none;
}
.navbar > * { pointer-events: auto; }
.navbar .container { padding: 0 24px; }

.navbar-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Single clean bar — no glow, no gradient border, no drop shadow */
.navbar-shell {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 52px;
  padding: 0 20px;
  background: var(--nb);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--bd3);
  border-radius: 0 !important;
  box-shadow: none !important;
}
.navbar-shell::before,
.navbar-shell::after { display: none !important; }

.navbar.is-scrolled { padding: 0; }
.navbar.is-scrolled .navbar-shell {
  background: var(--nb);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--bd3);
  box-shadow: none !important;
}
/* Light mode overrides */
.navbar-shell {
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.1);
}
.navbar.is-scrolled .navbar-shell {
  background: rgba(255,255,255,.96);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--t);
  transition: opacity .2s;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-brand:hover { opacity: .7; color: var(--t); transform: none; }
.navbar-brand:hover .brand-mark { transform: none; }
.navbar-brand:hover .brand-logo { transform: none; opacity: .75; filter: none; }

.brand-mark, .logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
  transition: none;
}
.brand-mark::after, .logo-mark::after { display: none !important; }
.brand-mark svg, .logo-mark svg { width: 16px; height: 16px; color: #fff; position: relative; z-index: 1; }
.brand-mark span { display: none; }

.brand-logo {
  height: 28px; width: auto;
  filter: none;
  transition: opacity .2s;
}
.brand-logo { filter: none; }
.mobile-nav-brand .brand-logo { height: 28px; }

.brand-copy { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: none;
}
.brand-nova { color: var(--t); }
.brand-volt { color: var(--p); }
.mobile-nav-brand,
.mobile-nav-title {
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.025em;
  text-transform: none;
  font-style: normal;
}

.navbar-nav {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 13px;
  border-radius: 8px;
  color: var(--t2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: color .15s, background .15s;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  box-shadow: none;
}
.nav-link:hover { color: var(--t); background: rgba(0,0,0,.05); }.nav-link.is-active { color: var(--t); font-weight: 600; background: transparent; box-shadow: none; }
.nav-link { color: var(--t2); }
.nav-link:hover { background: rgba(0,0,0,.05); color: var(--t); }
.nav-link.is-active { color: var(--t); }

.nav-divider {
  width: 1px; height: 18px;
  background: var(--bd3);
  margin: 0 4px;
  align-self: center;
}
.nav-divider { background: rgba(0,0,0,.1); }

/* Nav pill */
.nav-link-pill, .nav-link-pill-activate {
  padding: 7px 16px;
  border-radius: 980px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t);
  background: transparent;
  border: 1px solid var(--bd);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: none;
}
.nav-link-pill:hover, .nav-link-pill-activate:hover {
  background: var(--sf2);
  border-color: var(--bd2);
  color: var(--t);
  box-shadow: none;
}
.nav-link-pill.is-active, .nav-link-pill-activate.is-active,
.nav-link-pill.is-active, .nav-link-pill-activate.is-active {
  background: var(--p);
  border-color: var(--p);
  color: #fff;
  box-shadow: none;
}
.nav-link-pill { border-color: var(--bd); }
.nav-link-pill:hover { background: var(--sf2); }

/* Theme toggle */
.theme-toggle { padding: 6px; border-radius: 8px; transition: background .2s; }
.theme-toggle:hover { background: rgba(0,0,0,.06); }.theme-toggle-track {
  background: var(--bd3);
  border-color: var(--bd);
  box-shadow: none;
}
.theme-toggle-track {
  width: 36px; height: 20px;
  border-radius: 980px;
  background: var(--bd3);
  border: 1px solid var(--bd);
  position: relative;
  transition: background .2s;
  display: flex;
  align-items: center;
  padding: 2px;
}
.theme-toggle-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--t3);
  transition: transform .2s, background .2s;
}.theme-toggle-icon { display: none; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  padding: 7px;
  border-radius: 8px;
  border: 1px solid var(--bd);
  color: var(--t);
  transition: all .2s;
  background: none;
}
.mobile-menu-toggle:hover { background: var(--sf2); }
.mobile-menu-toggle { border-color: var(--bd); color: var(--t); background: none; }
.mobile-menu-toggle:hover { background: var(--sf2); border-color: var(--bd2); color: var(--t); }

/* Nav cart badge */
.nav-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 980px;
  background: var(--p);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 290;
  background: var(--nb);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 24px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--r);
  color: var(--t);
  font-size: 18px;
  font-weight: 500;
  transition: background .2s;
  letter-spacing: -.01em;
}
.mobile-nav-link:hover { background: var(--sf2); }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bd3);
}
.mobile-nav-close {
  padding: 8px;
  border-radius: 50%;
  color: var(--t2);
  transition: background .2s;
}
.mobile-nav-close:hover { background: var(--sf2); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--bd3);
}
.mobile-nav-actions .nv-btn { justify-content: center; }

@media (max-width: 800px) {
  .navbar-nav,
  .nav-divider,
  .theme-toggle { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; }
  .navbar-shell { gap: 12px; }
}

/* ════════════════════════════════════════════════
   PAGE LAYOUT
═══════════════════════════════════════════════════ */
.landing-main, .page-main {
  padding-top: 52px;
  min-height: 100vh;
}
.nv-section { padding: 80px 0; }

/* ════════════════════════════════════════════════
   HERO — Apple-style: bold text, clean layout
═══════════════════════════════════════════════════ */
.nv-hero, .nv-hero-split {
  padding: 80px 0 72px;
  background: var(--bg2);
  border-bottom: 1px solid var(--bd3);
}
.nv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.nv-hero-content { max-width: 540px; }
.nv-h1 {
  font-family: var(--fd);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.04em;
  color: var(--t);
  margin-bottom: 20px;
}
.nv-h1 em { color: var(--p); font-style: normal; }

/* CTA group */
.nv-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.nv-cta-btn-spotify,
.nv-cta-btn-ms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  transition: background .2s, color .2s;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}
.nv-cta-btn-spotify { background: #1db954; }
.nv-cta-btn-spotify:hover { background: #1aa34a; color: #fff; opacity: 1; }
.nv-cta-btn-ms { background: var(--p); }
.nv-cta-btn-ms:hover { background: var(--p-d); color: #fff; opacity: 1; }

.nv-cta-btn-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.nv-cta-arrow { opacity: .7; margin-left: 2px; width: 18px; height: 18px; }

/* Nova AI CTA */
.nv-ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 10px 12px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  border: 1px solid var(--bd);
  background: var(--sf);
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer;
}
.nv-ai-cta:hover {
  border-color: var(--bd2);
  background: var(--sf2);
  color: var(--t);
}
.nv-ai-cta-glow { display: none !important; }
.nv-ai-cta-orb {
  position: relative;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.nv-ai-cta-orb img {
  width: 24px; height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.nv-ai-cta-orb-dot {
  position: absolute;
  bottom: 0; right: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #34c759;
  border: 2px solid var(--sf);
}
.nv-ai-cta-label { letter-spacing: -.01em; }

/* Feedback link */
.nv-cta-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--t3);
  padding: 6px 4px;
  transition: color .2s;
  text-decoration: none;
}
.nv-cta-feedback:hover { color: var(--t2); opacity: 1; }
.nv-cta-feedback svg { width: 14px; height: 14px; }

/* Hero visual */
.nv-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 380px;
}
.nv-hero-cards-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.nv-pass--spotify,
.nv-pass--office,
.nv-pass--adobe {
  position: absolute;
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: 24px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.nv-pass--spotify { width: 130px; height: 130px; top: 40px; left: 40px; }
.nv-pass--office  { width: 130px; height: 130px; top: 20px; right: 40px; }
.nv-pass--adobe   { width: 110px; height: 110px; bottom: 60px; left: 50%; transform: translateX(-50%); }

.nv-pass-icon-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.nv-pass-icon-halo { display: none !important; }
.nv-pass-icon-img  { width: 64px; height: 64px; object-fit: contain; }
.nv-pass-icon-img--office { width: 80px; height: 50px; }
.nv-pass-icon-img--adobe  { width: 54px; height: 54px; }

/* Subtle gentle float — no glow */
.nv-pass--spotify { animation: floatA 6s ease-in-out infinite; }
.nv-pass--office  { animation: floatB 7s ease-in-out infinite; }
.nv-pass--adobe   { animation: floatC 5.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatC { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

@media (max-width: 820px) {
  .nv-hero, .nv-hero-split { padding: 56px 0 48px; }
  .nv-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .nv-hero-visual { height: 240px; }
  .nv-hero-content { max-width: 100%; }
  .nv-h1 { font-size: clamp(36px, 8vw, 52px); }
  .nv-pass--spotify { width: 100px; height: 100px; top: 20px; left: 20px; }
  .nv-pass--office  { width: 100px; height: 100px; top: 10px; right: 20px; }
  .nv-pass--adobe   { width: 84px; height: 84px; }
  .nv-pass-icon-img { width: 48px; height: 48px; }
  .nv-pass-icon-img--office { width: 60px; height: 38px; }
}

/* ════════════════════════════════════════════════
   FEATURED PRODUCTS SECTION
═══════════════════════════════════════════════════ */
.nv-fp-section {
  padding: 72px 0;
  background: var(--bg);
}
.nv-fp-header {
  text-align: center;
  margin-bottom: 40px;
}
.nv-fp-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--p);
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
}
.nv-fp-kicker-shine { display: none !important; }
.nv-fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.nv-fp-card {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.nv-fp-card:hover {
  border-color: var(--bd);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.nv-fp-icon-wrap {
  height: 42px;
  display: flex;
  align-items: center;
}
.nv-fp-logo { height: 30px; width: auto; object-fit: contain; }
.nv-fp-logo--wide { height: 26px; }
.nv-fp-logo--box { height: 34px; width: 34px; object-fit: cover; }
.nv-fp-body { flex: 1; }
.nv-fp-name { font-size: 14.5px; font-weight: 600; color: var(--t); margin-bottom: 10px; line-height: 1.3; }
.nv-fp-feats { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.nv-fp-feats li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.4;
}
.nv-fp-feats li svg { width: 14px; height: 14px; flex-shrink: 0; stroke: #34c759; margin-top: 2px; }
.nv-fp-btn {
  display: block;
  text-align: center;
  padding: 11px 0;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  background: var(--p);
  color: #fff;
  transition: background .2s;
  text-decoration: none;
  margin-top: auto;
}
.nv-fp-btn:hover { background: var(--p-d); color: #fff; opacity: 1; }
.nv-fp-footer { text-align: center; margin-top: 28px; }

/* ════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════ */
.nv-rv-section {
  padding: 72px 0;
  background: var(--bg2);
  border-top: 1px solid var(--bd3);
}
.nv-rv-header { text-align: center; margin-bottom: 36px; }
.nv-rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.nv-rv-card {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.nv-rv-card:hover { border-color: var(--bd); box-shadow: var(--sh); }
.nv-rv-card--new { animation: fadeSlide .5s var(--ease-out); }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(8px); } }
.nv-rv-top { display: flex; gap: 12px; align-items: flex-start; }
.nv-rv-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--t);
  flex-shrink: 0;
}
.nv-rv-meta { flex: 1; }
.nv-rv-name { font-size: 14px; font-weight: 600; color: var(--t); display: flex; align-items: center; gap: 6px; margin-bottom: 4px; flex-wrap: wrap; }
.nv-rv-badge {
  font-size: 11px; font-weight: 500;
  color: #34c759;
  background: rgba(52,199,89,.1);
  padding: 2px 7px;
  border-radius: 980px;
}
.nv-rv-stars-row { display: flex; gap: 2px; }
.nv-rv-star { width: 14px; height: 14px; fill: var(--bd2); stroke: none; }
.nv-rv-star.on { fill: #f59e0b; }
.nv-rv-comment { font-size: 14px; color: var(--t2); line-height: 1.55; }
.nv-rv-footer { text-align: center; margin-top: 28px; }

/* ════════════════════════════════════════════════
   PLANS PAGE
═══════════════════════════════════════════════════ */
.plans-page-hero {
  padding: 52px 0 40px;
  background: var(--bg2);
  border-bottom: 1px solid var(--bd3);
  text-align: center;
}
.plans-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 980px;
  background: rgba(59,130,246,.10);
  border: 1px solid rgba(59,130,246,.22);
  color: var(--p);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 18px;
}
.plans-hero-h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--t);
  line-height: 1.1;
  margin: 0 0 14px;
}
.plans-hero-h1 em {
  font-style: normal;
  color: var(--p);
}
.plans-hero-sub {
  font-size: 1rem;
  color: var(--t2);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}
.nv-plans-section { padding: 52px 0; }
.nv-plans-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.nv-plans-section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.nv-plans-section-kicker-icon { width: 26px; height: 26px; object-fit: contain; }
.nv-plans-section-kicker-icon--adobe { width: 24px; height: 24px; }
.nv-plans-section-title {
  font-family: var(--fd);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--t);
  margin-bottom: 8px;
}
.nv-plans-section-sub { font-size: 16px; color: var(--t2); }

.nv-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.nv-plans.one-plan  { max-width: 360px; margin: 0 auto; }
.nv-plans.two-plans { max-width: 620px; margin: 0 auto; }
.nv-plans.four-plans { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .nv-plans.four-plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .nv-plans, .nv-plans.four-plans { grid-template-columns: 1fr; } }

/* Plan card */
.nv-plan {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.nv-plan:hover {
  border-color: var(--bd);
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
}
.nv-plan.feat {
  border-color: var(--p);
  box-shadow: 0 0 0 1px var(--p);
}
.nv-plan-sale-badge {
  position: absolute;
  top: -12px; right: 16px;
  background: #ff3b30;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 980px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.nv-plan-brand-mark {
  height: 30px; width: auto;
  object-fit: contain;
  max-width: 120px;
  margin-bottom: 4px;
}
.nv-plan-brand-mark--wide { max-width: 160px; }
.nv-plan-brand-mark--box  { height: 34px; width: 34px; object-fit: cover; border-radius: 8px; }
.nv-plan-name { font-size: 15px; font-weight: 600; color: var(--t); line-height: 1.3; }
.nv-plan-name-hl { color: var(--p); font-weight: 700; }
.nv-plan-region { font-size: 12px; color: var(--t3); }
.nv-plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}
.nv-price-now { display: flex; align-items: baseline; gap: 1px; }
.nv-plan-price .curr { font-size: 19px; font-weight: 600; color: var(--t); }
.nv-plan-price .amt  { font-size: 40px; font-weight: 700; color: var(--t); letter-spacing: -.03em; line-height: 1; }
.nv-plan-price .dec  { font-size: 19px; font-weight: 600; }
.nv-plan-price .og   { font-size: 15px; color: var(--t2); text-decoration: line-through; text-decoration-color: rgba(150,150,150,.6); font-weight: 400; }
.nv-plan-price .og .dec { font-size: inherit; font-weight: inherit; }
.nv-st-wrap { display: flex; align-items: center; gap: 6px; }
.nv-save-pill {
  font-size: 11px; font-weight: 600;
  color: #34c759;
  background: rgba(52,199,89,.1);
  padding: 2px 8px;
  border-radius: 980px;
}
.nv-plan-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 6px;
}
.nv-plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--t2);
  line-height: 1.4;
}
.nv-plan-feats li svg { width: 15px; height: 15px; flex-shrink: 0; stroke: #34c759; margin-top: 2px; }
.nv-plan-btn {
  display: block;
  text-align: center;
  padding: 10px 0;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all .2s;
  border: 0;
  margin-top: auto;
  width: 100%;
}
.nv-plan-btn-primary { background: var(--p); color: #fff; }
.nv-plan-btn-primary:hover { background: var(--p-d); }
.nv-plan-btn-ghost {
  background: transparent;
  border: 1px solid var(--bd);
  color: var(--t);
}
.nv-plan-btn-ghost:hover { background: var(--sf2); border-color: var(--bd2); }

/* Reseller card icon */
.nv-plan-ico {
  width: 40px; height: 40px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.nv-plan-ico svg { width: 20px; height: 20px; color: var(--t2); }
.nv-plan-desc { font-size: 13px; color: var(--t3); line-height: 1.5; }

/* Spotify plan cards — premium feel */
#spotify .nv-plan { gap: 12px; }
#spotify .nv-plan-brand-mark { height: 34px; }
#spotify .nv-plan-name { font-size: 14px; font-weight: 600; color: var(--t2); letter-spacing: 0; }
#spotify .nv-plan-price { margin: 2px 0 4px; }
#spotify .nv-plan-price .amt { font-size: 42px; }
#spotify .nv-plan-feats li { font-size: 13px; color: var(--t2); gap: 7px; }
#spotify .nv-plan-feats li svg { width: 13px; height: 13px; }
#spotify .nv-plan.feat { border-color: #1db954; box-shadow: 0 0 0 1px #1db954, 0 4px 24px rgba(29,185,84,.10); }
#spotify .nv-save-pill { background: rgba(29,185,84,.12); color: #1db954; }
#spotify .nv-plan-btn-primary { background: #1db954; }
#spotify .nv-plan-btn-primary:hover { background: #1aa34a; }
#adobe .nv-plan-btn-primary { background: #e8472d; }
#adobe .nv-plan-btn-primary:hover { background: #cc3a22; }
#adobe .nv-plan.feat { border-color: #e8472d; box-shadow: 0 0 0 1px #e8472d, 0 4px 24px rgba(232,71,45,.10); }
#adobe .nv-plan:hover { border-color: #e8472d; }
#adobe .nv-plan-name-hl { color: #e8472d; }
#adobe .nv-save-pill { background: rgba(232,71,45,.12); color: #e8472d; }

/* Popular tag */
.nv-popular-tag {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--p);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--sf);
  border-left: 1px solid var(--bd3);
  z-index: 410;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s var(--ease-out);
  overflow: hidden;
  box-shadow: -4px 0 40px rgba(0,0,0,.10);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--bd3);
  flex-shrink: 0;
}
.cart-drawer-title { font-size: 16px; font-weight: 600; color: var(--t); }
.cart-close-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  background: transparent;
  transition: background .2s, color .2s;
}
.cart-close-btn:hover { background: var(--sf2); color: var(--t); }
.cart-close-btn svg { width: 15px; height: 15px; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--t3);
  text-align: center;
}
.cart-empty svg { width: 44px; height: 44px; color: var(--bd2); }
.cart-empty p { font-size: 14px; color: var(--t3); }

.cart-item {
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: var(--r);
  padding: 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cart-item-logo { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13.5px; font-weight: 600; color: var(--t); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-desc { font-size: 12px; color: var(--t2); }
.cart-item-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--t); }

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--bd);
  border-radius: 980px;
  overflow: hidden;
  height: 28px;
}
.qty-btn {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--t);
  transition: background .2s;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--sf3); }
.qty-btn:disabled { opacity: .3; cursor: not-allowed; }
.qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--t);
  border-left: 1px solid var(--bd3);
  border-right: 1px solid var(--bd3);
  line-height: 28px;
  padding: 0 4px;
}
.cart-item-remove {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  transition: background .2s, color .2s;
  flex-shrink: 0;
  align-self: center;
}
.cart-item-remove:hover { background: #fff0f0; color: #ef4444; }.cart-item-remove svg { width: 13px; height: 13px; }

.cart-drawer-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--bd3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-label { font-size: 13px; color: var(--t2); }
.cart-total-val { font-size: 17px; font-weight: 700; color: var(--t); }
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  background: var(--p);
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background .2s;
}
.cart-checkout-btn:hover { background: var(--p-d); }
.cart-checkout-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Cart product meta (in cart drawer detail) */
.cart-drawer-product-meta {
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.cart-drawer-product-meta-logo { width: 42px; height: 42px; object-fit: contain; }
.cart-drawer-product-meta-name { font-size: 14px; font-weight: 600; color: var(--t); }
.cart-drawer-product-meta-desc { font-size: 12px; color: var(--t2); margin-top: 2px; }

/* ════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-box {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 28px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--sh-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: background .2s, color .2s;
}
.modal-close:hover { background: var(--sf2); color: var(--t); }

/* ════════════════════════════════════════════════
   NOVA AI CHAT PANEL
═══════════════════════════════════════════════════ */
.nv-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 68px 20px 20px;
  pointer-events: none;
}
.nv-chat-overlay.is-open {
  display: flex;
  pointer-events: auto;
}
.nv-chat-panel {
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 108px);
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  box-shadow: var(--sh-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.nv-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--bd3);
  flex-shrink: 0;
}
.nv-chat-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nv-chat-head-name { font-size: 14px; font-weight: 600; color: var(--t); }
.nv-chat-head-status {
  font-size: 12px; color: #34c759;
  display: flex; align-items: center; gap: 4px;
}
.nv-chat-head-status::before {
  content: ''; width: 6px; height: 6px;
  background: #34c759; border-radius: 50%;
}
.nv-chat-close {
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: background .2s;
}
.nv-chat-close:hover { background: var(--sf2); }
.nv-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nv-chat-msg { max-width: 85%; display: flex; flex-direction: column; gap: 4px; }
.nv-chat-msg.user { align-self: flex-end; align-items: flex-end; }
.nv-chat-msg.ai   { align-self: flex-start; align-items: flex-start; }
.nv-chat-bubble {
  padding: 9px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.nv-chat-msg.ai   .nv-chat-bubble { background: var(--sf2); border: 1px solid var(--bd3); color: var(--t); border-bottom-left-radius: 4px; }
.nv-chat-msg.user .nv-chat-bubble { background: var(--p); color: #fff; border-bottom-right-radius: 4px; }
.nv-chat-foot {
  display: flex;
  gap: 8px;
  padding: 10px 13px;
  border-top: 1px solid var(--bd3);
  align-items: flex-end;
}
.nv-chat-input {
  flex: 1;
  border: 1px solid var(--bd);
  border-radius: 20px;
  padding: 8px 13px;
  font: inherit;
  font-size: 14px;
  background: var(--sf2);
  color: var(--t);
  resize: none;
  max-height: 100px;
  overflow-y: auto;
  transition: border-color .2s, box-shadow .2s;
}
.nv-chat-input:focus {
  outline: none;
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.12);
}
.nv-chat-send {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  border: 0;
  cursor: pointer;
}
.nv-chat-send:hover { background: var(--p-d); }
.nv-chat-send:disabled { opacity: .4; cursor: not-allowed; }
.nv-chat-send svg { width: 15px; height: 15px; }

/* ════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--t);
  color: rgba(255,255,255,.75);
  padding: 48px 0 28px;
}.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: row; gap: 10px; align-items: center; }
.footer-logo { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5; max-width: 220px; }
.footer-col-title { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.85); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.65); opacity: 1; }

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.rv.visible, .rv.is-visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .04s; }
.d2 { transition-delay: .09s; }
.d3 { transition-delay: .14s; }
.d4 { transition-delay: .19s; }

/* ════════════════════════════════════════════════
   UPGRADE / RENEW
═══════════════════════════════════════════════════ */
.upgrade-page, .renew-page {
  padding: 72px 0;
  background: var(--bg);
  min-height: 100vh;
}
.upgrade-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 32px;
  box-shadow: var(--sh);
}
.upgrade-title { font-size: 22px; font-weight: 700; color: var(--t); margin-bottom: 6px; }
.upgrade-sub { font-size: 14px; color: var(--t2); margin-bottom: 24px; }

.nv-steps { display: flex; flex-direction: column; gap: 24px; }
.nv-step { display: flex; gap: 14px; }
.nv-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--p);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.nv-step-body { flex: 1; }
.nv-step-title { font-size: 14px; font-weight: 600; color: var(--t); margin-bottom: 8px; }

.order-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(52,199,89,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.order-success-icon svg { width: 26px; height: 26px; stroke: #34c759; }

.activation-code-box {
  background: var(--sf2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 14px 18px;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  text-align: center;
  color: var(--t);
  word-break: break-all;
  margin: 10px 0;
}

/* ════════════════════════════════════════════════
   CHECKOUT / ORDER PAGES
═══════════════════════════════════════════════════ */
.checkout-page, .order-page {
  padding: 72px 0;
  min-height: 100vh;
  background: var(--bg);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.checkout-card {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 26px;
  box-shadow: var(--sh);
}
.checkout-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bd3);
}
.order-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bd3);
  color: var(--t2);
}
.order-summary-item:last-child { border-bottom: none; }
.order-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 0 0;
  margin-top: 6px;
  color: var(--t);
}

/* ════════════════════════════════════════════════
   MISC
═══════════════════════════════════════════════════ */
.page-main { padding-top: 52px; }

.nv-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 980px;
  background: rgba(0,113,227,.1);
  color: var(--p);
  border: 1px solid rgba(0,113,227,.18);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.nv-badge-success { background: rgba(52,199,89,.1); color: #34c759; border-color: rgba(52,199,89,.2); }
.nv-badge-warn    { background: rgba(245,158,11,.1); color: #f59e0b; border-color: rgba(245,158,11,.2); }
.nv-badge-error   { background: rgba(239,68,68,.1); color: #ef4444; border-color: rgba(239,68,68,.2); }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid var(--bd);
  border-top-color: var(--p);
  border-radius: 50%;
  animation: spin .65s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.nv-wa-icon { width: 18px; height: 18px; color: #25d366; }
.nv-btn-wa { background: #25d366; color: #fff; }
.nv-btn-wa:hover { background: #1da851; color: #fff; }

.nv-upload-area {
  border: 2px dashed var(--bd);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  color: var(--t2);
  font-size: 14px;
}
.nv-upload-area:hover { border-color: var(--p); background: rgba(0,113,227,.03); }
.nv-upload-area svg { margin: 0 auto 8px; color: var(--t3); }

.nv-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.nv-table th {
  text-align: left;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--bd3);
  background: var(--sf2);
}
.nv-table td { padding: 11px 12px; border-bottom: 1px solid var(--bd3); color: var(--t); }
.nv-table tr:last-child td { border-bottom: none; }
.nv-table tr:hover td { background: var(--sf2); }

/* Page hero for inner pages */
.page-hero {
  padding: 52px 0 36px;
  background: var(--bg2);
  border-bottom: 1px solid var(--bd3);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); }
.page-content {
  padding: 52px 0;
  background: var(--bg);
}
.page-content p { color: var(--t2); font-size: 15px; margin-bottom: 14px; }
.page-content h2 { font-size: 22px; margin: 28px 0 10px; color: var(--t); }

/* ════════════════════════════════════════════════
   LEGAL PAGES (terms, privacy, refund)
═══════════════════════════════════════════════════ */
.legal-shell {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

/* Page header — centered */
.legal-shell .page-header {
  text-align: center;
  margin-bottom: 0.5rem;
}

.legal-shell .page-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(59,130,246,.10);
  color: var(--p);
  margin-bottom: 0.75rem;
}

.legal-shell .page-header h1 {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t);
  margin: 0;
}

/* Policy nav links — plain text, matches "More topics" style */
.policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.policy-link-pill {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--p, #0071e3);
  text-decoration: none;
  transition: opacity .15s;
}

.policy-link-pill:hover {
  opacity: .75;
  text-decoration: underline;
}

/* Legal content card */
.legal-card {
  background: #fff;
  border: 1px solid var(--bd3);
  border-radius: 18px;
  padding: 2rem 2.25rem;
}

.legal-content {
  color: var(--t2);
  font-size: 15px;
  line-height: 1.85;
}

/* ── KEY FIX: override the global h2 clamp for legal sections ── */
.legal-content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t);
  margin: 1.75rem 0 0.4rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0.5rem;
}

.legal-content p {
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 0.6rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.3rem;
  margin: 0.4rem 0 0.75rem;
}

.legal-content li {
  margin-bottom: 0.3rem;
  color: var(--t2);
  font-size: 15px;
}

.legal-content strong {
  color: var(--t);
  font-weight: 600;
}

.legal-content a {
  color: var(--p);
  text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .legal-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .legal-shell .page-header h1 {
    font-size: 1.6rem;
  }

  .legal-content {
    font-size: 14px;
  }

  .legal-content h2 {
    font-size: 1rem;
    margin-top: 1.4rem;
  }

  .legal-content li {
    font-size: 14px;
  }
}

/* ════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nv-section { padding: 52px 0; }
  .nv-fp-section, .nv-rv-section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .nv-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .nv-cta-btn-spotify, .nv-cta-btn-ms { width: 100%; justify-content: center; }
  .checkout-card { padding: 18px 14px; }
  .upgrade-card { padding: 22px 16px; }
  .modal-box { padding: 22px 16px; }
}

/* ════════════════════════════════════════════════
   BETA INDICATOR
═══════════════════════════════════════════════════ */
.nv-beta-bar {
  background: var(--p);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  letter-spacing: .01em;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nv-beta-bar a { color: rgba(255,255,255,.8); text-decoration: underline; font-size: 12px; }
.nv-beta-bar a:hover { color: #fff; }

/* ════════════════════════════════════════════════
   FOOTER — map to footer.php markup
═══════════════════════════════════════════════════ */
.footer-top-glow { display: none !important; }
.footer-shell {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .footer-shell { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-shell { grid-template-columns: 1fr; } }
.footer-brand-block { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; text-align: left; }
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: -.02em;
}
.footer-brand .brand-mark {
  width: 28px; height: 28px;
  background: rgba(255,255,255,.15);
}
.footer-brand .brand-logo { width: 32px; height: 32px; border-radius: 8px; object-fit: cover; filter: none; opacity: 1; flex-shrink: 0; }
.footer-brand .brand-name { text-transform: none; font-size: 15px; letter-spacing: -.02em; }
.footer-brand .brand-nova, .footer-brand .brand-volt { color: rgba(255,255,255,.9); }
.footer-soc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.footer-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 980px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  font-size: 12.5px;
  font-weight: 500;
  transition: background .2s, color .2s;
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
}
.footer-social-badge:hover { background: rgba(255,255,255,.14); color: rgba(255,255,255,.95); }
.footer-social-image { width: 16px; height: 16px; object-fit: contain; }
.footer-email-link { font-size: 12.5px !important; color: rgba(255,255,255,.4) !important; }
.footer-email-link:hover { color: rgba(255,255,255,.75) !important; }

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  text-decoration: none;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.85); }
.footer-col ul li a i { width: 13px; height: 13px; opacity: .5; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: inline-block;
}
.footer-bottom-copy {
  font-size: 11.5px;
  color: rgba(255,255,255,.2);
}

/* Cart drawer panel — map to existing HTML classes */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}
.cart-drawer-overlay.is-open,
.cart-drawer-overlay[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  border: 0;
  cursor: default;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cart-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: var(--sf);
  border-left: 1px solid var(--bd3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -4px 0 32px rgba(0,0,0,.09);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
}
.cart-drawer-overlay.is-open .cart-drawer-panel,
.cart-drawer-overlay[aria-hidden="false"] .cart-drawer-panel {
  transform: translateX(0);
}
.cart-drawer-shell { display: flex; flex-direction: column; height: 100%; }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--bd3);
  flex-shrink: 0;
}
.cart-drawer-eyebrow { font-size: 11px; color: var(--t3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.cart-drawer-head h2 { font-size: 17px; font-weight: 600; color: var(--t); letter-spacing: -.02em; }
.cart-drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2);
  background: var(--sf2);
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.cart-drawer-close:hover { background: rgba(239,68,68,.12); color: #ef4444; }
.cart-drawer-close i,
.cart-drawer-close svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Add-to-cart fly animation ─── */
.fly-ghost {
  position: fixed;
  width: 48px; height: 48px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  will-change: transform, opacity;
}
.fly-sparkle {
  position: fixed;
  width: 6px; height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform, opacity;
}

/* Button feedback when adding */
.is-adding-to-cart {
  transform: scale(.95) !important;
  opacity: .8 !important;
  transition: transform .15s ease, opacity .15s ease !important;
}

/* Cart button shake + badge bump */
@keyframes cart-shake {
  0%,100% { transform: translateX(0) rotate(0deg); }
  20%      { transform: translateX(-3px) rotate(-6deg); }
  40%      { transform: translateX(3px) rotate(6deg); }
  60%      { transform: translateX(-2px) rotate(-3deg); }
  80%      { transform: translateX(2px) rotate(3deg); }
}
@keyframes badge-bump {
  0%,100% { transform: scale(1); }
  40%     { transform: scale(1.5); }
  70%     { transform: scale(.9); }
}
.cart-shake { animation: cart-shake .4s ease !important; }
.is-bumped  { animation: badge-bump .4s cubic-bezier(.34,1.56,.64,1) !important; }

/* ─── Cart drawer: empty state ─── */
.cart-drawer-state-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}
.d-empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.d-empty-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  color: var(--t3);
}
.d-empty-title {
  font-size: 16px; font-weight: 600;
  color: var(--t); margin: 0;
}
.d-empty-msg {
  font-size: 13px; color: var(--t3);
  line-height: 1.5; margin: 0 0 12px;
  max-width: 240px;
}
.d-empty-card .cart-drawer-actions { width: 100%; }
.d-empty-card .btn { width: 100%; justify-content: center; }

/* ─── Cart drawer: item cards ─── */
.cart-drawer-root { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.cart-drawer-state { display: flex; flex-direction: column; flex: 1; }
.cart-drawer-items { padding: 16px 20px; display: flex; flex-direction: column; gap: 0; flex: 1; }

.d-card { padding: 16px 0; border-bottom: 1px solid var(--bd3); }
.d-card:last-child { border-bottom: none; }
.d-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: flex-start;
}
.d-img {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.d-img img { width: 34px; height: 34px; object-fit: contain; }
.d-info { min-width: 0; }
.d-t { font-size: 14px; font-weight: 600; color: var(--t); line-height: 1.3; }
.d-s { font-size: 12px; color: var(--t3); margin-top: 2px; }
.d-price-row { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.d-p { font-size: 15px; font-weight: 700; color: var(--t); }
.d-og { font-size: 14px; color: var(--t2); text-decoration: line-through; text-decoration-color: rgba(150,150,150,.6); }
.d-rm {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t3);
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.d-rm:hover { background: rgba(239,68,68,.08); color: #ef4444; }

/* ─── Cart quantity control ─── */
.cart-quantity-control { margin-top: 10px; }
.cart-quantity-copy { margin-bottom: 4px; }
.cart-quantity-label { font-size: 11px; color: var(--t3); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.cart-quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: 980px;
  overflow: hidden;
  height: 28px;
}
.cart-quantity-button {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500; color: var(--t);
  transition: background .15s;
  flex-shrink: 0;
}
.cart-quantity-button:hover:not(:disabled) { background: var(--bd3); }
.cart-quantity-button:disabled { color: var(--t3); opacity: .4; cursor: not-allowed; }
.cart-quantity-value { min-width: 28px; text-align: center; font-size: 13px; font-weight: 600; color: var(--t); }

/* ─── Cart drawer: footer ─── */
.d-foot {
  padding: 16px 20px 24px;
  border-top: 1px solid var(--bd3);
  flex-shrink: 0;
}
.d-summary { margin-bottom: 14px; }
.d-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--t2);
  padding: 4px 0;
}
.d-summary-row strong { color: var(--t); font-weight: 600; }
.d-summary-meta strong { color: #34c759; }
.d-tot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--bd3);
}
.d-tot-l { font-size: 14px; font-weight: 600; color: var(--t); }
.d-tot-v { font-size: 18px; font-weight: 700; color: var(--t); letter-spacing: -.03em; }
.cart-drawer-actions { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.cart-drawer-checkout-btn { width: 100%; justify-content: center; gap: 6px; }
.d-link {
  font-size: 13px; color: var(--t2); text-align: center;
  padding: 6px; width: 100%;
  transition: color .15s;
  background: none; border: none; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: rgba(0,0,0,.2);
}
.d-link:hover { color: var(--t); text-decoration-color: rgba(0,0,0,.45); }
.d-trust { font-size: 11px; color: var(--t3); display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 6px; }
.d-trust svg { flex-shrink: 0; }

/* ─── Checkout page layout ─── */
.checkout-page-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 860px) { .checkout-page-grid { grid-template-columns: 1fr; } }

.checkout-card { background: var(--sf); border: 1px solid var(--bd3); border-radius: var(--rx); padding: 28px; box-shadow: var(--sh); }
.checkout-card-head { margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--bd3); }
.checkout-eyebrow { font-size: 11px; color: var(--t3); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.checkout-title { font-size: 22px; font-weight: 700; color: var(--t); letter-spacing: -.03em; margin: 0; }

/* Checkout product rows — each item+quantity grouped in a subtle card */
.checkout-product-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px 0;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  margin-top: 10px;
}
.checkout-product-row:first-of-type { margin-top: 0; }
.checkout-product-icon {
  width: 52px; height: 52px;
  background: var(--sf); border: 1px solid var(--bd3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.checkout-product-icon img { width: 32px; height: 32px; object-fit: contain; }
.checkout-product-meta { min-width: 0; }
.checkout-product-name { font-size: 14px; font-weight: 600; color: var(--t); line-height: 1.3; }
.checkout-product-desc { font-size: 12px; color: var(--t3); margin-top: 2px; }
.checkout-product-price { display: flex; align-items: center; gap: 7px; margin-top: 7px; }
.checkout-product-amount { font-size: 16px; font-weight: 700; color: var(--t); letter-spacing: -.02em; }
.checkout-product-remove {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); transition: background .15s, color .15s;
}
.checkout-product-remove:hover { background: rgba(239,68,68,.08); color: #ef4444; }
.checkout-quantity {
  padding: 8px 16px 12px 80px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-bottom: 0;
}
.checkout-quantity:last-of-type { margin-bottom: 0; }

/* Checkout customer section */
.checkout-customer { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--bd3); }
.checkout-customer-head { margin-bottom: 18px; }
.checkout-customer-title { font-size: 17px; font-weight: 700; color: var(--t); margin: 0 0 4px; letter-spacing: -.02em; }
.checkout-customer-copy { font-size: 13px; color: var(--t3); margin: 0; }
.checkout-customer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--t2); }
.form-label-req { color: var(--p); }
.form-input {
  height: 40px; padding: 0 12px;
  background: var(--sf); border: 1px solid var(--bd3); border-radius: 10px;
  font-size: 14px; color: var(--t);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-input:focus { outline: none; border-color: var(--p); box-shadow: 0 0 0 3px rgba(0,113,227,.12); }
.form-hint { font-size: 11px; color: var(--t3); }
.phone-input-group { display: flex; gap: 8px; }
.phone-code-select {
  flex-shrink: 0; height: 40px; padding: 0 30px 0 10px;
  background: var(--sf2);
  border: 1.5px solid var(--bd3);
  border-radius: 10px;
  font-size: 13px; color: var(--t); cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
  transition: border-color .18s, box-shadow .18s;
}
.phone-code-select:hover { border-color: var(--p); }
.phone-code-select:focus {
  outline: none;
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.13);
}
.phone-local-input { flex: 1; }

/* Checkout summary sidebar */
.checkout-summary { position: sticky; top: 80px; }
.checkout-summary-rows { margin-bottom: 14px; }
.checkout-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--t2); padding: 6px 0;
  border-bottom: 1px solid var(--bd3);
}
.checkout-summary-row:last-child { border-bottom: none; }
.checkout-summary-row strong { color: var(--t); font-weight: 600; }
.checkout-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-top: 1px solid var(--bd3);
  font-size: 17px; font-weight: 700; color: var(--t);
  letter-spacing: -.02em; margin-bottom: 18px;
}
.checkout-payment-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.checkout-trust {
  font-size: 11px; color: var(--t3); margin: 12px 0 0;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.checkout-trust svg { flex-shrink: 0; }
.checkout-secondary-actions { margin-top: 14px; text-align: center; }
.checkout-link {
  font-size: 13px; color: var(--t3); padding: 4px 8px;
  transition: color .15s;
}
.checkout-link:hover { color: var(--p); }

/* Checkout alert */
.checkout-alert {
  border-radius: 10px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; margin-bottom: 12px;
}
.checkout-alert-warning { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.2); color: #92400e; }
.checkout-alert-error   { background: rgba(239,68,68,.08);  border: 1px solid rgba(239,68,68,.2);  color: #991b1b; }
.checkout-alert-success { background: rgba(52,199,89,.08);  border: 1px solid rgba(52,199,89,.2);  color: #166534; }
.checkout-alert-icon { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; }
.checkout-alert-icon i { width: 16px; height: 16px; }
.checkout-alert-copy p { margin: 0; line-height: 1.5; }
.checkout-alert-link { color: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.storefront-info-stack { display: flex; flex-direction: column; gap: 8px; }

/* Whish pay button */
.whish-pay-cta {
  width: 100%; display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  background: #b52028; color: #fff;
  border-radius: 12px;
  font-size: 15px; font-weight: 600;
  transition: background .18s, transform .15s, box-shadow .18s;
  text-align: left;
  box-shadow: 0 2px 10px rgba(181,32,40,.18);
  position: relative; overflow: hidden;
  animation: whish-pulse 2.8s ease-in-out infinite;
}
.whish-pay-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  animation: whish-shimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
.whish-pay-cta:hover {
  background: #9e1c24;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(181,32,40,.26);
  animation: none;
}
.whish-pay-cta:hover::after { animation: none; background: none; }

@keyframes whish-pulse {
  0%, 100% { box-shadow: 0 2px 12px rgba(227,0,11,.25); }
  50%       { box-shadow: 0 4px 22px rgba(227,0,11,.45); }
}
@keyframes whish-shimmer {
  0%   { background-position: 200% 0; }
  60%  { background-position: -40% 0; }
  100% { background-position: -40% 0; }
}
.whish-pay-cta-brand { flex-shrink: 0; width: 36px; height: 36px; background: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.whish-pay-cta-brand img { width: 24px; height: 24px; object-fit: contain; }
.whish-pay-cta-copy { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.whish-pay-cta-title { font-size: 14px; font-weight: 600; line-height: 1.2; }
.whish-pay-cta-subtitle { font-size: 11px; opacity: .8; line-height: 1; display: flex; align-items: center; gap: 4px; }
.whish-pay-cta-lock { width: 10px; height: 10px; }
.whish-pay-cta-arrow { flex-shrink: 0; opacity: .85; }
.whish-pay-cta-arrow i { width: 18px; height: 18px; }

@media (max-width: 600px) {
  .checkout-customer-grid { grid-template-columns: 1fr; }
  .checkout-card { padding: 20px 16px; }
  .checkout-quantity { padding-left: 56px; }
}

/* Demo modal */
.demo-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.demo-modal-overlay:not([aria-hidden="true"]) { opacity: 1; pointer-events: auto; }
.demo-modal {
  background: var(--sf);
  border: 1px solid var(--bd3);
  border-radius: var(--rx);
  padding: 28px;
  max-width: 640px;
  width: 100%;
  box-shadow: var(--sh-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.demo-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2); transition: background .2s;
}
.demo-modal-close:hover { background: var(--sf2); }
.demo-modal-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--p); margin-bottom: 6px; }
.demo-modal h2 { font-size: 20px; font-weight: 700; color: var(--t); margin-bottom: 10px; }
.demo-modal p { color: var(--t2); font-size: 14px; }
.demo-media-shell { margin-top: 20px; }
.demo-video-frame { width: 100%; aspect-ratio: 16/9; border-radius: var(--r); border: 0; }
.demo-fallback-card {
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: var(--r);
  padding: 40px 24px;
  text-align: center;
}
.demo-fallback-icon { color: var(--t3); margin: 0 auto 12px; width: 40px; height: 40px; }
.demo-fallback-card h3 { font-size: 16px; font-weight: 600; color: var(--t); margin-bottom: 8px; }

/* Site topbar (sale banner) */
.site-topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 310;
  background: var(--p);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 40px;
}
.site-topbar a { color: rgba(255,255,255,.85); text-decoration: underline; }
.has-sale-banner .navbar { top: 36px; }
.has-sale-banner .landing-main,
.has-sale-banner .page-main { padding-top: calc(52px + 36px); }

/* ════════════════════════════════════════════════
   HERO v2 — "Premium Software, Instantly."
═══════════════════════════════════════════════════ */
.nv-hero2 {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,113,227,.07) 0%, transparent 70%), var(--bg);
}
.nv-hero2-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.nv-hero2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--p);
  margin-bottom: 22px;
}
.nv-hero2-eyebrow svg { width: 7px; height: 7px; }
.nv-hero2-h1 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--t);
  margin-bottom: 20px;
}
.nv-hero2-accent { color: var(--p); }
.nv-hero2-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--t2);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 32px;
}
.nv-hero2-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.nv-hero2-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--t3);
  text-decoration: none;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid var(--bd);
  border-radius: 980px;
  background: transparent;
  transition: color .18s, border-color .18s, background .18s;
  letter-spacing: .01em;
}
.nv-hero2-feedback:hover {
  color: var(--t2);
  border-color: var(--bd2);
  background: var(--sf);
}
/* Apple-style primary CTA */
.nv-btn-primary {
  background: var(--p);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
  text-decoration: none;
  cursor: pointer;
}
.nv-btn-primary svg { transition: transform .2s; }
.nv-btn-primary:hover { background: #0077ed; }
.nv-btn-primary:hover svg { transform: translateX(2px); }
.nv-btn-primary:active { background: #006edb; }
/* Nova AI button — gradient-border frosted glass */
@keyframes nv-ai-border-spin {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
.nv-ai-cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 980px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--t);
  background: var(--bg2);
  border: none;
  position: relative;
  cursor: pointer;
  transition: color .2s, background .2s;
  isolation: isolate;
}
/* Animated gradient ring behind the button */
.nv-ai-cta2::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 980px;
  background: linear-gradient(90deg,
    #6366f1, #8b5cf6, #a855f7, #3b82f6, #06b6d4, #6366f1);
  background-size: 300% 100%;
  animation: nv-ai-border-spin 4s linear infinite;
  z-index: -1;
  opacity: .55;
  transition: opacity .25s;
}
/* Inner fill sits on top of the gradient ring */
.nv-ai-cta2::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  border-radius: 980px;
  background: var(--bg2);
  z-index: -1;
  transition: background .2s;
}
.nv-ai-cta2:hover::before { opacity: .85; }
.nv-ai-cta2:hover { color: var(--t); }
.nv-ai-cta2-gif {
  width: 20px; height: 20px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

/* Trust stars under hero */
.nv-hero2-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--t2);
}
.nv-trust-stars { display: flex; gap: 2px; }
.nv-ts { width: 14px; height: 14px; fill: var(--bd2); stroke: none; }
.nv-ts.on { fill: #f59e0b; }
.nv-trust-text { font-size: .82rem; color: var(--t2); }

/* Floating deco icons */
.nv-hero2-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.nv-deco-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: 18px;
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.nv-deco-icon img { width: 100%; height: 100%; object-fit: contain; }
.nv-deco-spotify  { top: 18%; left: 8%;  animation: nvFloat1 5s ease-in-out infinite; }
.nv-deco-office   { top: 14%; right: 9%; animation: nvFloat2 6s ease-in-out infinite; }
.nv-deco-adobe    { bottom: 22%; right: 7%; animation: nvFloat3 7s ease-in-out infinite; }
@keyframes nvFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes nvFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes nvFloat3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
/* ── Trust bar marquee ── */
@keyframes nv-tb-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 6)); } /* 1/6 of 6 sets = one set width */
}
.nv-trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--bd3);
  border-bottom: 1px solid var(--bd3);
  padding: 14px 0;
  overflow: hidden;
}
.nv-tb-track-wrap {
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.nv-tb-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: nv-tb-scroll 32s linear infinite;
  will-change: transform;
}
.nv-tb-track:hover { animation-play-state: paused; }
.nv-tb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--t2);
  padding: 4px 28px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nv-tb-item svg { width: 16px; height: 16px; color: var(--p); flex-shrink: 0; }
.nv-tb-sep {
  width: 1px;
  height: 18px;
  background: var(--bd3);
  flex-shrink: 0;
}
/* Logo badges inside the marquee */
.nv-tb-logo {
  display: flex;
  align-items: center;
  padding: 0 24px;
  flex-shrink: 0;
}
.nv-tb-logo-img {
  height: 22px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  flex-shrink: 0;
}
.nv-tb-logo-img--wide { height: 20px; }

/* ════════════════════════════════════════════════
   PRODUCTS GRID
═══════════════════════════════════════════════════ */
.nv-products-section {
  padding: 80px 0 60px;
  background: var(--bg);
}
.nv-sec-header {
  text-align: center;
  margin-bottom: 44px;
}
.nv-sec-title {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--t);
  margin-bottom: 10px;
}
.nv-sec-sub {
  font-size: .95rem;
  color: var(--t2);
  max-width: 480px;
  margin: 0 auto;
}
.nv-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.nv-prod-card {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--rl);
  padding: 28px 24px 22px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .22s, border-color .22s, transform .18s;
}
.nv-prod-card:hover {
  box-shadow: var(--sh-lg);
  border-color: var(--bd);
  transform: translateY(-2px);
}
.nv-prod-card--popular {
  border-color: var(--p);
  border-width: 1.5px;
}
.nv-prod-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--p);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 12px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.nv-prod-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
.nv-prod-icon { width: 100%; height: 100%; object-fit: contain; }
.nv-prod-icon--wide { object-fit: cover; border-radius: 4px; }
.nv-prod-icon--box { border-radius: 8px; }
.nv-prod-info { flex: 1; }
.nv-prod-name {
  font-size: 1rem;
  font-weight: 650;
  color: var(--t);
  margin-bottom: 5px;
  line-height: 1.35;
}
.nv-prod-short {
  font-size: .82rem;
  color: var(--t2);
  line-height: 1.5;
}
.nv-prod-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.nv-prod-strike {
  font-size: .88rem;
  color: var(--t2);
  text-decoration: line-through;
  text-decoration-color: rgba(150,150,150,.6);
}
.nv-prod-price {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--fd);
  color: var(--t);
  letter-spacing: -.02em;
}
.nv-prod-footer { border-top: 1px solid var(--bd3); padding-top: 14px; }
.nv-prod-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.nv-prod-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--t2);
  line-height: 1.4;
}
.nv-prod-feats li svg { width: 13px; height: 13px; color: var(--p); flex-shrink: 0; margin-top: 2px; }
.nv-prod-actions { text-align: right; }
.nv-prod-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--p);
  cursor: pointer;
  transition: gap .15s;
}
.nv-prod-card:hover .nv-prod-view-btn { gap: 8px; }

/* ════════════════════════════════════════════════
   PRODUCT DETAIL MODAL (full-screen slide-up)
═══════════════════════════════════════════════════ */
.nv-pd-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s var(--ease-out);
}
.nv-pd-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nv-pd-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 92vh;
  background: var(--bg2);
  border-radius: 22px 22px 0 0;
  transform: translateY(100%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 60px rgba(0,0,0,.18);
}
.nv-pd-panel.is-visible { transform: translateY(0); }

.nv-pd-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sf2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t2);
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.nv-pd-close:hover { background: var(--bd); color: var(--t); }
.nv-pd-close svg { width: 16px; height: 16px; }

.nv-pd-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 48px 40px 80px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

/* Handle bar */
.nv-pd-panel::before {
  content: '';
  display: block;
  width: 36px;
  height: 4px;
  background: var(--bd);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

/* Product header */
.nv-pd-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}
.nv-pd-logo-wrap {
  width: 80px;
  height: 80px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.nv-pd-logo { width: 100%; height: 100%; object-fit: contain; }
.nv-pd-logo--wide { object-fit: cover; border-radius: 6px; }
.nv-pd-head-text { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.nv-pd-brand {
  font-size: .8rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.nv-pd-title {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--t);
  margin-bottom: 10px;
  line-height: 1.2;
}
.nv-pd-prices {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}
.nv-pd-strike {
  font-size: 1rem;
  color: var(--t2);
  text-decoration: line-through;
  text-decoration-color: rgba(150,150,150,.6);
}
.nv-pd-price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--fd);
  color: var(--t);
  letter-spacing: -.03em;
}
.nv-pd-duration-tag {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--p) 12%, transparent);
  color: var(--p);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 9px;
  border-radius: 6px;
}

/* Description */
.nv-pd-desc-block { margin-bottom: 28px; }
.nv-pd-desc {
  font-size: .95rem;
  color: var(--t2);
  line-height: 1.7;
}

/* Features */
.nv-pd-feats-block {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--rl);
  padding: 24px 26px;
  margin-bottom: 22px;
}
.nv-pd-feats-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--t3);
  margin-bottom: 18px;
}
.nv-pd-feats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nv-pd-feats-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  color: var(--t);
  line-height: 1.45;
  padding: 10px 0;
  border-bottom: 1px solid var(--bd3);
}
.nv-pd-feats-list li:last-child { border-bottom: none; }
.nv-pd-feats-list li svg {
  display: none; /* replaced by pseudo-element below */
}
.nv-pd-feats-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--p) 10%, transparent);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230071e3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Delivery note */
.nv-pd-delivery {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: color-mix(in srgb, var(--p) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--p) 20%, transparent);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: .85rem;
  color: var(--t2);
  line-height: 1.55;
}
.nv-pd-delivery svg { width: 18px; height: 18px; color: var(--p); flex-shrink: 0; margin-top: 1px; }
.nv-pd-delivery-link { color: var(--p); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.nv-pd-delivery-link:hover { opacity: .8; }

/* CTA row */
.nv-pd-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nv-pd-cart-btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
  border: none;
}

/* Lock body scroll when modal open */
body.nv-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ════════════════════════════════════════════════
   SECTION FOOTER LINKS
═══════════════════════════════════════════════════ */
.nv-rv-footer {
  text-align: center;
  margin-top: 32px;
}
.nv-fp-footer {
  text-align: center;
  margin-top: 24px;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nv-hero2 { padding: 80px 0 60px; }
  .nv-hero2-h1 { font-size: 2.2rem; }
  .nv-hero2-ctas { gap: 10px; }
  .nv-deco-icon { display: none; }
  .nv-prod-grid { grid-template-columns: 1fr; }
  .nv-pd-scroll { padding: 32px 22px 60px; }
  .nv-pd-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nv-pd-title { font-size: 1.4rem; }
  .nv-pd-price { font-size: 1.6rem; }
  .nv-pd-cta-row { flex-direction: column; }
}

/* ════════════════════════════════════════════════
   APPLE-STYLE NAVBAR (replaces old .navbar-shell)
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 48px;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: background .3s;
}
/* Full-width inner layout */
.nv-nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  box-sizing: border-box;
}

/* Logo — left */
.nv-nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 32px;
  text-decoration: none;
  opacity: 1;
  transition: opacity .2s;
}
.nv-nav-logo:hover { opacity: .7; }
.nv-nav-logo-img {
  height: 36px;
  width: 36px;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
}
/* Remove the container padding/bg — the image carries its own rounded + white bg */
.nv-nav-logo {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
/* Fallback NV SVG: give it the same pill look */
.nv-nav-logo-fallback {
  width: 36px; height: 36px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
}
.nv-nav-logo-fallback { width: 28px; height: 28px; display: block; border-radius: 7px; }

/* Center group: links + cart sit together, group is centered via flex:1 on parent */
.nv-nav-center-group {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Center links */
.nv-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nv-nav-link {
  display: block;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--t2);
  text-decoration: none;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.nv-nav-link:hover { color: var(--t); background: rgba(0,0,0,.05); opacity: 1; }.nv-nav-link--active { color: var(--t); font-weight: 600; }
.nv-nav-link--cta { font-weight: 500; }

/* Separator dot */
.nv-nav-sep {
  width: 1px; height: 14px;
  background: var(--bd3);
  margin: 0 8px;
  flex-shrink: 0;
}

/* Right actions */
.nv-nav-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

/* Theme toggle — single clean icon button */
.nv-theme-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2);
  transition: background .15s, color .15s;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nv-theme-btn:hover { background: rgba(0,0,0,.06); color: var(--t); }.nv-theme-btn svg { width: 16px; height: 16px; }
/* Show sun in dark mode, moon in light mode */
.nv-theme-sun  { display: none; }
.nv-theme-moon { display: block; }
/* Cart button */
.nv-cart-btn {
  position: relative;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2);
  background: none;
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nv-cart-btn:hover { background: rgba(0,0,0,.06); color: var(--t); }.nv-cart-btn svg { width: 16px; height: 16px; }
.nv-cart-btn--active { color: var(--p); }
.nv-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 14px; height: 14px;
  border-radius: 980px;
  background: var(--p);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  pointer-events: none;
  line-height: 1;
}
/* Also wire up old data-cart-count references */
.cart-count-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 14px; height: 14px;
  border-radius: 980px;
  background: var(--p);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  pointer-events: none;
  line-height: 1;
}
.btn-cart-link { position: relative; }

/* Mobile hamburger */
.nv-mob-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background .15s;
}
.nv-mob-toggle:hover { background: rgba(0,0,0,.06); }.nv-mob-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--t);
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s, width .2s;
  transform-origin: center;
}
/* Hamburger → X animation */
.nv-mob-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nv-mob-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nv-mob-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Page offset below fixed nav */
.landing-main, .page-main { padding-top: 48px !important; }

/* ════════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════════ */
.nv-mob-drawer {
  /* Use visibility+opacity instead of display so close animation plays */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity .3s ease, visibility .3s;
}
.nv-mob-drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nv-mob-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 92vw);
  height: 100%;
  background: var(--bg2);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.32,.72,0,1);
  overflow-y: auto;
}
.nv-mob-drawer.is-open .nv-mob-panel { transform: translateX(0); }

.nv-mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--bd3);
  flex-shrink: 0;
  height: 60px;
}
.nv-mob-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nv-mob-brand-name {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.nv-mob-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--t2);
  background: var(--sf2);
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.nv-mob-close:hover { background: var(--bd); }
.nv-mob-close svg { width: 16px; height: 16px; }

.nv-mob-nav {
  flex: 1;
  padding: 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nv-mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: var(--r);
  color: var(--t);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background .15s;
  letter-spacing: -.01em;
}
.nv-mob-link svg { width: 18px; height: 18px; color: var(--t2); flex-shrink: 0; }
.nv-mob-link:hover { background: var(--sf2); color: var(--t); }
.nv-mob-link--active { color: var(--p); background: rgba(0,113,227,.06); }
.nv-mob-link--active svg { color: var(--p); }
.nv-mob-link--cta { color: var(--p); font-weight: 600; }
.nv-mob-link--cta svg { color: var(--p); }
.nv-mob-sep {
  height: 1px;
  background: var(--bd3);
  margin: 8px 14px;
}
.nv-mob-cart-count {
  margin-left: auto;
  min-width: 18px; height: 18px;
  background: var(--p);
  color: #fff;
  border-radius: 980px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 5px;
}

.nv-mob-footer {
  padding: 20px;
  border-top: 1px solid var(--bd3);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — NAVBAR
═══════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* Hide desktop center group (links + desktop cart) */
  .nv-nav-center-group { display: none !important; }
  .nv-mob-toggle { display: flex; }

  .nv-nav-inner {
    padding: 0 16px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  /* Logo: pinned left */
  .nv-nav-logo {
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  /* Actions: push to right — cart (mobile only) + hamburger */
  .nv-nav-actions {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }
}
@media (min-width: 861px) {
  .nv-mob-toggle { display: none; }
  /* Desktop-only cart is in nv-nav-center-group — hide mobile duplicate */
  .nv-cart-btn--mobile { display: none !important; }
}

/* ════════════════════════════════════════════════
   HERO v2 — MOBILE FIXES
═══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nv-hero2 { padding: 64px 0 48px; }
  .nv-hero2-h1 { font-size: 2rem; }
  .nv-hero2-sub { font-size: .9rem; }
  .nv-hero2-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .nv-hero2-ctas .nv-btn { justify-content: center; }
  .nv-deco-icon { display: none; }
  .nv-prod-grid { grid-template-columns: 1fr; gap: 14px; }
  .nv-sec-title { font-size: 1.5rem; }
  .nv-rv-grid { grid-template-columns: 1fr; }
  .nv-pd-scroll { padding: 28px 18px 60px; }
  .nv-pd-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .nv-pd-title { font-size: 1.3rem; }
  .nv-pd-price { font-size: 1.5rem; }
  .nv-pd-cta-row { flex-direction: column; }
  .nv-pd-cart-btn { width: 100%; }
  .container { padding: 0 16px; }
}
@media (max-width: 400px) {
  .nv-hero2-h1 { font-size: 1.7rem; }
}

/* ─── Page icon (used on cart, checkout, reviews, upgrade, renew, info) ─── */
.page-icon-large {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: var(--bg2);
  border: 1px solid var(--bd3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.page-icon-large svg,
.page-icon-large i {
  width: 32px;
  height: 32px;
  color: var(--p);
}
.page-icon-checkout { background: rgba(0,113,227,.06); border-color: rgba(0,113,227,.14); }
.page-icon-checkout svg { color: var(--p); }
.page-icon-star { background: rgba(255,179,0,.07); border-color: rgba(255,179,0,.20); }
.page-icon-star svg { color: #f5a623; }

/* ─── Surface card ─── */
.surface-card {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--rl);
  padding: 28px 24px;
}

/* ─── Storefront empty state ─── */
.storefront-shell { padding-bottom: 64px; }
.storefront-page-root { margin-top: 8px; }

/* ─── Storefront empty state ─── */
.storefront-empty-state {
  text-align: center;
  padding: 48px 24px;
  max-width: 420px;
  margin: 0 auto;
}
.storefront-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.storefront-empty-icon svg,
.storefront-empty-icon i { width: 28px; height: 28px; color: var(--t2); }
.storefront-empty-state h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 8px;
}
.storefront-empty-state p {
  font-size: .9375rem;
  color: var(--t2);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ─── Storefront cart page ─── */
.storefront-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 860px) { .storefront-grid { grid-template-columns: 1fr; } }

.storefront-product-card,
.storefront-summary-card {
  /* inherits from .surface-card */
}
.storefront-card-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bd3);
}
.storefront-card-eyebrow {
  font-size: 11px; color: var(--t3);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 4px;
}
.storefront-card-head h2 {
  font-size: 22px; font-weight: 700;
  color: var(--t); margin: 0;
  letter-spacing: -.03em;
}
.storefront-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--t2);
  padding: 7px 0;
  border-bottom: 1px solid var(--bd3);
}
.storefront-summary-row:last-child { border-bottom: none; }
.storefront-summary-price { color: var(--t); font-weight: 600; }
.storefront-summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--bd3);
  font-size: 17px; font-weight: 700; color: var(--t);
  letter-spacing: -.02em;
}
.storefront-summary-price-total { font-size: 20px; letter-spacing: -.03em; }
.storefront-summary-actions {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 16px;
}
.storefront-summary-actions .btn { width: 100%; justify-content: center; }

/* ─── Storefront package card (cart page items) ─── */
.storefront-package-card {
  padding: 18px 0;
  border-bottom: 1px solid var(--bd3);
}
.storefront-package-card:last-child { border-bottom: none; }
.storefront-package-card-tight { padding: 16px 0; }
.storefront-package-top {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: center;
}
.storefront-package-brand {
  width: 52px; height: 52px;
  background: var(--sf2); border: 1px solid var(--bd3); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.pricing-brand-logo { width: 34px; height: 34px; object-fit: contain; }
.storefront-package-heading { min-width: 0; }
.storefront-package-heading h3 { font-size: 14px; font-weight: 600; color: var(--t); line-height: 1.3; }
.storefront-package-heading p { font-size: 11px; color: var(--p); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.storefront-package-price strong { font-size: 16px; font-weight: 700; color: var(--t); letter-spacing: -.02em; }
.storefront-package-copy { font-size: 13px; color: var(--t3); margin: 10px 0 0 66px; line-height: 1.5; }

/* ─── Caution banner (renew page) ─── */
.nv-caution-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 620px;
  margin: 0 auto 28px;
  padding: 14px 18px;
  background: rgba(245,158,11,.10);
  border: 1.5px solid rgba(245,158,11,.35);
  border-radius: 14px;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--t);
}
.nv-caution-banner svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}
.nv-caution-banner strong { display: block; margin-bottom: 3px; font-size: .9375rem; color: #92400e; }
.nv-caution-banner strong + strong,
.nv-caution-banner div > strong:not(:first-child) { display: inline; color: inherit; margin-bottom: 0; }

/* ─── Activation disclaimer banner (same style as nv-caution-banner) ─── */
.activation-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0 0 24px;
  padding: 14px 18px;
  background: rgba(245,158,11,.10);
  border: 1.5px solid rgba(245,158,11,.35);
  border-radius: 14px;
}
.activation-disclaimer-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}
.activation-disclaimer-icon svg,
.activation-disclaimer-icon i { width: 20px; height: 20px; color: #d97706; }
.activation-disclaimer-body { display: flex; flex-direction: column; gap: 4px; }
.activation-disclaimer-title {
  font-size: .9375rem;
  font-weight: 600;
  color: #92400e;
  margin: 0 0 2px;
}
.activation-disclaimer-text {
  font-size: .875rem;
  color: #78350f;
  margin: 0;
  line-height: 1.55;
}
.activation-disclaimer-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 1px 7px 1px 5px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.40);
  border-radius: 980px;
  font-size: .8125rem;
  font-weight: 500;
  color: #92400e;
  white-space: nowrap;
}

/* ─── Activation disclaimer chip — fix oversized Apple logo ─── */
.activation-disclaimer-chip img {
  height: 13px !important;
  width: auto !important;
  max-width: 14px !important;
  object-fit: contain !important;
  flex-shrink: 0;
}

/* ─── Flow main stack (upgrade, renew, info pages) ─── */
.flow-main-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

/* ─── Activation helper card (upgrade page) ─── */
.activation-helper-card {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--rl);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.activation-helper-copy { width: 100%; }
.activation-helper-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 4px;
}
.activation-helper-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t);
  margin-bottom: 4px;
}
.activation-helper-card p {
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.5;
}
.activation-helper-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}
.activation-helper-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--bd3);
  background: var(--bg2);
  color: var(--t);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
  flex: 1;
}
.activation-helper-btn:hover {
  background: var(--sf2);
  border-color: var(--bd);
}
.activation-helper-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--sf2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.activation-helper-btn-icon svg,
.activation-helper-btn-icon i { width: 14px; height: 14px; color: var(--p); }
.activation-helper-btn-body { display: flex; flex-direction: column; }
.activation-helper-btn-title { font-size: .875rem; font-weight: 600; color: var(--t); }
.activation-helper-btn-sub { font-size: .75rem; color: var(--t2); }
.activation-helper-btn-arrow { margin-left: auto; color: var(--t3); flex-shrink: 0; }
.activation-helper-btn-arrow svg,
.activation-helper-btn-arrow i { width: 14px; height: 14px; }

/* TuneMyMusic — blue accent */
.activation-helper-btn-tunemymusic {
  border-color: rgba(0,113,227,.25);
  background: rgba(0,113,227,.06);
}
.activation-helper-btn-tunemymusic:hover {
  background: rgba(0,113,227,.12);
  border-color: rgba(0,113,227,.45);
}
.activation-helper-btn-tunemymusic .activation-helper-btn-icon {
  background: rgba(0,113,227,.12);
}
.activation-helper-btn-tunemymusic .activation-helper-btn-icon svg,
.activation-helper-btn-tunemymusic .activation-helper-btn-icon i { color: #0071e3; }

/* Trikatuka — green accent */
.activation-helper-btn-trikatuka {
  border-color: rgba(30,175,80,.25);
  background: rgba(30,175,80,.06);
}
.activation-helper-btn-trikatuka:hover {
  background: rgba(30,175,80,.12);
  border-color: rgba(30,175,80,.45);
}
.activation-helper-btn-trikatuka .activation-helper-btn-icon {
  background: rgba(30,175,80,.12);
}
.activation-helper-btn-trikatuka .activation-helper-btn-icon svg,
.activation-helper-btn-trikatuka .activation-helper-btn-icon i { color: #1eaf50; }

@media (max-width: 480px) {
  .activation-helper-btn { flex: 1 1 100%; }
}

/* ─── Reviews page ─── */
.reviews-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reviews-stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--t2);
}
.reviews-stat-pill strong { color: var(--t); font-weight: 600; }
.reviews-stat-pill--badge {
  background: rgba(245,166,35,.10);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 20px;
  padding: 4px 10px;
  color: #a06200;
}
.reviews-stat-pill--badge svg { width: 13px; height: 13px; flex-shrink: 0; stroke: #f5a623; }
.reviews-stat-divider { width: 1px; height: 18px; background: var(--bd3); }

.rv-grid, .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.rv-card {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--r);
  padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.rv-card:hover { border-color: var(--bd); box-shadow: var(--sh); }

/* Review card internals */
.rv-text { font-size: .9375rem; color: var(--t); line-height: 1.6; margin-bottom: 14px; }
.rv-foot { display: flex; align-items: center; gap: 10px; }
.rv-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--p); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.rv-meta { flex: 1; min-width: 0; }
.rv-name { font-size: 13px; font-weight: 600; color: var(--t); display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.rv-date { font-size: 11px; color: var(--t3); margin-top: 1px; }
.rv-verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 500; color: #1db954;
  background: rgba(29,185,84,.10); border-radius: 980px;
  padding: 1px 6px 1px 4px;
}
.rv-verified svg { width: 11px; height: 11px; stroke: #1db954; flex-shrink: 0; }
.rv-stars { font-size: 15px; color: #f59e0b; letter-spacing: 1px; flex-shrink: 0; }

.reviews-empty-state {
  text-align: center;
  padding: 40px 24px;
  color: var(--t2);
}
.reviews-empty-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sf2);
  border: 1px solid var(--bd3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.reviews-empty-icon svg { width: 22px; height: 22px; color: var(--t2); }

.reviews-write-panel {
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: var(--rl);
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 64px;
}
.reviews-write-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--t);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.reviews-write-trigger:hover { background: var(--sf2); }
.reviews-write-trigger-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(0,113,227,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviews-write-trigger-icon svg { width: 14px; height: 14px; color: var(--p); }
.reviews-write-trigger-chevron {
  margin-left: auto;
  width: 16px; height: 16px;
  color: var(--t3);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
}
.reviews-write-panel.is-expanded .reviews-write-trigger-chevron { transform: rotate(180deg); }
.reviews-write-trigger[aria-expanded="true"] .reviews-write-trigger-chevron { transform: rotate(180deg); }

/* ─── Reviews form body ─── */
.reviews-write-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.reviews-write-panel.is-expanded .reviews-write-body {
  max-height: 900px;
}
.reviews-write-form {
  padding: 0 20px 24px;
  border-top: 1px solid var(--bd3);
}
.reviews-write-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .reviews-write-fields { grid-template-columns: 1fr; }
}
.reviews-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reviews-field--full { grid-column: 1 / -1; }
.reviews-field > span {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--t2);
}
.reviews-field input,
.reviews-field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--bd3);
  border-radius: 10px;
  background: var(--bg);
  color: var(--t);
  font: inherit;
  font-size: .9375rem;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  box-sizing: border-box;
}
.reviews-field input:focus,
.reviews-field textarea:focus {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.12);
}
.reviews-field textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

/* Star rating */
.reviews-rating { display: flex; gap: 4px; }
.reviews-rating-star {
  font-size: 26px;
  color: var(--bd3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color .15s, transform .1s;
}
.reviews-rating-star:hover,
.reviews-rating-star.is-active,
.reviews-rating-star.is-hovered { color: #f59e0b; }
.reviews-rating-star:hover { transform: scale(1.15); }
.reviews-rating-star.is-idle { color: #d1d1d6; }

/* Submit button */
.reviews-submit-button {
  width: 100%;
  justify-content: center;
  gap: 8px;
  font-size: .9375rem;
  padding: 13px 24px;
  border-radius: 12px;
}
.reviews-submit-button svg { width: 16px; height: 16px; }

/* Alert inside form */
.reviews-form-alert {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .875rem;
  margin: 16px 0 4px;
}
.reviews-form-alert-success { background: rgba(29,185,84,.1); color: #15803d; border: 1px solid rgba(29,185,84,.25); }
.reviews-form-alert-error   { background: rgba(239,68,68,.08); color: #b91c1c; border: 1px solid rgba(239,68,68,.2); }

/* ─── Plans / Products search ─── */
.plans-search-wrap {
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 40px 24px 0;
}
.plans-search-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--t);
  letter-spacing: -.03em;
  margin: 0 0 12px;
}
.plans-search-bar {
  max-width: 380px;
}
.plans-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg2);
  border: 1px solid var(--bd3);
  border-radius: 14px;
  padding: 0 14px;
  transition: border-color .2s, box-shadow .2s;
}
.plans-search-bar:focus-within {
  border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(0,113,227,.10);
}
.plans-search-icon { width: 16px; height: 16px; color: var(--t3); flex-shrink: 0; }
.plans-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: .9375rem;
  color: var(--t);
  padding: 11px 0;
  outline: none;
}
.plans-search-input::placeholder { color: var(--t3); }
.plans-search-clear {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: var(--t3);
  color: var(--sf);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  opacity: .7;
  transition: opacity .15s;
}
.plans-search-clear:hover { opacity: 1; }
.plans-search-clear svg { width: 11px; height: 11px; }
.plans-no-results {
  text-align: center;
  padding: 48px 24px;
  color: var(--t2);
  font-size: .9375rem;
  display: none;
}

/* ─── Activate / Renew mobile responsive ─── */
@media (max-width: 640px) {
  .flow-page-shell { padding: 0 4px; }
  .flow-main-stack { gap: 12px; }
  .card { padding: 18px 16px; border-radius: 16px; }
  .activation-disclaimer { padding: 12px 14px; }
  .activation-helper-actions { flex-direction: column; }
  .activation-helper-btn { width: 100%; flex: unset; }
  .nv-caution-banner { padding: 12px 14px; margin-bottom: 20px; }
  section[data-reveal] { padding: 0 16px; }
}

/* ─── Renew options ─── */
.renew-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Review success toast ─────────────────────────────────── */
.nv-toast {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-14px);
  background: #fff;
  border: 1px solid rgba(22, 163, 74, .22);
  border-left: 3px solid #16a34a;
  border-radius: 12px;
  padding: 12px 20px 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #16a34a;
  box-shadow: 0 8px 32px rgba(0,0,0,.13), 0 1px 4px rgba(0,0,0,.06);
  z-index: 99999;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  user-select: none;
}
.nv-toast.nv-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nv-toast.nv-toast--hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(-14px);
}
/* End of NOVAVOLT BETA theme */
