/* Nexa Demo Wizard Fullwidth */

.nf-full * { box-sizing: border-box; }

.nf-full {
  width: 100%;
  background: var(--nf-bg, #f5f7fb);
  border-radius: var(--nf-radius, 10px);
  border: 1px solid var(--nf-border, rgba(11,28,61,0.06));
  position: relative;
  overflow: hidden;
  font-family: 'Satoshi', sans-serif;
  box-shadow: 0 4px 60px rgba(0,0,0,0.08);
}

.nf-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--nf-accent2, #005FD6) 30%, var(--nf-accent, #0074FF) 50%, #7AB3FF 55%, var(--nf-accent, #0074FF) 70%, transparent 90%);
  background-size: 200% 100%;
  animation: nfTopShine 4s ease infinite;
}

@keyframes nfTopShine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.nf-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: auto;
}

.nf-left {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(165deg, var(--nf-left1, rgba(7,20,48,0.97)) 0%, var(--nf-left2, rgba(7,20,48,0.99)) 100%);
}

.nf-left::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(0,116,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.nf-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,116,255,0.06);
  border: 1px solid rgba(0,116,255,0.12);
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.nf-left-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nf-accent, #0074FF);
  box-shadow: 0 0 8px rgba(0,116,255,0.5);
  animation: nfBadgePulse 2.5s ease-in-out infinite;
}

@keyframes nfBadgePulse {
  0%,100% { box-shadow: 0 0 6px rgba(0,116,255,0.4); }
  50% { box-shadow: 0 0 16px rgba(0,116,255,0.7); }
}

.nf-left-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.nf-left-title {
  font-family:'Elms Sans','Satoshi',ui-sans-serif,system-ui,sans-serif;
  font-size: 30px;
  font-weight:700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 10px;
}

.nf-left-title span { color: var(--nf-accent, #0074FF); }

.nf-left-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

.nf-left-trust {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.18);
}

.nf-left-trust svg {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,0.18);
  stroke-width: 2;
  fill: none;
}

.nf-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.nf-progress-wrap {
  padding: 28px 32px 0;
}

.nf-progress-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.nf-prog-seg {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(11,28,61,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.nf-prog-seg.on {
  background: linear-gradient(90deg, var(--nf-accent2, #005FD6), var(--nf-accent, #0074FF));
}

.nf-prog-seg.on::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: nfSegShimmer 2.5s ease infinite;
}

@keyframes nfSegShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.nf-prog-seg.done {
  background: rgba(0,116,255,0.25);
}

.nf-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nf-prog-label {
  font-size: 11px;
  font-weight: 700;
  color: #004aad;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nf-prog-count {
  font-size: 10px;
  font-weight: 600;
  color: rgba(11,28,61,0.3);
}

.nf-body {
  padding: 20px 32px 8px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(11,28,61,0.08) transparent;
}

.nf-body::-webkit-scrollbar { width: 3px; }
.nf-body::-webkit-scrollbar-track { background: transparent; }
.nf-body::-webkit-scrollbar-thumb { background: rgba(11,28,61,0.08); border-radius: 3px; }

.nf-step {
  display: none;
  animation: nfIn 0.35s cubic-bezier(0.22,1,0.36,1);
}

.nf-step.on { display: block; }

@keyframes nfIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nf-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.nf-svc {
  border: 1.5px solid rgba(11,28,61,0.06);
  border-radius: 12px;
  padding: 18px 12px 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  background: var(--nf-card, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.nf-svc:hover {
  border-color: rgba(0,116,255,0.3);
  background: #f8fafd;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,28,61,0.04);
}

.nf-svc.on {
  border-color: var(--nf-accent, #0074FF);
  background: rgba(0,116,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,116,255,0.08), 0 8px 24px rgba(0,116,255,0.06);
}

.nf-svc-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,116,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.nf-svc-icon-wrap svg { width: 22px; height: 22px; display: block; }

.nf-svc.on .nf-svc-icon-wrap {
  background: rgba(0,116,255,0.14);
  box-shadow: 0 0 12px rgba(0,116,255,0.1);
}

.nf-svc-name { font-size: 12px; font-weight: 700; color: #0B1C3D; line-height: 1.2; }
.nf-svc-desc { font-size: 9.5px; color: #6b7a99; line-height: 1.3; }

.nf-svc .nf-chk {
  position: absolute;
  top: 6px; right: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--nf-accent, #0074FF);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.3);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.nf-svc .nf-chk svg { width: 10px; height: 10px; stroke: #fff; stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.nf-svc.on .nf-chk { opacity: 1; transform: scale(1); }

.nf-field { margin-bottom: 18px; position: relative; }

.nf-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: rgba(11,28,61,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.nf-field label em { color: #004aad; font-style: normal; }

.nf-field input,
.nf-field select,
.nf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(11,28,61,0.08);
  border-radius: 10px;
  background: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B1C3D;
  outline: none;
  transition: all 0.3s ease;
}

.nf-field input::placeholder,
.nf-field textarea::placeholder { color: rgba(11,28,61,0.25); }

.nf-field input:focus,
.nf-field select:focus,
.nf-field textarea:focus {
  border-color: rgba(0,116,255,0.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,116,255,0.08);
}

.nf-field input.err, .nf-field select.err { border-color: #FF4D4D; box-shadow: 0 0 0 3px rgba(255,77,77,0.06); }
.nf-field textarea { resize: none; min-height: 50px; }

.nf-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230074FF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.nf-custom-select {
  position: relative;
  cursor: pointer;
}

.nf-custom-select-trigger {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: 1.5px solid rgba(11,28,61,0.08);
  border-radius: 10px;
  background: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(11,28,61,0.25);
  position: relative;
  transition: all 0.3s ease;
  user-select: none;
}

.nf-custom-select-trigger.has-val { color: #0B1C3D; }

.nf-custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--nf-accent, #0074FF);
  transition: transform 0.3s ease;
}

.nf-custom-select.open .nf-custom-select-trigger {
  border-color: rgba(0,116,255,0.5);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,116,255,0.08);
}

.nf-custom-select.open .nf-custom-select-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.nf-custom-select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #f5f7fb;
  border: 1.5px solid rgba(0,116,255,0.2);
  border-radius: 10px;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.nf-custom-select.open .nf-custom-select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nf-custom-option {
  padding: 11px 14px;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2b3a55;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(11,28,61,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nf-custom-option:last-child { border-bottom: none; }

.nf-custom-option:hover {
  background: rgba(0,116,255,0.1);
  color: #0B1C3D;
  padding-left: 18px;
}

.nf-custom-option.selected {
  background: rgba(0,116,255,0.15);
  color: #0a3680;
  font-weight: 600;
}

.nf-custom-option.selected::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #004aad;
  box-shadow: 0 0 6px rgba(0,74,173,0.4);
}

.nf-err {
  color: #FF4D4D;
  font-size: 10px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}

.nf-err.on { display: block; }

.nf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.nf-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }

.nf-pill {
  padding: 8px 16px;
  border: 1.5px solid rgba(11,28,61,0.08);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(11,28,61,0.45);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
  user-select: none;
  background: #fff;
}

.nf-pill:hover { border-color: rgba(0,116,255,0.3); color: #0B1C3D; background: #f8fafd; }
.nf-pill input { display: none; }
.nf-pill.on { background: rgba(0,116,255,0.1); border-color: var(--nf-accent, #0074FF); color: #0a3680; box-shadow: 0 0 0 3px rgba(0,116,255,0.06); }

.nf-summary {
  background: #fff;
  border: 1.5px solid rgba(11,28,61,0.06);
  border-radius: 12px;
  padding: 18px;
}

.nf-summary h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #004aad;
  margin-bottom: 12px;
  font-weight: 700;font-family:'Elms Sans','Satoshi',ui-sans-serif,system-ui,sans-serif;}

.nf-sum-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(11,28,61,0.04);
  font-size: 12px;
}

.nf-sum-row:last-child { border-bottom: none; }
.nf-sum-row .nf-sl { color: #6b7a99; }
.nf-sum-row .nf-sv { color: #0B1C3D; font-weight: 600; text-align: right; max-width: 55%; }

.nf-success {
  display: none;
  text-align: center;
  padding: 48px 0 20px;
  animation: nfIn 0.5s ease;
}

.nf-success.on { display: block; }

.nf-success-ico {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,116,255,0.12), rgba(0,116,255,0.06));
  border: 1.5px solid rgba(0,116,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  animation: nfPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s both;
}

.nf-success-ico svg { width: 28px; height: 28px; stroke: #004aad; fill: none; stroke-width: 2.5; }

@keyframes nfPop {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.nf-success h3 {
  font-family:'Elms Sans','Satoshi',ui-sans-serif,system-ui,sans-serif;
  font-size: 22px;
  color: #0B1C3D;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.nf-success p {
  font-size: 13px;
  color: #6b7a99;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.nf-success-ctas {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nf-success-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nf-success-cta.green { background: var(--nf-accent, #0074FF); color: #fff; }
.nf-success-cta.green:hover { background: #3d92ff; box-shadow: 0 0 24px rgba(0,116,255,0.2); transform: translateY(-1px); }
.nf-success-cta.wa { background: #25D366; color: #fff; }
.nf-success-cta.wa:hover { background: #2be074; transform: translateY(-1px); }

.nf-success-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.nf-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px 22px;
}

.nf-back {
  background: none;
  border: none;
  color: rgba(11,28,61,0.3);
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  padding: 8px 4px;
}

.nf-back:hover { color: #0B1C3D; }
.nf-back svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

.nf-next {
  background: linear-gradient(135deg, var(--nf-accent, #0074FF), var(--nf-accent2, #005FD6));
  border: none;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 0 24px rgba(0,116,255,0.12);
  position: relative;
  overflow: hidden;
}

.nf-next::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.nf-next:hover {
  box-shadow: 0 0 36px rgba(0,116,255,0.22);
  transform: translateY(-1px);
}

.nf-next:hover::after { animation: nfBtnShine 0.6s ease; }
.nf-next:disabled { opacity: 0.6; cursor: wait; }

@keyframes nfBtnShine {
  from { left: -100%; }
  to { left: 150%; }
}

.nf-next svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; }

.nf-privacy-line {
  font-size: 9px;
  color: rgba(11,28,61,0.2);
  text-align: center;
  padding: 0 32px 18px;
  line-height: 1.5;
}

.nf-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* === THEME OVERRIDES (live view) === */
.nf-full, .nf-full * { box-sizing: border-box; }
.nf-full .nf-svc { background: var(--nf-card, #fff) !important; color: #0B1C3D; }
.nf-full .nf-svc-name { color: #0B1C3D !important; }
.nf-full .nf-svc-desc { color: #6b7a99 !important; }
.nf-full .nf-field input,
.nf-full .nf-field select,
.nf-full .nf-field textarea { background: #fff !important; color: #0B1C3D !important; }
.nf-full .nf-pill { background: #fff !important; color: rgba(11,28,61,0.45); }
.nf-full .nf-pill.on { background: rgba(0,116,255,0.1) !important; color: #0a3680; }
.nf-full .nf-custom-select-trigger { background: #fff !important; }
.nf-full .nf-custom-select-options { background: #f5f7fb !important; }
.nf-full .nf-custom-option { color: #2b3a55 !important; }
.nf-full .nf-summary { background: #fff !important; }
.nf-full .nf-sum-row .nf-sv { color: #0B1C3D !important; }
.nf-full .nf-success h3 { color: #0B1C3D !important; }
.nf-full .nf-next { color: #fff !important; }
.nf-full .nf-back { background: none !important; }
.nf-full .nf-left-title { color: #fff !important; }

@media (max-width: 900px) {
  .nf-layout { grid-template-columns: 1fr; }
  .nf-left { padding: 28px 24px; }
  .nf-left-trust { display: none; }
  .nf-services { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .nf-left { padding: 24px 20px; }
  .nf-left-title { font-size: 24px;font-family:'Elms Sans','Satoshi',ui-sans-serif,system-ui,sans-serif;}
  .nf-body, .nf-actions { padding-left: 20px; padding-right: 20px; }
  .nf-progress-wrap { padding-left: 20px; padding-right: 20px; }
  .nf-row { grid-template-columns: 1fr; gap: 0; }
  .nf-services { grid-template-columns: repeat(2, 1fr); }
  .nf-success-ctas { flex-direction: column; }
}
