/* ============================================================
   VOZ CHECKOUT SYSTEM — Global styles
   Modal · Floating Button · Funnels · Login Page
   ============================================================ */

/* ---- Reset ---- */
.voz-modal *, .voz-funnel *, .voz-login-page *, .voz-float-btn { box-sizing: border-box; }

/* ============================================================
   FLOATING DASHBOARD BUTTON
   ============================================================ */
.voz-float-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0B1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9990;
  box-shadow: 0 4px 16px rgba(11,31,58,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.voz-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,31,58,0.25);
}
.voz-float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: #0B1F3A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  font-family: 'Inter', system-ui, sans-serif;
}
.voz-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0B1F3A;
}
.voz-float-btn:hover .voz-float-tooltip { opacity: 1; }

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.voz-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,31,58,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.voz-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.voz-modal-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.25s;
  font-family: 'Inter', system-ui, sans-serif;
  max-height: 90vh;
  overflow-y: auto;
}
.voz-modal-overlay.open .voz-modal-card {
  transform: translateY(0);
}
.voz-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  padding: 4px;
  line-height: 1;
  transition: color 0.15s;
}
.voz-modal-close:hover { color: #374151; }

/* Modal logo */
.voz-modal-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.voz-modal-logo-mark {
  width: 32px;
  height: 32px;
  background: #0B1F3A;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.voz-modal-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F3A;
}

/* Tab switcher */
.voz-modal-tabs {
  display: flex;
  background: #F5F6F8;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}
.voz-modal-tab {
  flex: 1;
  padding: 9px 12px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', system-ui, sans-serif;
}
.voz-modal-tab.active {
  background: #fff;
  color: #0B1F3A;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Form fields */
.voz-field {
  margin-bottom: 16px;
}
.voz-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.voz-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.voz-input-wrap {
  position: relative;
}
.voz-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
  outline: none;
}
.voz-input:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.voz-input.error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}
.voz-input-pw { padding-right: 42px; }
.voz-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9CA3AF;
  padding: 0;
  display: flex;
  transition: color 0.15s;
}
.voz-pw-toggle:hover { color: #6B7280; }
.voz-field-error {
  font-size: 12px;
  color: #DC2626;
  margin-top: 4px;
  display: none;
}
.voz-field-error.show { display: block; }

/* Password strength */
.voz-pw-strength {
  margin-top: 6px;
  display: none;
}
.voz-pw-strength.show { display: block; }
.voz-pw-bars {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.voz-pw-bar {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: #E5E7EB;
  transition: background 0.3s;
}
.voz-pw-bar.weak { background: #EF4444; }
.voz-pw-bar.medium { background: #F59E0B; }
.voz-pw-bar.strong { background: #10B981; }
.voz-pw-label {
  font-size: 11px;
  color: #9CA3AF;
}

/* Checkbox */
.voz-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.voz-check-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #2563EB;
  cursor: pointer;
}
.voz-check-row label {
  font-size: 13px;
  color: #6B7280;
  cursor: pointer;
  line-height: 1.4;
}
.voz-check-row label a { color: #2563EB; text-decoration: underline; }

/* Forgot password */
.voz-forgot {
  font-size: 12px;
  color: #2563EB;
  text-decoration: none;
  float: right;
  margin-top: -12px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.voz-forgot:hover { text-decoration: underline; }

/* Submit button */
.voz-btn-primary {
  width: 100%;
  padding: 13px 20px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.voz-btn-primary:hover { background: #1D4ED8; }
.voz-btn-primary:active { transform: scale(0.98); }
.voz-btn-primary:disabled { background: #93C5FD; cursor: not-allowed; transform: none; }
.voz-btn-primary .voz-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: vozSpin 0.7s linear infinite;
  display: none;
}
.voz-btn-primary.loading .voz-spinner { display: block; }
.voz-btn-primary.loading .voz-btn-text { opacity: 0.7; }

/* Alert box */
.voz-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
  line-height: 1.4;
}
.voz-alert.show { display: block; }
.voz-alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.voz-alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }

/* Info box below tabs */
.voz-modal-info {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 12px;
  color: #1E40AF;
  margin-top: 20px;
  line-height: 1.5;
}

/* Tab panels */
.voz-tab-panel { display: none; }
.voz-tab-panel.active { display: block; }

/* ============================================================
   DEDICATED LOGIN PAGE /my-account/
   ============================================================ */
.voz-login-page {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
}
.voz-login-left {
  background: #0B1F3A;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.voz-login-left::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  pointer-events: none;
}
.voz-login-left-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.voz-login-left-logo .mark {
  width: 40px;
  height: 40px;
  background: #2563EB;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.voz-login-left-logo .name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.voz-login-left-logo .sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}
.voz-login-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 48px;
  margin-bottom: 8px;
}
.voz-login-headline {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 40px;
}
.voz-login-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.voz-login-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.voz-login-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(37,99,235,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60A5FA;
}
.voz-login-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.voz-login-feature-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.voz-login-ssl {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
  margin-top: 48px;
}
.voz-login-ssl svg { color: #10B981; }

.voz-login-right {
  background: #F5F6F8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.voz-login-form-wrap {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(11,31,58,0.08);
}
.voz-login-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #0B1F3A;
  margin: 0 0 6px;
}
.voz-login-form-sub {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 28px;
}

@media (max-width: 768px) {
  .voz-login-page { grid-template-columns: 1fr; }
  .voz-login-left { padding: 40px 24px; min-height: auto; }
  .voz-login-left::before { display: none; }
  .voz-login-right { padding: 32px 20px; }
  .voz-login-form-wrap { padding: 28px 24px; }
}

/* ============================================================
   NAVBAR — DASHBOARD LINK
   ============================================================ */
.voz-nav-dashboard {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: rgba(255,255,255,0.9) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
}
.voz-nav-dashboard:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}
.voz-nav-dashboard .green-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
}

/* ============================================================
   MULTI-STEP FUNNEL
   ============================================================ */
.voz-funnel {
  background: #F5F6F8;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  padding: 0 0 80px;
}

/* Funnel header */
.voz-funnel-header {
  background: #0B1F3A;
  padding: 20px 0;
  margin-bottom: 40px;
}
.voz-funnel-header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voz-funnel-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.voz-funnel-logo .mark {
  width: 32px;
  height: 32px;
  background: #2563EB;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.voz-funnel-logo .name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.voz-funnel-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.voz-funnel-secure svg { color: #10B981; }

/* Progress indicator */
.voz-progress {
  max-width: 860px;
  margin: 0 auto 36px;
  padding: 0 24px;
}
.voz-progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}
.voz-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}
.voz-progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15px;
  left: calc(50% + 15px);
  right: calc(-50% + 15px);
  height: 2px;
  background: #E5E7EB;
  z-index: 0;
  transition: background 0.3s;
}
.voz-progress-step.done:not(:last-child)::after { background: #2563EB; }
.voz-progress-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.voz-progress-step.active .voz-progress-dot {
  border-color: #2563EB;
  background: #2563EB;
  color: #fff;
}
.voz-progress-step.done .voz-progress-dot {
  border-color: #2563EB;
  background: #2563EB;
  color: #fff;
}
.voz-progress-step.done .voz-progress-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.voz-progress-step.done .voz-progress-num { display: none; }
.voz-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: #9CA3AF;
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}
.voz-progress-step.active .voz-progress-label { color: #2563EB; }
.voz-progress-step.done .voz-progress-label { color: #2563EB; }

/* Mobile progress pill */
.voz-progress-mobile {
  display: none;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #0B1F3A;
  background: #fff;
  border-radius: 20px;
  padding: 7px 20px;
  width: fit-content;
  margin: 0 auto 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 640px) {
  .voz-progress-steps { display: none; }
  .voz-progress-mobile { display: block; }
}

/* Funnel body */
.voz-funnel-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.voz-funnel-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.voz-funnel-layout.no-sidebar { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) {
  .voz-funnel-layout { grid-template-columns: 1fr; }
  .voz-funnel-sidebar { order: -1; }
}

/* Step panel */
.voz-step { display: none; }
.voz-step.active { display: block; }
.voz-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
}
.voz-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0B1F3A;
  margin: 0 0 6px;
}
.voz-step-subtitle {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 28px;
  line-height: 1.5;
}
.voz-step-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #F3F4F6;
}
.voz-step-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.voz-section-title {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F3A;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.voz-section-num {
  width: 22px;
  height: 22px;
  background: #EFF6FF;
  color: #2563EB;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Commune cards */
.voz-commune-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.voz-commune-card {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.voz-commune-card:hover { border-color: #93C5FD; background: #F8FAFF; }
.voz-commune-card.selected { border-color: #2563EB; background: #EFF6FF; }
.voz-commune-card.disabled {
  opacity: 0.55;
  cursor: default;
}
.voz-commune-card.disabled:hover { border-color: #E5E7EB; background: #fff; }
.voz-commune-icon {
  width: 40px;
  height: 40px;
  background: #F3F4F6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.voz-commune-name {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 4px;
}
.voz-commune-desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.4;
}
.voz-commune-tax {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: #065F46;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-top: 8px;
}
.voz-commune-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #F3F4F6;
  color: #6B7280;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.voz-commune-card.selected .voz-commune-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Plan cards */
.voz-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.voz-plan-card {
  border: 2px solid #E5E7EB;
  border-radius: 14px;
  padding: 22px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.voz-plan-card:hover { border-color: #93C5FD; }
.voz-plan-card.selected { border-color: #2563EB; }
.voz-plan-card.popular { border-color: #2563EB; }
.voz-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #0B1F3A;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.voz-plan-badge.popular-badge {
  background: #2563EB;
}
.voz-plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #DC2626;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translate(28%, -28%) rotate(45deg);
  transform-origin: center;
}
/* Better ribbon implementation */
.voz-plan-ribbon-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}
.voz-plan-ribbon-wrap span {
  position: absolute;
  top: 14px;
  right: -18px;
  background: #DC2626;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 24px;
  transform: rotate(45deg);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.voz-plan-price {
  font-size: 24px;
  font-weight: 800;
  color: #0B1F3A;
  margin: 0 0 2px;
}
.voz-plan-price-sub {
  font-size: 11px;
  color: #6B7280;
  margin-bottom: 4px;
}
.voz-plan-annual {
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
  margin-bottom: 16px;
}
.voz-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.voz-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 13px;
  color: #374151;
}
.voz-plan-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ECFDF5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
.voz-plan-check-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  background: #2563EB;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.voz-plan-card.selected .voz-plan-check-badge { display: flex; }
.voz-plan-billing-note {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 12px;
  color: #1E40AF;
  margin-top: 16px;
  line-height: 1.5;
}

/* Form inputs inside funnel */
.voz-funnel .voz-field { margin-bottom: 16px; }
.voz-funnel .voz-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.voz-funnel .voz-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
}
.voz-funnel .voz-input:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.voz-funnel .voz-input.error { border-color: #DC2626; }
.voz-funnel .voz-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.voz-funnel select.voz-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Radio cards */
.voz-radio-cards {
  display: flex;
  gap: 12px;
}
.voz-radio-card {
  flex: 1;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.voz-radio-card:hover { border-color: #93C5FD; }
.voz-radio-card.selected { border-color: #2563EB; background: #EFF6FF; }
.voz-radio-card input[type="radio"] { display: none; }
.voz-radio-card-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}
.voz-radio-card.selected .voz-radio-card-label { color: #2563EB; }
.voz-radio-card-sub {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 3px;
}

/* Order summary sidebar */
.voz-funnel-sidebar {
  position: sticky;
  top: 24px;
}
.voz-summary-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(11,31,58,0.06);
}
.voz-summary-title {
  font-size: 13px;
  font-weight: 700;
  color: #0B1F3A;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.voz-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}
.voz-summary-row:last-of-type { border-bottom: none; }
.voz-summary-row .label { color: #6B7280; }
.voz-summary-row .val { font-weight: 600; color: #0B1F3A; }
.voz-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid #0B1F3A;
  font-size: 16px;
  font-weight: 700;
  color: #0B1F3A;
}
.voz-summary-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #065F46;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 14px;
}
.voz-summary-includes {
  margin-top: 14px;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.6;
}

/* Step navigation buttons */
.voz-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}
.voz-btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: none;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.2s;
}
.voz-btn-back:hover { border-color: #9CA3AF; color: #374151; }
.voz-btn-next {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}
.voz-btn-next:hover { background: #1D4ED8; }
.voz-btn-next:disabled { background: #93C5FD; cursor: not-allowed; }

/* Waitlist form */
.voz-waitlist-form {
  background: #F8FAFF;
  border: 1.5px solid #DBEAFE;
  border-radius: 10px;
  padding: 16px;
  margin-top: 10px;
  display: none;
}
.voz-waitlist-form.show { display: block; }
.voz-waitlist-row {
  display: flex;
  gap: 10px;
}
.voz-waitlist-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  outline: none;
}
.voz-waitlist-row input:focus { border-color: #2563EB; }
.voz-waitlist-row button {
  padding: 10px 18px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  white-space: nowrap;
}

/* Company type cards (Funnel B) */
.voz-type-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.voz-type-card {
  border: 2px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.voz-type-card:hover { border-color: #93C5FD; }
.voz-type-card.selected { border-color: #2563EB; background: #F8FAFF; }
.voz-type-card-badge {
  display: inline-flex;
  background: #EFF6FF;
  color: #2563EB;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.voz-type-card.selected .voz-type-card-badge {
  background: #2563EB;
  color: #fff;
}
.voz-type-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #0B1F3A;
  margin-bottom: 4px;
}
.voz-type-card-capital {
  font-size: 13px;
  color: #2563EB;
  font-weight: 600;
  margin-bottom: 12px;
}
.voz-type-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.voz-type-card-features li {
  font-size: 13px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 7px;
}
.voz-type-card-features li::before {
  content: '·';
  color: #2563EB;
  font-weight: 700;
}
.voz-type-card-benefit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #F3F4F6;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

/* Zefix name checker */
.voz-name-field {
  margin-bottom: 16px;
}
.voz-name-input-row {
  display: flex;
  gap: 10px;
}
.voz-name-input-row .voz-input { flex: 1; }
.voz-zefix-status {
  display: none;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 8px;
  line-height: 1;
}
.voz-zefix-status.show { display: flex; }
.voz-zefix-status.checking { background: #F3F4F6; color: #6B7280; }
.voz-zefix-status.available { background: #ECFDF5; color: #065F46; border: 1px solid #BBF7D0; }
.voz-zefix-status.similar { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.voz-zefix-status.taken { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.voz-zefix-status.error { background: #F9FAFB; color: #6B7280; border: 1px solid #E5E7EB; }
.voz-zefix-similar-list {
  font-size: 11px;
  color: #6B7280;
  margin-top: 4px;
  margin-left: 19px;
}
.voz-name-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0,0,0,0.1);
  border-top-color: #6B7280;
  border-radius: 50%;
  animation: vozSpin 0.7s linear infinite;
}

/* AI purpose generator */
.voz-ai-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.voz-ai-btn:hover { background: #1D4ED8; }
.voz-ai-btn:disabled { background: #93C5FD; cursor: not-allowed; }
.voz-ai-tabs {
  display: flex;
  gap: 4px;
  background: #F3F4F6;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 12px;
}
.voz-ai-tab {
  flex: 1;
  padding: 7px;
  border: none;
  background: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.2s;
}
.voz-ai-tab.active { background: #fff; color: #0B1F3A; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.voz-ai-panel { display: none; }
.voz-ai-panel.active { display: block; }
.voz-ai-textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #374151;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}
.voz-ai-textarea:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.voz-ai-note {
  font-size: 12px;
  color: #9CA3AF;
  margin-top: 6px;
}
.voz-regenerate {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid #E5E7EB;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  margin-top: 10px;
  transition: all 0.2s;
}
.voz-regenerate:hover { border-color: #2563EB; color: #2563EB; }

/* Bank cards */
.voz-bank-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.voz-bank-card {
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.voz-bank-card:hover { border-color: #93C5FD; }
.voz-bank-card.selected { border-color: #2563EB; }
.voz-bank-card.recommended { border-color: #10B981; }
.voz-bank-highlight {
  background: #ECFDF5;
  color: #065F46;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.voz-bank-name { font-size: 18px; font-weight: 800; color: #0B1F3A; margin-bottom: 6px; }
.voz-bank-desc { font-size: 13px; color: #6B7280; margin-bottom: 12px; }
.voz-bank-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.voz-bank-features li {
  font-size: 12px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dynamic shareholder/director forms */
.voz-dynamic-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voz-dynamic-item {
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  background: #FAFAFA;
}
.voz-dynamic-item-title {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voz-remove-item {
  background: none;
  border: none;
  color: #DC2626;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.voz-remove-item:hover { opacity: 0.7; }
.voz-add-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: none;
  border: 1.5px dashed #D1D5DB;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.2s;
  margin-top: 8px;
}
.voz-add-item:hover { border-color: #2563EB; background: #EFF6FF; }
.voz-share-total {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.voz-share-total.ok { background: #ECFDF5; color: #065F46; }
.voz-share-total.err { background: #FEF2F2; color: #991B1B; }

/* Info/warning boxes inside funnel */
.voz-info-box {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #1E40AF;
  line-height: 1.5;
  margin: 12px 0;
}
.voz-warn-box {
  background: #FFFBEB;
  border-left: 3px solid #F59E0B;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #92400E;
  line-height: 1.5;
  margin: 12px 0;
}
.voz-success-box {
  background: #ECFDF5;
  border-left: 3px solid #10B981;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #065F46;
  line-height: 1.5;
  margin: 12px 0;
}

/* Director toggle */
.voz-director-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  margin-top: 12px;
}
.voz-director-toggle input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #2563EB;
  flex-shrink: 0;
}
.voz-director-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #92400E;
  cursor: pointer;
}
.voz-director-toggle-sub {
  font-size: 12px;
  color: #B45309;
  margin-top: 3px;
}

/* Documents checklist */
.voz-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.voz-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
}
.voz-checklist-item:last-child { border-bottom: none; }
.voz-checklist-icon {
  width: 20px;
  height: 20px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10B981;
}

/* Confirmation step */
.voz-confirm-step {
  text-align: center;
  padding: 48px 36px;
  max-width: 560px;
  margin: 0 auto;
}
.voz-confirm-anim {
  width: 72px;
  height: 72px;
  background: #ECFDF5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: vozPop 0.4s ease;
}
.voz-confirm-title {
  font-size: 22px;
  font-weight: 700;
  color: #0B1F3A;
  margin: 0 0 8px;
}
.voz-confirm-ref {
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 28px;
}
.voz-confirm-summary {
  background: #F8FAFF;
  border: 1.5px solid #DBEAFE;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}
.voz-confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid #EFF6FF;
}
.voz-confirm-row:last-child { border-bottom: none; }
.voz-confirm-row .k { color: #6B7280; }
.voz-confirm-row .v { font-weight: 600; color: #0B1F3A; }
.voz-confirm-next-steps {
  text-align: left;
  margin-bottom: 28px;
}
.voz-confirm-next-title {
  font-size: 14px;
  font-weight: 700;
  color: #0B1F3A;
  margin-bottom: 12px;
}
.voz-confirm-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voz-confirm-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
}
.voz-confirm-step-num {
  width: 22px;
  height: 22px;
  background: #0B1F3A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.voz-confirm-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: #2563EB;
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.voz-confirm-cta:hover { background: #1D4ED8; }

/* Payment step */
.voz-payment-summary {
  background: #F8FAFF;
  border: 1.5px solid #DBEAFE;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.voz-payment-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E5E7EB;
}
.voz-payment-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
}
.voz-payment-trust-item svg { color: #10B981; }
#voz-stripe-element {
  padding: 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 16px;
  min-height: 50px;
}
#voz-stripe-element.StripeElement--focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
#voz-stripe-error { color: #DC2626; font-size: 13px; margin-bottom: 12px; min-height: 20px; }

/* Dashboard sub-pages */
.voz-subscription-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #E8EAED;
  margin-bottom: 20px;
}
.voz-subscription-manage-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: #2563EB;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 20px;
}
.voz-subscription-manage-btn:hover { background: #1D4ED8; }
@media (max-width: 640px) { .voz-subscription-manage-btn { width: 100%; } }
.voz-subscription-info-box {
  background: #EFF6FF;
  border-left: 3px solid #2563EB;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px;
  color: #1E40AF;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Mobile sticky pay button */
@media (max-width: 640px) {
  .voz-mobile-pay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
  }
  .voz-mobile-pay.show { display: block; }
  .voz-mobile-pay .voz-btn-next { width: 100%; justify-content: center; }
  .voz-funnel-body { padding-bottom: 80px; }
}

/* Animations */
@keyframes vozSpin {
  to { transform: rotate(360deg); }
}
@keyframes vozPop {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Comparison table */
.voz-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 16px;
}
.voz-compare-table th {
  background: #F8FAFF;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  color: #0B1F3A;
  border-bottom: 2px solid #DBEAFE;
}
.voz-compare-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #F3F4F6;
  color: #374151;
}
.voz-compare-table tr:last-child td { border-bottom: none; }
.voz-compare-table td.highlight { font-weight: 600; color: #2563EB; }

/* Inline login in funnel */
.voz-funnel-login { max-width: 100%; }
.voz-email-step { display: block; }
.voz-pw-step { display: none; }
.voz-reg-step { display: none; }

/* Textarea */
.voz-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  line-height: 1.5;
  resize: vertical;
  outline: none;
  min-height: 100px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.voz-textarea:focus { border-color: #2563EB; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.voz-char-count { font-size: 11px; color: #9CA3AF; text-align: right; margin-top: 4px; }

/* Skeleton / loading placeholder */
.voz-skeleton {
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: vozSkeleton 1.5s infinite;
  border-radius: 6px;
  height: 18px;
}
@keyframes vozSkeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =========================================================
   NAVBAR ADDITIONS (Dashboard link + online dot)
========================================================= */

.voz-nav-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid rgba(37,99,235,0.5);
    border-radius: 8px;
    color: #2563EB;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
}

.voz-nav-dashboard:hover {
    background: #EFF6FF;
    border-color: #2563EB;
}

.voz-nav-dashboard--guest {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
}

.voz-nav-dashboard--guest:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.voz-online-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
    animation: voz-pulse-dot 2s ease-in-out infinite;
}

@keyframes voz-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
    50% { box-shadow: 0 0 0 4px rgba(34,197,94,0.15); }
}

/* Triple name check status rows */
.voz-name-check-rows {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.voz-check-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.voz-check-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.voz-check-badge.green { background: #DCFCE7; color: #15803D; }
.voz-check-badge.amber { background: #FEF3C7; color: #92400E; }
.voz-check-badge.red   { background: #FEE2E2; color: #991B1B; }
.voz-check-badge.gray  { background: #F3F4F6; color: #6B7280; }

.voz-similar-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    font-size: 12px;
    color: #6B7280;
}

.voz-domain-chips { display: flex; gap: 6px; flex-wrap: wrap; }

.voz-domain-chip {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s;
}

.voz-domain-chip.available { background: #DCFCE7; color: #15803D; }
.voz-domain-chip.available:hover { background: #15803D; color: #fff; }
.voz-domain-chip.taken { background: #FEE2E2; color: #991B1B; }
.voz-domain-chip.unknown { background: #F3F4F6; color: #9CA3AF; }

.voz-overall-badge {
    margin-top: 4px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
}

.voz-overall-badge.green { background: #15803D; color: #fff; }
.voz-overall-badge.amber { background: #F59E0B; color: #fff; }
.voz-overall-badge.red   { background: #DC2626; color: #fff; }

/* Skeleton loading */
.voz-check-row.skeleton { height: 26px; }
.voz-skel-bar { height: 22px; width: 220px; background: linear-gradient(90deg,#F3F4F6 25%,#E5E7EB 50%,#F3F4F6 75%); background-size: 400% 100%; border-radius: 12px; animation: voz-skel 1.2s ease-in-out infinite; }
@keyframes voz-skel { 0%{background-position:100% 0} 100%{background-position:-100% 0} }

/* Expert guidance panel */
.voz-expert-panel {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E8EAED;
    padding: 18px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    transition: all 0.3s;
}

.voz-expert-panel.collapsed .voz-expert-content { display: none; }

.voz-expert-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F3F4F6;
}

.voz-expert-title {
    font-size: 12px;
    font-weight: 700;
    color: #0B1F3A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.voz-expert-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #6B7280;
    padding: 2px;
}

.voz-expert-content h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0B1F3A;
    margin: 0 0 8px;
}

.voz-expert-content ul {
    padding-left: 16px;
    margin: 0 0 12px;
}

.voz-expert-content li {
    font-size: 12px;
    color: #4B5563;
    margin-bottom: 5px;
    line-height: 1.5;
}

.voz-expert-content p {
    font-size: 12px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 10px;
}

.voz-expert-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #2563EB;
    text-decoration: none;
    padding: 6px 12px;
    border: 1.5px solid #2563EB;
    border-radius: 6px;
    margin-top: 4px;
    transition: all 0.2s;
}

.voz-expert-cta:hover { background: #2563EB; color: #fff; }

.voz-expert-tip {
    background: #EFF6FF;
    border-left: 3px solid #2563EB;
    padding: 8px 10px;
    border-radius: 0 6px 6px 0;
    font-size: 12px !important;
    color: #1E40AF !important;
    margin-top: 10px !important;
}

.voz-expert-ai-badge {
    display: inline-block;
    background: linear-gradient(135deg,#2563EB,#7C3AED);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Purpose generator V2 tabs */
.voz-variant-tabs, .voz-lang-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E8EAED;
    margin-bottom: 16px;
}

.voz-variant-tab, .voz-lang-tab {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.voz-variant-tab.active, .voz-lang-tab.active {
    color: #2563EB;
    border-bottom-color: #2563EB;
}

.voz-variant-panel, .voz-lang-content { display: none; }
.voz-variant-panel.active, .voz-lang-content.active { display: block; }

.voz-purpose-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1.5px solid #E8EAED;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #1F2937;
    resize: vertical;
    font-family: inherit;
}

.voz-purpose-textarea:focus { outline: none; border-color: #2563EB; }

.voz-copy-btn {
    background: none;
    border: 1px solid #E8EAED;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s;
}

.voz-copy-btn:hover { background: #F9FAFB; border-color: #D1D5DB; color: #374151; }

#voz-purpose-recommendation {
    padding: 8px 14px;
    background: #EFF6FF;
    border-left: 3px solid #2563EB;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #1D4ED8;
    margin-bottom: 12px;
}

/* Dossier tracker */
.voz-tracker-timeline { position: relative; padding-left: 40px; }

.voz-tracker-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.voz-tracker-step {
    position: relative;
    padding: 0 0 28px 20px;
}

.voz-tracker-step::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    background: #fff;
    transition: all 0.3s;
}

.voz-tracker-step.done::before { background: #22C55E; border-color: #22C55E; }
.voz-tracker-step.active::before { background: #2563EB; border-color: #2563EB; animation: voz-pulse-blue 1.5s ease-in-out infinite; box-shadow: 0 0 0 4px rgba(37,99,235,0.2); }
@keyframes voz-pulse-blue { 0%,100%{box-shadow:0 0 0 4px rgba(37,99,235,0.2)} 50%{box-shadow:0 0 0 8px rgba(37,99,235,0.1)} }

.voz-tracker-step-title { font-size: 14px; font-weight: 600; color: #0B1F3A; margin-bottom: 4px; }
.voz-tracker-step.pending .voz-tracker-step-title { color: #9CA3AF; }
.voz-tracker-step-desc { font-size: 13px; color: #6B7280; line-height: 1.5; }
.voz-tracker-step-date { font-size: 11px; color: #9CA3AF; margin-top: 4px; }

.voz-action-card {
    background: #EFF6FF;
    border-left: 3px solid #2563EB;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 12px 0;
}

.voz-action-card h4 { font-size: 14px; font-weight: 700; color: #1E40AF; margin: 0 0 8px; }
.voz-action-card p { font-size: 13px; color: #1E40AF; margin: 0 0 6px; line-height: 1.5; }
.voz-action-note { font-size: 12px; color: #3B82F6 !important; font-style: italic; }
.voz-action-success { background: #DCFCE7 !important; border-left-color: #22C55E !important; }
.voz-action-success h4, .voz-action-success p { color: #15803D !important; }


/* Modal panels — injected by wp_footer */
.voz-modal-panel { display: none; }
.voz-modal-panel.active { display: block; }

/* ============================================================
   MY-ACCOUNT LOGIN PAGE — WooCommerce form overrides
   ============================================================ */
body.woocommerce-account:not(.logged-in) .entry-content,
body.woocommerce-account:not(.logged-in) .site-main,
body.woocommerce-account:not(.logged-in) .content-wrap,
body.woocommerce-account:not(.logged-in) article { padding: 0 !important; margin: 0 !important; }
body.woocommerce-account:not(.logged-in) .entry-header { display: none !important; }
body.woocommerce-account:not(.logged-in) .woocommerce > h2,
body.woocommerce-account:not(.logged-in) .woocommerce-form-login-toggle,
body.woocommerce-account:not(.logged-in) .u-columns h2,
body.woocommerce-account:not(.logged-in) .col2-set h2 { display: none !important; }
body.woocommerce-account:not(.logged-in) .woocommerce { padding: 0 !important; max-width: none !important; }
body.woocommerce-account:not(.logged-in) .woocommerce-notices-wrapper { display: none !important; }

/* Remove WooCommerce's own form box */
.voz-login-form-wrap .woocommerce-form-login {
  margin: 0; padding: 0; border: none !important;
  box-shadow: none !important; background: transparent !important;
}

/* Labels */
.voz-login-form-wrap label {
  font-size: 13px !important; font-weight: 600 !important; color: #374151 !important;
  display: block !important; margin-bottom: 7px !important;
}
.voz-login-form-wrap label abbr { color: #2563EB !important; }

/* Inputs */
.voz-login-form-wrap input[type="text"],
.voz-login-form-wrap input[type="email"],
.voz-login-form-wrap input[type="password"] {
  width: 100% !important; padding: 12px 16px !important;
  border: 1.5px solid #E5E7EB !important; border-radius: 8px !important;
  font-size: 15px !important; color: #0B1F3A !important;
  font-family: 'Inter', sans-serif !important; transition: border-color .2s !important;
  background: #fff !important; outline: none !important; box-shadow: none !important;
}
.voz-login-form-wrap input[type="text"]:focus,
.voz-login-form-wrap input[type="email"]:focus,
.voz-login-form-wrap input[type="password"]:focus {
  border-color: #2563EB !important; box-shadow: 0 0 0 3px rgba(37,99,235,.1) !important;
}
.voz-login-form-wrap .woocommerce-form-row,
.voz-login-form-wrap p { margin-bottom: 20px !important; }

/* Remember me row */
.voz-login-form-wrap .woocommerce-form-login__rememberme {
  display: flex !important; align-items: center !important; gap: 8px !important;
  font-size: 13px !important; color: #6B7280 !important;
}
.voz-login-form-wrap .woocommerce-form-login__rememberme input { width: auto !important; }

/* Submit button */
.voz-login-form-wrap .woocommerce-form-login .form-row.woocommerce-form-login__submit {
  display: flex !important; flex-direction: column !important; gap: 12px !important; margin-bottom: 0 !important;
}
.voz-login-form-wrap button[name="login"],
.voz-login-form-wrap input[type="submit"],
.voz-login-form-wrap .woocommerce-Button {
  width: 100% !important; padding: 14px !important;
  background: #2563EB !important; color: #fff !important;
  border: none !important; border-radius: 8px !important;
  font-size: 15px !important; font-weight: 700 !important;
  cursor: pointer !important; font-family: 'Inter', sans-serif !important;
  transition: background .2s !important; letter-spacing: .01em !important;
}
.voz-login-form-wrap button[name="login"]:hover { background: #1d4fd8 !important; }

/* Lost password */
.voz-login-form-wrap .lost_password { margin-top: 16px !important; text-align: center !important; }
.voz-login-form-wrap .lost_password a {
  font-size: 13px !important; color: #9CA3AF !important;
  text-decoration: none !important;
}
.voz-login-form-wrap .lost_password a:hover { color: #2563EB !important; }
.voz-login-form-wrap .woocommerce-privacy-policy-text { display: none !important; }

/* Divider under title */
.voz-login-form-title::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: #2563EB; border-radius: 2px; margin-top: 10px;
}

/* Hide WooCommerce Login h2 inside entry-content */
body.woocommerce-account:not(.logged-in) .entry-content h2,
body.woocommerce-account:not(.logged-in) .single-content h2,
body.woocommerce-account:not(.logged-in) .woocommerce h2 {
  display: none !important;
}
