:root {
  --nv-bg: #09070d;
  --nv-bg-soft: #100c17;
  --nv-panel: rgba(24, 18, 33, .88);
  --nv-panel-strong: #1a1324;
  --nv-line: rgba(195, 148, 255, .14);
  --nv-line-hover: rgba(174, 91, 255, .36);
  --nv-purple: #a855f7;
  --nv-purple-bright: #c274ff;
  --nv-violet: #7c3aed;
  --nv-text: #f6f1ff;
  --nv-muted: #a99db7;
  --nv-success: #38d996;
  --nv-danger: #ff6685;
  --nv-radius: 18px;
  --nv-shadow: 0 22px 60px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }

html { min-height: 100%; overflow-x: hidden; background: var(--nv-bg); }

body.nv-shell {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--nv-text);
  background:
    radial-gradient(circle at 12% 3%, rgba(119, 48, 190, .16), transparent 28rem),
    radial-gradient(circle at 92% 45%, rgba(105, 41, 170, .11), transparent 32rem),
    var(--nv-bg);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.nv-shell h1, .nv-shell h2, .nv-shell h3, .nv-shell h4,
.nv-shell .navbar-brand { font-family: "Manrope", sans-serif; letter-spacing: -.025em; }
.nv-shell a { color: var(--nv-purple-bright); transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.nv-shell a:hover, .nv-shell a:focus { color: #dfbdff; text-decoration: none; }

.nv-ambient { position: fixed; z-index: 0; width: 380px; height: 380px; border-radius: 50%; filter: blur(120px); opacity: .12; pointer-events: none; }
.nv-ambient-one { top: -180px; left: -100px; background: #b72cff; }
.nv-ambient-two { right: -180px; bottom: -160px; background: #6e2eff; }
.nv-main, .navbar, .nv-footer { position: relative; z-index: 1; }

/* Navigation */
.nv-shell .navbar-default {
  min-height: 72px;
  margin: 0 0 34px;
  border: 0;
  border-bottom: 1px solid var(--nv-line);
  background: rgba(9, 7, 13, .82);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nv-shell .navbar > .container, .nv-shell .navbar > .container-fluid { min-height: 72px; display: flex; align-items: center; }
.nv-shell .navbar-header { flex: 0 0 auto; }
.nv-shell .navbar-brand { height: 72px; padding: 13px 20px; display: flex; align-items: center; color: #fff; font-size: 22px; font-weight: 800; }
.nv-shell .navbar-brand img { display: block; width: auto; max-width: 225px; height: 54px; object-fit: contain; transform: scale(1.08); transform-origin: center; }
.nv-shell .navbar-brand img { filter: drop-shadow(0 0 9px rgba(184, 81, 255, .35)); animation: nvLogoPulse 4s ease-in-out infinite; }
.nv-shell .navbar-collapse { flex: 1; border: 0; box-shadow: none; }
.nv-shell .navbar-nav > li > a { margin: 13px 2px; padding: 12px 13px; border-radius: 11px; color: var(--nv-muted); font-weight: 600; }
.nv-shell .navbar-nav > li > a:hover,
.nv-shell .navbar-nav > li > a:focus,
.nv-shell .navbar-nav > .active > a,
.nv-shell .navbar-nav > .active > a:hover { color: #fff; background: rgba(168, 85, 247, .12); }
.nv-shell .navbar-icon { margin-right: 7px; color: var(--nv-purple-bright); }
.nv-shell .navbar-toggle { margin-top: 18px; border: 1px solid var(--nv-line-hover); border-radius: 10px; }
.nv-shell .navbar-toggle .icon-bar { background: var(--nv-purple-bright); }
.nv-shell .badge { padding: 7px 10px; border-radius: 99px; background: rgba(168, 85, 247, .15); color: #e7c8ff; font-weight: 700; }
.nv-shell .dropdown-menu { padding: 8px; border: 1px solid var(--nv-line); border-radius: 14px; background: #171020; box-shadow: var(--nv-shadow); }
.nv-shell .dropdown-menu > li > a { padding: 10px 12px; border-radius: 9px; color: var(--nv-muted); }
.nv-shell .dropdown-menu > li > a:hover { color: white; background: rgba(168, 85, 247, .13); }

/* Page structure */
.nv-main { min-height: calc(100vh - 180px); }
.nv-page-intro { max-width: 1220px; margin: 0 auto 14px; padding: 0 24px; }
.nv-page-intro { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nv-page-intro h1 { margin: 0; color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 800; }
.nv-header-actions { display: flex; gap: 9px; }.nv-header-actions .btn-default { width: 45px; padding-left: 0; padding-right: 0; }
.nv-eyebrow, .nv-kicker { margin: 0 0 5px; color: var(--nv-purple-bright); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nv-page { max-width: 1220px; padding: 0 24px 46px; }
.nv-page > .row { margin-left: -9px; margin-right: -9px; }
.nv-page > .row > [class*="col-"] { padding-left: 9px; padding-right: 9px; }

/* Surfaces */
.nv-shell .well, .nv-shell .panel, .nv-shell .modal-content {
  color: var(--nv-text);
  border: 1px solid var(--nv-line);
  border-radius: var(--nv-radius);
  background: linear-gradient(145deg, rgba(28, 21, 38, .96), rgba(18, 13, 25, .96));
  box-shadow: var(--nv-shadow);
}
.nv-shell .well { padding: 24px; }
.nv-shell .panel-heading, .nv-shell .modal-header { padding: 18px 20px; border-color: var(--nv-line); border-radius: var(--nv-radius) var(--nv-radius) 0 0; background: rgba(168, 85, 247, .06); color: #fff; }
.nv-shell .panel-body, .nv-shell .modal-body { padding: 20px; }
.nv-shell .panel-footer, .nv-shell .modal-footer { border-color: var(--nv-line); background: transparent; }
.nv-shell hr { border-color: var(--nv-line); }
.nv-shell .text-muted, .nv-shell small { color: var(--nv-muted); }

/* Forms */
.nv-shell label { margin-bottom: 7px; color: #ddd4e8; font-size: 13px; font-weight: 700; }
.nv-shell .form-group { margin-bottom: 18px; }
.nv-shell .form-control {
  height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(181, 146, 214, .16);
  border-radius: 12px;
  background: rgba(7, 5, 10, .55);
  color: #fff;
  box-shadow: none;
}
.nv-shell textarea.form-control { min-height: 120px; height: auto; resize: vertical; }
.nv-shell .form-control::placeholder { color: #786e82; }
.nv-shell .form-control:focus { border-color: var(--nv-purple); background: rgba(11, 7, 15, .9); box-shadow: 0 0 0 3px rgba(168, 85, 247, .12); }
.nv-shell .form-control[readonly], .nv-shell .form-control[disabled] { color: #c8bdcf; background: rgba(255,255,255,.025); }
.nv-shell select.form-control option { background: #171020; color: #fff; }
.nv-shell .btn { min-height: 44px; padding: 10px 18px; border-radius: 12px; font-weight: 800; box-shadow: none; }
.nv-shell .btn-primary {
  border: 1px solid rgba(218, 176, 255, .2);
  background: linear-gradient(135deg, var(--nv-purple), var(--nv-violet));
  color: #fff;
  box-shadow: 0 12px 26px rgba(124, 58, 237, .24);
}
.nv-shell .btn-primary:hover, .nv-shell .btn-primary:focus { border-color: #d4a7ff; background: linear-gradient(135deg, #b968ff, #8d55f6); color: #fff; transform: translateY(-1px); }
.nv-shell .btn-default { border-color: var(--nv-line); background: rgba(255,255,255,.04); color: var(--nv-text); }
.nv-shell .btn-default:hover { border-color: var(--nv-line-hover); background: rgba(168,85,247,.1); color: #fff; }
.nv-shell .forgot-password { float: right; font-size: 13px; }

/* Data */
.nv-shell .table-responsive { border: 1px solid var(--nv-line); border-radius: 15px; background: rgba(13,9,18,.7); }
.nv-shell .table { margin-bottom: 0; color: #e6dfeb; }
.nv-shell .table > thead > tr > th { padding: 14px 12px; border-color: var(--nv-line); background: rgba(168,85,247,.07); color: #cdbed8; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.nv-shell .table > tbody > tr > td { padding: 14px 12px; border-color: rgba(195,148,255,.08); vertical-align: middle; }
.nv-shell .table-striped > tbody > tr:nth-of-type(odd) { background: rgba(255,255,255,.018); }
.nv-shell .table-hover > tbody > tr:hover { background: rgba(168,85,247,.06); }
.nv-shell .pagination > li > a, .nv-shell .pagination > li > span { margin: 0 3px; border: 1px solid var(--nv-line); border-radius: 9px; background: var(--nv-panel); color: var(--nv-muted); }
.nv-shell .pagination > .active > a, .nv-shell .pagination > .active > span { border-color: var(--nv-purple); background: var(--nv-purple); color: #fff; }

/* Feedback */
.nv-shell .alert { border: 1px solid transparent; border-radius: 13px; }
.nv-shell .alert-success { border-color: rgba(56,217,150,.25); background: rgba(56,217,150,.09); color: #9cf3cb; }
.nv-shell .alert-danger { border-color: rgba(255,102,133,.25); background: rgba(255,102,133,.09); color: #ffb3c2; }
.nv-shell .alert-info { border-color: rgba(168,85,247,.25); background: rgba(168,85,247,.09); color: #d9b5ff; }
.nv-shell .nav-tabs { border-color: var(--nv-line); }
.nv-shell .nav-tabs > li > a { border: 0; border-radius: 10px 10px 0 0; color: var(--nv-muted); font-weight: 700; }
.nv-shell .nav-tabs > li.active > a, .nv-shell .nav-tabs > li.active > a:hover { border: 1px solid var(--nv-line); border-bottom-color: var(--nv-panel-strong); background: var(--nv-panel-strong); color: #fff; }

/* Guest experience */
.nv-guest .navbar-default { margin-bottom: 0; }
.nv-auth-hero { max-width: 1180px; min-height: 690px; margin: 0 auto; padding: 64px 24px 84px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .78fr); gap: 64px; align-items: center; }
.nv-auth-copy { position: relative; }
.nv-auth-copy::before { content: ""; position: absolute; z-index: -1; top: -110px; left: -120px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(168,85,247,.2), transparent 67%); }
.nv-auth-copy h1 { max-width: 670px; margin: 0 0 20px; color: #fff; font-size: clamp(40px, 5.4vw, 72px); font-weight: 800; line-height: 1.03; }
.nv-gradient-text { background: linear-gradient(100deg, #fff 0%, #d9a6ff 38%, #a855f7 72%, #f1d7ff 100%); background-size: 180% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: nvGradient 7s linear infinite; }
.nv-auth-copy > p { max-width: 590px; margin: 0 0 26px; color: var(--nv-muted); font-size: 18px; }
.nv-trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.nv-trust-row span { padding: 9px 12px; border: 1px solid var(--nv-line); border-radius: 99px; background: rgba(255,255,255,.025); color: #c9bdd2; font-size: 13px; }
.nv-trust-row i { margin-right: 6px; color: var(--nv-purple-bright); }
.nv-step-list { display: grid; grid-template-columns: auto 1fr; gap: 10px 12px; align-items: center; max-width: 350px; color: #c9bdd2; }
.nv-step-list span { width: 28px; height: 28px; display: inline-grid; place-items: center; border: 1px solid var(--nv-line-hover); border-radius: 50%; background: rgba(168,85,247,.11); color: #e2c2ff; font-weight: 800; }
.nv-auth-hero > .nv-page { width: 100%; padding: 0; }
.nv-auth-hero > .nv-page > .row { margin: 0; }
.nv-auth-hero > .nv-page > .row > [class*="col-"] { width: 100%; padding: 0; margin: 0; float: none; }
.nv-auth-hero .well { padding: 30px; }
.nv-auth-hero .btn-primary { min-width: 145px; }
.nv-auth-hero + .container .well { max-width: 1180px; margin: 0 auto 50px; }

/* Page-specific polish */
.nv-page-new-order > .row > .col-md-8, .nv-page-mass-order > .row > .col-md-8,
.nv-page-services > .row > [class*="col-"], .nv-page-tickets > .row > [class*="col-"] { width: 100%; margin-left: 0; }
.nv-page-new-order .well { max-width: 850px; }
.nv-page-services .well, .nv-page-orders .well, .nv-page-updates .well { overflow: hidden; }
.nv-shell #service_description .panel-body { border-color: var(--nv-line); border-radius: 12px; background: rgba(168,85,247,.045); color: var(--nv-muted); }
.nv-shell pre, .nv-shell code { border-color: var(--nv-line); background: #09060d; color: #d8b4fe; }

.nv-footer { padding: 22px 0 28px; border-top: 1px solid rgba(195,148,255,.08); color: #71677b; font-size: 13px; }
.nv-footer .container-fluid { max-width: 1220px; padding: 0 24px; display: flex; justify-content: space-between; gap: 20px; }

/* Authenticated desktop shell */
@media (min-width: 992px) {
  .nv-auth { padding-left: 252px; }
  .nv-auth .navbar-default { position: fixed; z-index: 1000; inset: 0 auto 0 0; width: 252px; height: 100vh; margin: 0; overflow-y: auto; border-right: 1px solid var(--nv-line); border-bottom: 0; background: linear-gradient(180deg,rgba(13,9,18,.98),rgba(8,6,11,.99)); }
  .nv-auth .navbar > .container-fluid { min-height: 100%; padding: 20px 15px; display: flex; flex-direction: column; align-items: stretch; }
  .nv-auth .navbar-header { width: 100%; padding-bottom: 18px; border-bottom: 1px solid var(--nv-line); }
  .nv-auth .navbar-brand { width: 100%; height: 60px; justify-content: center; padding: 5px; }
  .nv-auth .navbar-brand img { max-width: 198px; height: 55px; }
  .nv-auth .navbar-collapse { width: 100%; padding: 18px 0 0; display: flex!important; flex: 1; flex-direction: column; }
  .nv-auth .navbar-nav { width: 100%; margin: 0; float: none!important; }
  .nv-auth .navbar-nav > li { width: 100%; float: none; }
  .nv-auth .navbar-nav > li > a { min-height: 43px; margin: 3px 0; padding: 10px 12px; display: flex; align-items: center; border: 1px solid transparent; border-radius: 11px; }
  .nv-auth .navbar-nav > li > a:hover,.nv-auth .navbar-nav > li.active > a { border-color: rgba(168,85,247,.2); background: linear-gradient(90deg,rgba(168,85,247,.16),rgba(168,85,247,.035)); box-shadow: inset 3px 0 #a855f7; }
  .nv-auth .navbar-nav > li > a .navbar-icon { width: 28px; height: 28px; display: grid; place-items: center; margin-right: 10px; border-radius: 8px; background: rgba(168,85,247,.1); font-size: 12px; }
  .nv-auth .navbar-right-block { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--nv-line); }
  .nv-auth .navbar-right-block .dropdown-menu { position: fixed; left: 236px; bottom: 20px; top: auto; }
  .nv-auth .nv-main { padding-top: 34px; }
  .nv-auth .nv-footer { margin-top: 30px; }
}

/* Professional landing */
.nv-logo-marquee { position: relative; z-index: 1; max-width: 1180px; margin: -24px auto 0; padding: 19px 0; overflow: hidden; border-top: 1px solid var(--nv-line); border-bottom: 1px solid var(--nv-line); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.nv-marquee-track { width: max-content; display: flex; gap: 54px; color: #8f829b; animation: nvMarquee 22s linear infinite; }
.nv-marquee-track span { font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; white-space: nowrap; }
.nv-marquee-track i { margin-right: 8px; color: #c084fc; font-size: 18px; }
.nv-landing-section { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 120px 24px 20px; }
.nv-section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.nv-section-heading h2, .nv-proof-copy h2, .nv-final-cta h2 { margin: 4px 0 14px; color: #fff; font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; line-height: 1.08; }
.nv-section-heading p, .nv-proof-copy p { color: var(--nv-muted); font-size: 17px; }
.nv-feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.nv-feature-card { position: relative; min-height: 260px; grid-column: span 2; padding: 26px; overflow: hidden; border: 1px solid var(--nv-line); border-radius: 22px; background: linear-gradient(145deg, rgba(29,21,39,.94), rgba(13,9,18,.94)); box-shadow: 0 25px 70px rgba(0,0,0,.18); transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease; }
.nv-feature-card:hover { transform: translateY(-7px); border-color: var(--nv-line-hover); box-shadow: 0 28px 75px rgba(66,19,105,.24); }
.nv-feature-card-main { grid-column: span 4; }
.nv-card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 34px; border: 1px solid rgba(197,139,255,.25); border-radius: 14px; background: rgba(168,85,247,.1); color: #ca8cff; font-size: 18px; box-shadow: inset 0 0 18px rgba(168,85,247,.08); }
.nv-card-number { position: absolute; top: 27px; right: 27px; color: #5f526a; font: 700 12px "Manrope", sans-serif; letter-spacing: .12em; }
.nv-feature-card h3 { margin: 0 0 10px; color: #fff; font-size: 21px; font-weight: 800; }
.nv-feature-card p { max-width: 520px; margin: 0; color: var(--nv-muted); }
.nv-card-visual { position: absolute; right: 28px; bottom: 24px; width: 220px; height: 90px; display: flex; align-items: flex-end; gap: 10px; opacity: .45; }
.nv-bars i { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(#c774ff, #6d28d9); animation: nvBars 3s ease-in-out infinite alternate; }
.nv-bars i:nth-child(1) { height: 35%; }.nv-bars i:nth-child(2) { height: 56%; animation-delay: -.5s }.nv-bars i:nth-child(3) { height: 45%; animation-delay: -1s }.nv-bars i:nth-child(4) { height: 82%; animation-delay: -1.5s }.nv-bars i:nth-child(5) { height: 68%; animation-delay: -2s }
.nv-process-section { padding-top: 140px; }
.nv-process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.nv-process-grid::before { content: ""; position: absolute; top: 50px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, #7c3aed, #b65cff, transparent); opacity: .35; }
.nv-process-grid article { position: relative; z-index: 1; padding: 24px 20px; text-align: center; }
.nv-process-grid article > b { position: absolute; top: 4px; right: 16px; color: #4d4258; font-size: 11px; letter-spacing: .12em; }
.nv-process-grid article > i { width: 56px; height: 56px; display: grid; place-items: center; margin: 0 auto 24px; border: 1px solid var(--nv-line-hover); border-radius: 50%; background: #120d19; color: #c883ff; font-size: 18px; box-shadow: 0 0 35px rgba(168,85,247,.12); }
.nv-process-grid h3 { color: #fff; font-size: 17px; }.nv-process-grid p { color: var(--nv-muted); font-size: 14px; }
.nv-proof-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; padding-top: 150px; }
.nv-proof-copy { max-width: 470px; }.nv-proof-copy .btn { margin-top: 18px; }.nv-proof-copy .btn i, .nv-final-cta .btn i { margin-left: 8px; }
.nv-dashboard-preview { min-height: 390px; overflow: hidden; border: 1px solid var(--nv-line-hover); border-radius: 24px; background: #100b16; box-shadow: 0 40px 100px rgba(53,14,84,.32); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); animation: nvFloat 7s ease-in-out infinite; }
.nv-preview-top { height: 52px; padding: 0 17px; display: flex; gap: 7px; align-items: center; border-bottom: 1px solid var(--nv-line); }.nv-preview-top i { width: 8px; height: 8px; border-radius: 50%; background: #583d69; }.nv-preview-top span { width: 105px; height: 18px; margin-left: auto; border-radius: 20px; background: rgba(168,85,247,.16); }
.nv-preview-body { min-height: 338px; display: grid; grid-template-columns: 105px 1fr; }.nv-preview-body aside { padding: 24px 14px; border-right: 1px solid var(--nv-line); }.nv-preview-body aside i { display: block; width: 100%; height: 12px; margin-bottom: 20px; border-radius: 5px; background: rgba(255,255,255,.06); }.nv-preview-body aside i:first-child { background: rgba(168,85,247,.32); }
.nv-preview-body main { padding: 25px; }.nv-preview-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }.nv-preview-stats i { height: 62px; border: 1px solid var(--nv-line); border-radius: 10px; background: rgba(255,255,255,.025); }.nv-preview-chart { height: 125px; margin: 16px 0; overflow: hidden; border: 1px solid var(--nv-line); border-radius: 12px; background: linear-gradient(180deg, rgba(168,85,247,.08), transparent); }.nv-preview-chart span { display: block; width: 120%; height: 80px; margin: 42px 0 0 -10%; border-top: 2px solid #b56aff; border-radius: 50%; transform: rotate(-5deg); box-shadow: 0 -12px 40px rgba(168,85,247,.2); }.nv-preview-table i { display: block; height: 15px; margin: 8px 0; border-radius: 4px; background: rgba(255,255,255,.04); }
.nv-final-cta { position: relative; z-index: 1; max-width: 1132px; margin: 140px auto 90px; padding: 48px; display: flex; justify-content: space-between; gap: 35px; align-items: center; overflow: hidden; border: 1px solid var(--nv-line-hover); border-radius: 25px; background: radial-gradient(circle at 10% 0, rgba(168,85,247,.2), transparent 45%), #130d1b; box-shadow: 0 30px 90px rgba(45,11,70,.25); }.nv-final-cta::after { content: ""; position: absolute; right: -70px; top: -100px; width: 280px; height: 280px; border: 1px solid rgba(192,132,252,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(192,132,252,.03),0 0 0 80px rgba(192,132,252,.02); }.nv-final-cta h2 { max-width: 700px; margin-bottom: 0; font-size: clamp(28px,3.4vw,44px); }.nv-final-cta .btn { position: relative; z-index: 1; white-space: nowrap; }
.nv-reveal, .nv-reveal.nv-visible { opacity: 1; transform: none; animation: none; }

/* Support center */
.nv-ticket-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }.nv-ticket-layout > .well { margin: 0; }.nv-ticket-heading { margin-bottom: 26px; }.nv-ticket-heading h2, .nv-ticket-history h2 { margin: 0 0 8px; color: #fff; font-size: 28px; font-weight: 800; }.nv-ticket-heading p { max-width: 700px; margin: 0; color: var(--nv-muted); }
.nv-ticket-aside { padding: 24px; border: 1px solid var(--nv-line); border-radius: var(--nv-radius); background: linear-gradient(145deg,rgba(27,19,37,.95),rgba(15,10,21,.95)); box-shadow: var(--nv-shadow); }.nv-support-status { display: flex; gap: 11px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--nv-line); }.nv-support-status div { display: grid; }.nv-support-status small,.nv-ticket-aside small { color: var(--nv-muted); }.nv-status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--nv-success); box-shadow: 0 0 0 5px rgba(56,217,150,.1),0 0 18px rgba(56,217,150,.4); animation: nvStatus 2s ease-in-out infinite; }.nv-ticket-aside h3 { margin: 25px 0 18px; color: #fff; }.nv-ticket-aside ol { margin: 0; padding: 0; list-style: none; }.nv-ticket-aside li { display: flex; gap: 12px; margin-bottom: 18px; }.nv-ticket-aside li > span { flex: 0 0 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--nv-line-hover); border-radius: 9px; color: #d9adff; font-weight: 800; }.nv-ticket-aside li div { display: grid; }.nv-support-note { display: flex; gap: 12px; padding: 15px; border: 1px solid rgba(168,85,247,.18); border-radius: 13px; background: rgba(168,85,247,.06); }.nv-support-note i { margin-top: 4px; color: #bf79ff; }.nv-support-note p { margin: 0; color: var(--nv-muted); font-size: 12px; }
.nv-ticket-category-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 8px 0 20px; }.nv-ticket-category { padding: 14px; display: flex; gap: 10px; align-items: center; border: 1px solid var(--nv-line); border-radius: 12px; background: rgba(255,255,255,.02); color: #c7bacf; cursor: pointer; text-align: left; transition: .2s ease; }.nv-ticket-category:hover,.nv-ticket-category.active { border-color: var(--nv-purple); background: rgba(168,85,247,.1); color: #fff; }.nv-ticket-category i { color: #bd78f9; }.nv-ticket-history { margin-top: 20px; }.nv-ticket-history-head { margin-bottom: 16px; }.nv-ticket-thread { max-width: 920px; margin: 0 auto; }.nv-thread-head { margin-bottom: 24px; padding-bottom: 18px; display: flex; justify-content: space-between; gap: 20px; align-items: center; border-bottom: 1px solid var(--nv-line); }.titcket-title { color: #fff; font: 800 25px "Manrope",sans-serif; }.ticket-message-block { margin-bottom: 18px; }.ticket-message { padding: 16px 18px; border: 1px solid var(--nv-line); border-radius: 16px; background: rgba(255,255,255,.035); }.ticket-message-right .ticket-message { border-color: rgba(168,85,247,.28); background: rgba(168,85,247,.1); }.ticket-message-block .info { padding: 7px 6px 0; color: #d8ccdf; }.ticket-message-block .info small { margin-left: 7px; }

/* Core panel workspaces */
.nv-order-intro,.nv-funds-intro,.nv-services-intro { margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }.nv-order-intro h2,.nv-funds-intro h2,.nv-services-intro h2 { margin: 0 0 6px; color: #fff; font-size: 29px; font-weight: 800; }.nv-order-intro p,.nv-funds-intro p,.nv-services-intro p { margin: 0; color: var(--nv-muted); }.nv-platform-panel { margin-bottom: 18px; overflow: hidden; border: 1px solid rgba(195,148,255,.16); border-radius: 17px; background: linear-gradient(145deg,rgba(21,17,27,.92),rgba(10,8,13,.96)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.015),0 14px 35px rgba(0,0,0,.12); }.nv-platform-panel-head { min-height: 60px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(195,148,255,.1); }.nv-platform-panel-head h3 { margin: 0; color: #fff; font-size: 20px; font-weight: 800; line-height: 1.1; }.nv-platform-panel-head i { color: #fff; font-size: 18px; }.nv-order-platforms { padding: 18px 22px 20px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px 14px; }.nv-order-platforms button { min-width: 0; min-height: 62px; padding: 12px 16px; display: flex; align-items: center; justify-content: flex-start; gap: 12px; border: 1px solid transparent; border-radius: 12px; background: rgba(255,255,255,.025); color: rgba(229,221,235,.5); text-align: left; font: 800 14px "DM Sans",sans-serif; transition: .2s ease; }.nv-order-platforms button i { width: 24px; flex: 0 0 24px; color: #b86eff; font-size: 19px; text-align: center; }.nv-order-platforms button span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: normal; line-height: 1.16; }.nv-order-platforms button:hover,.nv-order-platforms button.active { border-color: rgba(184,101,255,.68); background: linear-gradient(145deg,rgba(168,85,247,.16),rgba(35,18,45,.28)); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(75,26,113,.12); }.nv-order-platforms button.active { color: #eecfff; }.nv-order-platforms button[data-nv-platform="all"].active { border-color: rgba(190,98,255,.75); background: linear-gradient(145deg,rgba(168,85,247,.23),rgba(71,28,91,.18)); }.nv-order-platforms button[data-nv-platform="all"] i { color: #c77dff; }.nv-order-platforms button[data-nv-platform="favorites"] i { color: #fff; }.nv-order-platforms button[data-nv-platform="auto subscription"] i { color: #fff; }.nv-order-platforms button[data-nv-platform="developer services"] i { color: #fff; }.nv-order-platforms button[data-nv-platform="instagram"] i { color: #ff4f8b; }.nv-order-platforms button[data-nv-platform="facebook"] i { color: #248bff; }.nv-order-platforms button[data-nv-platform="tiktok"] i { color: #24f2f2; }.nv-order-platforms button[data-nv-platform="twitter"] i { color: #fff; }.nv-order-platforms button[data-nv-platform="youtube"] i { color: #ff1818; }.nv-order-platforms button[data-nv-platform="telegram"] i { color: #29a9eb; }.nv-order-platforms button[data-nv-platform="discord"] i { color: #5865f2; }.nv-order-platforms button[data-nv-platform="spotify"] i { color: #1ed760; }.nv-order-platforms button[data-nv-platform="snapchat"] i { color: #fffc00; }.nv-order-platforms button[data-nv-platform="twitch"] i { color: #9146ff; }.nv-order-platforms button[data-nv-platform="linkedin"] i { color: #0a66c2; }.nv-order-platforms button[data-nv-platform="other"] i { color: #777; }.nv-order-workspace { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 18px; align-items: start; }.nv-order-form-card { margin: 0; }.nv-order-summary { position: sticky; top: 90px; padding: 24px; border: 1px solid var(--nv-line); border-radius: var(--nv-radius); background: linear-gradient(145deg,rgba(28,20,38,.96),rgba(14,10,20,.96)); box-shadow: var(--nv-shadow); }.nv-order-summary .nv-card-icon { margin-bottom: 18px; }.nv-order-summary h3 { margin: 0 0 6px; color: #fff; font-size: 22px; }.nv-order-summary-head p { color: var(--nv-muted); font-size: 13px; }.nv-order-summary dl { margin: 23px 0; }.nv-order-summary dl > div { padding: 12px 0; display: grid; grid-template-columns: 90px 1fr; gap: 10px; border-bottom: 1px solid rgba(195,148,255,.08); }.nv-order-summary dt { color: #817589; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }.nv-order-summary dd { margin: 0; color: #e5daec; text-align: right; font-size: 12px; overflow-wrap: anywhere; }.nv-order-summary .nv-summary-total { margin-top: 8px; padding: 17px 0; }.nv-order-summary .nv-summary-total dd { color: #d198ff; font: 800 19px "Manrope",sans-serif; }.nv-order-assurance { padding: 14px; display: flex; gap: 11px; border: 1px solid rgba(168,85,247,.16); border-radius: 12px; background: rgba(168,85,247,.055); }.nv-order-assurance i { margin-top: 4px; color: #c47dff; }.nv-order-assurance span { display: grid; }.nv-order-assurance small { color: var(--nv-muted); font-size: 11px; }
.nv-secure-badge { padding: 11px 14px; display: flex; gap: 10px; align-items: center; border: 1px solid rgba(56,217,150,.18); border-radius: 12px; background: rgba(56,217,150,.055); }.nv-secure-badge i { color: var(--nv-success); }.nv-secure-badge span { display: grid; }.nv-secure-badge small { color: var(--nv-muted); }.nv-funds-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 18px; align-items: start; }.nv-funds-card { margin: 0; }.nv-funds-aside { padding: 24px; border: 1px solid var(--nv-line); border-radius: var(--nv-radius); background: linear-gradient(145deg,rgba(28,20,38,.96),rgba(14,10,20,.96)); box-shadow: var(--nv-shadow); }.nv-funds-aside h3 { margin: 0 0 20px; color: #fff; }.nv-funds-aside ul { margin: 0 0 22px; padding: 0; list-style: none; }.nv-funds-aside li { margin-bottom: 16px; display: flex; gap: 10px; color: var(--nv-muted); }.nv-funds-aside li i { width: 22px; height: 22px; display: grid; place-items: center; flex: 0 0 22px; border-radius: 50%; background: rgba(56,217,150,.09); color: var(--nv-success); font-size: 9px; }.nv-funds-aside > a { padding-top: 18px; display: block; border-top: 1px solid var(--nv-line); font-weight: 700; }.nv-funds-aside > a i { margin-right: 7px; }.nv-payment-history .col-md-8,.nv-funds-content .col-md-8 { width: 100%; margin-left: 0; }.nv-payment-history .well { overflow-x: auto; }
.nv-services-intro { margin-bottom: 22px; }.nv-page-services .nav-pills { margin-bottom: 14px; padding: 12px; border: 1px solid var(--nv-line); border-radius: 15px; background: rgba(22,15,29,.72); }.nv-page-services .nav-pills .search { min-width: min(420px,55vw); }.nv-page-services .nav-pills .input-group .form-control { height: 44px; }.nv-page-services .nav-pills .btn { min-height: 44px; }.nv-services-table-card { padding: 0!important; overflow-x: auto!important; }.nv-services-table-card .table > tbody > tr[data-filter-table-category-id] > td[colspan] { padding: 15px 16px; background: linear-gradient(90deg,rgba(168,85,247,.14),rgba(168,85,247,.02)); color: #f1ddff; font-family: "Manrope",sans-serif; }.nv-services-table-card .favorite-active { color: #d9a0ff; text-shadow: 0 0 12px rgba(192,132,252,.45); }.nv-services-table-card .btn-xs { min-height: 30px; padding: 4px 9px; }

@keyframes nvLogoPulse { 0%,100% { filter: drop-shadow(0 0 8px rgba(184,81,255,.28)); transform: translateY(0) } 50% { filter: drop-shadow(0 0 17px rgba(195,100,255,.62)); transform: translateY(-1px) } }
@keyframes nvGradient { to { background-position: 180% center } }
@keyframes nvMarquee { to { transform: translateX(-40%) } }
@keyframes nvBars { to { height: 92% } }
@keyframes nvFloat { 0%,100% { transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0) } 50% { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-10px) } }
@keyframes nvStatus { 50% { opacity: .55; box-shadow: 0 0 0 8px rgba(56,217,150,.04),0 0 10px rgba(56,217,150,.2) } }

@media (max-width: 991px) {
  .nv-auth-hero { grid-template-columns: 1fr; gap: 38px; min-height: 0; padding-top: 48px; }
  .nv-auth-copy { text-align: center; }
  .nv-auth-copy > p, .nv-step-list { margin-left: auto; margin-right: auto; }
  .nv-trust-row { justify-content: center; }
  .nv-feature-card,.nv-feature-card-main { grid-column: span 3; }.nv-proof-section { grid-template-columns: 1fr; }.nv-proof-copy { max-width: 680px; text-align: center; margin: auto; }.nv-ticket-layout { grid-template-columns: 1fr; }.nv-ticket-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }.nv-ticket-aside h3,.nv-ticket-aside ol { grid-column: 1; }.nv-support-note { grid-column: 2; grid-row: 1 / span 3; align-self: start; }
  .nv-order-platforms { grid-template-columns: repeat(4,1fr); }.nv-order-workspace,.nv-funds-layout { grid-template-columns: 1fr; }.nv-order-summary { position: static; }.nv-order-intro,.nv-funds-intro,.nv-services-intro { align-items: flex-start; }
}

@media (max-width: 767px) {
  .nv-shell .navbar > .container, .nv-shell .navbar > .container-fluid { display: block; }
  .nv-shell .navbar-header { min-height: 71px; }
  .nv-shell .navbar-brand img { max-width: 145px; height: 40px; }
  .nv-shell .navbar-collapse { padding: 8px 15px 18px; border-top: 1px solid var(--nv-line); background: rgba(9,7,13,.97); }
  .nv-shell .navbar-nav { margin: 0; }
  .nv-shell .navbar-nav > li > a { margin: 2px 0; }
  .nv-page, .nv-page-intro { padding-left: 15px; padding-right: 15px; }
  .nv-page-intro h1 { font-size: 28px; }
  .nv-auth-hero { padding: 38px 15px 60px; }
  .nv-auth-copy h1 { font-size: 42px; }
  .nv-auth-copy > p { font-size: 16px; }
  .nv-auth-hero .well, .nv-shell .well { padding: 19px; }
  .nv-shell .btn { width: 100%; }
  .nv-shell .pull-right-middle { display: block; float: none !important; margin-top: 16px; text-align: left; }
  .nv-shell .table-responsive { border: 1px solid var(--nv-line); }
  .nv-footer .container-fluid { flex-direction: column; text-align: center; gap: 4px; }
  .nv-logo-marquee { margin-top: 0; }.nv-landing-section { padding: 88px 15px 10px; }.nv-feature-grid { grid-template-columns: 1fr; }.nv-feature-card,.nv-feature-card-main { grid-column: 1; }.nv-card-visual { opacity: .22; }.nv-process-grid { grid-template-columns: 1fr 1fr; }.nv-process-grid::before { display: none; }.nv-dashboard-preview { min-height: 300px; transform: none; }.nv-preview-body { grid-template-columns: 70px 1fr; }.nv-final-cta { margin: 95px 15px 65px; padding: 32px 22px; flex-direction: column; text-align: center; }.nv-final-cta .btn { width: auto; }.nv-ticket-aside { display: block; }.nv-ticket-category-grid { grid-template-columns: 1fr; }.nv-thread-head { align-items: flex-start; flex-direction: column; }.nv-thread-head .btn { width: auto; }
  .nv-order-platforms { grid-template-columns: repeat(2,1fr); }.nv-order-intro,.nv-funds-intro,.nv-services-intro { flex-direction: column; }.nv-order-intro .btn,.nv-services-intro .btn { width: auto; }.nv-secure-badge { width: 100%; }.nv-page-services .nav-pills .search { width: 100%; min-width: 0; float: none!important; margin-top: 8px; }.nv-page-services .nav-pills > li { float: none; }.nv-page-services .nav-pills .dropdown > .btn { width: 100%; }.nv-order-summary dl > div { grid-template-columns: 1fr; }.nv-order-summary dd { text-align: left; }
}

@media (max-width: 480px) { .nv-process-grid { grid-template-columns: 1fr; }.nv-preview-body aside { display: none; }.nv-preview-body { grid-template-columns: 1fr; } }

/* Responsive QA corrections */
.nv-order-workspace { width: 100%; min-width: 0; }
.nv-order-workspace > *, .nv-order-form-card, .nv-order-form-card form { min-width: 0; }
.nv-mobile-dock { display: none; }
@keyframes nvReveal { from { opacity: 0; transform: translateY(24px) } to { opacity: 1; transform: none } }

@media (min-width: 992px) {
  .nv-page-new-order .nv-platform-panel { max-width: 1180px; margin-bottom: 16px; border-radius: 15px; }
  .nv-page-new-order .nv-platform-panel-head { min-height: 54px; padding: 0 20px; }
  .nv-page-new-order .nv-platform-panel-head h3 { font-size: 19px; }
  .nv-page-new-order .nv-platform-panel-head i { font-size: 16px; }
  .nv-page-new-order .nv-order-platforms { padding: 16px 20px 18px; gap: 10px 12px; }
  .nv-page-new-order .nv-order-platforms button { min-height: 54px; padding: 10px 14px; gap: 10px; border-radius: 10px; font-size: 13px; }
  .nv-page-new-order .nv-order-platforms button i { width: 21px; flex-basis: 21px; font-size: 17px; }
  .nv-page-new-order .nv-order-platforms button span { line-height: 1.12; }
}

/* Brand-led explainer, command stats, and premium chrome */
.nv-guest .navbar-default { border-bottom-color: rgba(192,132,252,.16); background: rgba(7,5,10,.9); }
.nv-guest .navbar > .container { max-width: 1180px; width: 100%; }
.nv-guest .navbar-nav > li:last-child > a { padding-left: 18px; padding-right: 18px; border: 1px solid rgba(192,132,252,.22); background: rgba(168,85,247,.1); color: #f0dcff; }
.nv-shell .navbar-toggle, .nv-shell .navbar-toggle:hover, .nv-shell .navbar-toggle:focus { border-color: rgba(192,132,252,.42); background: rgba(168,85,247,.1); }
.nv-wizard-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: center; padding-top: 145px; }
.nv-wizard-copy h2 { margin: 4px 0 15px; color: #fff; font-size: clamp(34px,4vw,52px); font-weight: 800; line-height: 1.08; }
.nv-wizard-copy > p { margin-bottom: 25px; color: var(--nv-muted); font-size: 16px; }
.nv-wizard-steps { display: grid; gap: 11px; margin-bottom: 26px; }
.nv-wizard-steps article { padding: 13px; display: grid; grid-template-columns: 37px 1fr; gap: 12px; align-items: center; border: 1px solid rgba(195,148,255,.11); border-radius: 13px; background: rgba(255,255,255,.022); }
.nv-wizard-steps article > span { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(192,132,252,.3); border-radius: 11px; background: rgba(168,85,247,.1); color: #d4a5ff; font: 800 11px "Manrope",sans-serif; }
.nv-wizard-steps h3 { margin: 0 0 2px; color: #fff; font-size: 15px; }
.nv-wizard-steps p { margin: 0; color: var(--nv-muted); font-size: 12px; }
.nv-wizard-visual { position: relative; min-height: 550px; display: grid; place-items: center; isolation: isolate; }
.nv-wizard-visual::before { content: ""; position: absolute; z-index: -2; inset: 9% 4%; border: 1px solid rgba(192,132,252,.18); border-radius: 35% 48% 32% 48%; background: radial-gradient(circle at 44% 48%,rgba(168,85,247,.2),transparent 58%); filter: blur(.2px); animation: nvMorph 11s ease-in-out infinite alternate; }
.nv-wizard-visual img { position: relative; z-index: 2; width: 100%; max-width: 760px; height: auto; filter: drop-shadow(0 35px 40px rgba(0,0,0,.36)) drop-shadow(0 0 28px rgba(168,85,247,.17)); animation: nvWizardFloat 6s ease-in-out infinite; }
.nv-wizard-orbit { position: absolute; z-index: -1; border: 1px solid rgba(192,132,252,.15); border-radius: 50%; pointer-events: none; }.nv-orbit-one { width: 82%; aspect-ratio: 1; animation: nvOrbitSpin 22s linear infinite; }.nv-orbit-two { width: 62%; aspect-ratio: 1; animation: nvOrbitSpin 16s linear infinite reverse; }
.nv-social-float { position: absolute; z-index: 4; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(210,164,255,.32); border-radius: 15px; background: rgba(26,17,36,.88); color: #d69dff; font-size: 21px; box-shadow: 0 13px 28px rgba(0,0,0,.28),inset 0 0 18px rgba(168,85,247,.08); backdrop-filter: blur(12px); }
.nv-social-instagram { top: 11%; left: 14%; animation: nvIconFloat 4.8s ease-in-out infinite; }.nv-social-tiktok { top: 7%; right: 13%; animation: nvIconFloat 5.4s ease-in-out -.9s infinite; }.nv-social-youtube { bottom: 12%; right: 9%; animation: nvIconFloat 4.6s ease-in-out -1.8s infinite; }.nv-social-telegram { bottom: 8%; left: 18%; animation: nvIconFloat 5.1s ease-in-out -2.6s infinite; }
.nv-command-stats { margin-bottom: 18px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.nv-command-stats a { min-width: 0; padding: 16px; display: flex; gap: 12px; align-items: center; border: 1px solid var(--nv-line); border-radius: 15px; background: linear-gradient(145deg,rgba(28,21,37,.92),rgba(15,10,21,.92)); color: var(--nv-text); box-shadow: 0 12px 30px rgba(0,0,0,.12); }
.nv-command-stats a:hover { border-color: var(--nv-line-hover); transform: translateY(-3px); }
.nv-command-stats a > i { width: 39px; height: 39px; display: grid; place-items: center; flex: 0 0 39px; border: 1px solid rgba(192,132,252,.2); border-radius: 11px; background: rgba(168,85,247,.1); color: #c77dff; }
.nv-command-stats a > span { min-width: 0; display: grid; }.nv-command-stats strong { overflow: hidden; color: #fff; font: 800 15px "Manrope",sans-serif; text-overflow: ellipsis; white-space: nowrap; }.nv-command-stats small { color: var(--nv-muted); font-size: 10px; white-space: nowrap; }
.nv-category-explorer { margin-bottom: 18px; padding: 20px; border: 1px solid var(--nv-line); border-radius: 18px; background: linear-gradient(145deg,rgba(25,18,34,.92),rgba(13,9,18,.92)); box-shadow: 0 16px 45px rgba(0,0,0,.14); }
.nv-category-explorer-head { margin-bottom: 15px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }.nv-category-explorer-head h3 { margin: 0; color: #fff; font-size: 20px; }.nv-category-explorer-head h3 small { color: #8f7c9e; font-size: 12px; }.nv-category-search { position: relative; width: min(310px,38%); margin: 0!important; }.nv-category-search i { position: absolute; left: 13px; top: 50%; z-index: 1; color: #806f8c; transform: translateY(-50%); }.nv-category-search input { width: 100%; height: 42px; padding: 9px 12px 9px 38px; border: 1px solid var(--nv-line); border-radius: 11px; outline: none; background: rgba(6,4,9,.55); color: #fff; }.nv-category-search input:focus { border-color: var(--nv-purple); box-shadow: 0 0 0 3px rgba(168,85,247,.1); }
.nv-category-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }.nv-category-button { min-width: 0; min-height: 48px; padding: 8px 11px; display: grid; grid-template-columns: 28px minmax(0,1fr) auto; gap: 9px; align-items: center; border: 1px solid rgba(195,148,255,.11); border-radius: 11px; background: rgba(255,255,255,.02); color: #b5a8be; text-align: left; transition: .2s ease; }.nv-category-button:hover,.nv-category-button.active { border-color: rgba(184,101,255,.65); background: rgba(168,85,247,.1); color: #fff; transform: translateY(-1px); }.nv-category-button i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: rgba(168,85,247,.09); color: #c77dff; }.nv-category-button span { overflow: hidden; font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }.nv-category-button small { color: #6f6278; font-size: 9px; }.nv-category-button[hidden] { display: none; }.nv-category-toggle { display: none; }
.nv-page-terms { max-width: 1120px; }
.nv-legal-hero { margin-bottom: 22px; padding: 34px; border: 1px solid var(--nv-line); border-radius: 18px; background: linear-gradient(145deg,rgba(28,20,38,.92),rgba(12,8,17,.95)); box-shadow: var(--nv-shadow); }
.nv-legal-hero h2 { max-width: 760px; margin: 8px 0 10px; color: #fff; font-size: 36px; font-weight: 800; line-height: 1.08; }
.nv-legal-hero p { max-width: 760px; margin: 0; color: var(--nv-muted); font-size: 15px; line-height: 1.65; }
.nv-legal-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.nv-legal-card { margin: 0; padding: 22px; border: 1px solid var(--nv-line); border-radius: 15px; background: linear-gradient(145deg,rgba(24,18,32,.88),rgba(11,8,15,.94)); color: var(--nv-muted); }
.nv-legal-card > i { width: 42px; height: 42px; margin-bottom: 16px; display: grid; place-items: center; border: 1px solid rgba(192,132,252,.24); border-radius: 12px; background: rgba(168,85,247,.1); color: #c77dff; font-size: 17px; }
.nv-legal-card h3 { margin: 0 0 8px; color: #fff; font-size: 18px; font-weight: 800; }
.nv-legal-card p { margin: 0; line-height: 1.65; }
.nv-legal-notice { margin-top: 14px; padding: 22px; border: 1px solid rgba(168,85,247,.22); border-radius: 15px; background: rgba(168,85,247,.06); }
.nv-legal-notice h3 { margin: 0 0 8px; color: #fff; font-size: 18px; }
.nv-legal-notice p { margin: 0; color: var(--nv-muted); line-height: 1.65; }
.nv-footer { margin-top: 90px; padding: 54px 24px 22px; border-top-color: rgba(192,132,252,.12); background: radial-gradient(circle at 20% 0,rgba(168,85,247,.08),transparent 35%),rgba(7,5,10,.72); }
.nv-footer-inner { max-width: 1180px; margin: 0 auto 42px; display: grid; grid-template-columns: minmax(260px,1fr) 150px 150px; gap: 80px; }
.nv-footer-brand img { width: 220px; height: 60px; object-fit: contain; object-position: left center; filter: drop-shadow(0 0 13px rgba(168,85,247,.26)); }.nv-footer-brand p { max-width: 390px; margin: 16px 0 0; color: #83778e; }
.nv-footer-column { display: flex; flex-direction: column; gap: 9px; }.nv-footer-column strong { margin-bottom: 5px; color: #f2e9f8; font-family: "Manrope",sans-serif; }.nv-footer-column a { color: #82758e; }.nv-footer-column a:hover { color: #d3a5ff; }
.nv-footer-bottom { max-width: 1180px; margin: auto; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(195,148,255,.08); color: #665c6d; font-size: 12px; }
@keyframes nvWizardFloat { 0%,100% { transform: translateY(0) rotate(-.4deg) } 50% { transform: translateY(-13px) rotate(.5deg) } }
@keyframes nvIconFloat { 0%,100% { transform: translateY(0) rotate(-2deg) } 50% { transform: translateY(-11px) rotate(3deg); box-shadow: 0 18px 35px rgba(73,25,108,.35),0 0 22px rgba(168,85,247,.18) } }
@keyframes nvOrbitSpin { to { transform: rotate(360deg) } }
@keyframes nvMorph { to { border-radius: 48% 30% 45% 30%; transform: scale(1.04) rotate(2deg) } }

@media (max-width: 767px) {
  .nv-auth { padding-bottom: 88px; }
  .nv-auth .nv-footer { padding-bottom: 105px; }
  .nv-ambient { display: none; }
  .nv-shell .navbar-brand { padding-left: 23px; }
  .nv-shell .navbar-brand img { max-width: 190px; height: 48px; transform: scale(1.13); transform-origin: left center; }
  .nv-page-intro { align-items: flex-start; }.nv-page-intro > div:first-child { min-width: 0; }.nv-header-actions { flex: 0 0 auto; }.nv-header-actions .btn-primary { width: 48px; padding-left: 0; padding-right: 0; }.nv-header-actions .btn-primary span { display: none; }.nv-header-actions .btn-primary i { margin: 0; }
  .nv-main:has(.nv-page-new-order) > .nv-page-intro { display: none; }
  .nv-page-new-order { padding-top: 22px; }
  .nv-page-new-order .nv-order-intro { margin-bottom: 22px; }
  .nv-page-new-order .nv-order-intro h2 { font-size: 32px; line-height: 1.08; }
  .nv-page-new-order .nv-order-intro p { font-size: 15px; line-height: 1.55; }
  .nv-order-workspace { width: 100%; max-width: 100%; grid-template-columns: minmax(0,1fr); }
  .nv-order-workspace > * { width: 100%; max-width: 100%; }
  .nv-order-form-card .select2-container, .nv-order-form-card .search-dropdown { width: 100%!important; max-width: 100%; min-width: 0!important; }
  .nv-page-orders .well-float, .nv-services-table-card { width: 100%; max-width: calc(100vw - 30px); overflow-x: auto!important; -webkit-overflow-scrolling: touch; }
  .nv-page-orders .table, .nv-services-table-card .table { width: max-content; min-width: 700px; }
  .nv-page-orders > .row > [class*="col-"], .nv-page-services > .row > [class*="col-"] { min-width: 0; }
  .nv-mobile-dock { position: fixed; z-index: 1200; left: 10px; right: 10px; bottom: max(10px,env(safe-area-inset-bottom)); min-height: 72px; padding: 8px 7px; display: grid; grid-template-columns: repeat(5,1fr); gap: 3px; border: 1px solid rgba(192,132,252,.25); border-radius: 20px; background: rgba(15,10,21,.94); box-shadow: 0 18px 55px rgba(0,0,0,.55),0 0 30px rgba(125,48,185,.12); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
  .nv-mobile-dock a { min-width: 0; min-height: 54px; padding: 6px 2px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 13px; color: #8f829b; font-size: 10px; font-weight: 700; text-align: center; }
  .nv-mobile-dock a i { font-size: 18px; }
  .nv-mobile-dock a:hover, .nv-mobile-dock a.active { background: rgba(168,85,247,.14); color: #d9adff; }
  .nv-mobile-dock .nv-dock-balance { margin-top: -18px; border: 1px solid rgba(192,132,252,.34); background: linear-gradient(145deg,#a855f7,#6d28d9); color: #fff; box-shadow: 0 9px 26px rgba(124,58,237,.34); }
  .nv-mobile-dock .nv-dock-balance:hover { background: linear-gradient(145deg,#bb70ff,#7c3aed); color: #fff; }
  .nv-mobile-dock .nv-dock-balance i { font-size: 17px; }
  .nv-mobile-dock .nv-dock-balance strong { max-width: 100%; overflow: hidden; text-overflow: ellipsis; font-size: 11px; }
  .nv-mobile-dock .nv-dock-balance span { font-size: 9px; }
  .nv-wizard-section { grid-template-columns: 1fr; gap: 30px; padding-top: 95px; }.nv-wizard-copy { text-align: center; }.nv-wizard-copy > p { max-width: 550px; margin-left: auto; margin-right: auto; }.nv-wizard-steps { text-align: left; }.nv-wizard-visual { min-height: 380px; }.nv-social-float { width: 39px; height: 39px; border-radius: 12px; font-size: 17px; }.nv-command-stats { grid-template-columns: repeat(2,1fr); }.nv-command-stats a { padding: 12px; }.nv-command-stats small { white-space: normal; }.nv-footer { margin-top: 55px; padding: 40px 20px 105px; }.nv-footer-inner { margin-bottom: 30px; grid-template-columns: 1fr 1fr; gap: 32px 25px; }.nv-footer-brand { grid-column: 1 / -1; text-align: center; }.nv-footer-brand img { object-position: center; }.nv-footer-brand p { margin-left: auto; margin-right: auto; }.nv-footer-bottom { flex-direction: column; text-align: center; gap: 5px; }
  .nv-page-new-order .nv-command-stats { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 6px; }
  .nv-page-new-order .nv-command-stats a { min-height: 82px; padding: 9px 4px; flex-direction: column; justify-content: center; gap: 6px; text-align: center; }
  .nv-page-new-order .nv-command-stats a > i { width: 31px; height: 31px; flex-basis: 31px; border-radius: 9px; font-size: 12px; }
  .nv-page-new-order .nv-command-stats a > span { width: 100%; justify-items: center; }
  .nv-page-new-order .nv-command-stats strong { max-width: 100%; font-size: 11px; }
  .nv-page-new-order .nv-command-stats small { display: none; }
  .nv-page-new-order .nv-platform-panel { margin-left: -1px; margin-right: -1px; border-radius: 18px; }
  .nv-page-new-order .nv-platform-panel-head { min-height: 66px; padding: 0 17px; }
  .nv-page-new-order .nv-platform-panel-head h3 { font-size: 18px; }
  .nv-page-new-order .nv-platform-panel-head i { font-size: 16px; }
  .nv-page-new-order .nv-order-platforms { padding: 14px; gap: 8px; }
  .nv-page-new-order .nv-order-platforms button { min-height: 54px; padding: 9px 10px; display: flex; justify-content: flex-start; gap: 9px; border-radius: 11px; text-align: left; font-size: 11px; }
  .nv-page-new-order .nv-order-platforms button i { width: 20px; flex: 0 0 20px; font-size: 16px; text-align: center; }
  .nv-page-new-order .nv-order-platforms button span { overflow: hidden; font-size: 11px; line-height: 1.18; text-overflow: ellipsis; white-space: normal; }
  .nv-page-new-order .nv-category-explorer { padding: 15px; }
  .nv-page-new-order .nv-category-explorer-head { align-items: stretch; flex-direction: column; gap: 11px; }
  .nv-page-new-order .nv-category-search { width: 100%; }
  .nv-page-new-order .nv-category-grid { max-height: 218px; grid-template-columns: repeat(2,minmax(0,1fr)); overflow: hidden; transition: max-height .3s ease; }
  .nv-page-new-order .nv-category-explorer.expanded .nv-category-grid, .nv-page-new-order .nv-category-explorer.searching .nv-category-grid { max-height: 2000px; }
  .nv-page-new-order .nv-category-button { grid-template-columns: 25px minmax(0,1fr); min-height: 43px; padding: 7px 8px; }
  .nv-page-new-order .nv-category-button i { width: 25px; height: 25px; }
  .nv-page-new-order .nv-category-button small { display: none; }
  .nv-page-new-order .nv-category-toggle { width: 100%; min-height: 38px; margin-top: 10px; display: flex; justify-content: center; gap: 8px; align-items: center; border: 0; border-top: 1px solid var(--nv-line); background: transparent; color: #c991ff; font-size: 11px; font-weight: 800; }
  .nv-page-new-order .nv-category-explorer.expanded .nv-category-toggle i { transform: rotate(180deg); }
  .nv-legal-hero { padding: 24px 18px; }
  .nv-legal-hero h2 { font-size: 28px; }
  .nv-legal-grid { grid-template-columns: 1fr; }
  .nv-legal-card { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .nv-shell *, .nv-shell *::before, .nv-shell *::after { scroll-behavior: auto !important; transition: none !important; }
  .nv-wizard-visual img,.nv-social-float,.nv-wizard-orbit,.nv-wizard-visual::before { animation: none!important; }
}
