/* ── Motionvert Project Brief — Styles ── */
.mvb-wrap {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  color: #1a1a1a;
}

/* Progress bar */
.mvb-progress-bar {
  height: 3px;
  background: #e5e7eb;
  border-radius: 3px;
  margin-bottom: 0;
  overflow: hidden;
}
.mvb-progress-fill {
  height: 100%;
  background: #4F7CFF;
  border-radius: 3px;
  width: 0%;
  transition: width 0.3s ease;
}

/* Hero */
.mvb-hero {
  background: #212121;
  padding: 56px 32px 44px;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 40px;
}
.mvb-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.mvb-logo-mark {
  width: 36px; height: 36px;
  background: #FAB915;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
}
.mvb-logo-text {
  font-size: 17px; font-weight: 600; color: #fff;
}
.mvb-hero-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 12px !important;
}
.mvb-hero-title span { color: #FFFFFF; }
.mvb-hero-sub {
  font-size: 14px;
  color: #94a3b8;
  max-width: 440px;
  margin: 0 auto 20px !important;
  line-height: 1.6;
}
.mvb-badges {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.mvb-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: #94a3b8;
}

/* Sections */
.mvb-section {
  margin-bottom: 36px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px 24px 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.mvb-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}
.mvb-section-num {
  width: 28px; height: 28px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: #4F7CFF;
  flex-shrink: 0;
  font-family: monospace;
}
.mvb-section-title {
  font-size: 14px; font-weight: 600; color: #1e293b;
}

/* Fields */
.mvb-field { margin-bottom: 16px; }
.mvb-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mvb-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 5px;
}
.mvb-required::after {
  content: ' *';
  color: #4F7CFF;
}
.mvb-hint {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 5px;
  font-family: monospace;
}
.mvb-input,
.mvb-textarea,
.mvb-select {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.mvb-input:focus,
.mvb-textarea:focus,
.mvb-select:focus {
  border-color: #4F7CFF;
  box-shadow: 0 0 0 3px rgba(79,124,255,0.1);
  background: #fff;
}
.mvb-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}
.mvb-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Radio & Checkbox */
.mvb-radio-group,
.mvb-check-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mvb-radio-item,
.mvb-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 13px;
  color: #4b5563;
  user-select: none;
}
.mvb-radio-item:hover,
.mvb-check-item:hover {
  border-color: #93c5fd;
  color: #1e293b;
}
.mvb-radio-item input,
.mvb-check-item input {
  width: 16px; height: 16px;
  accent-color: #4F7CFF;
  flex-shrink: 0;
  cursor: pointer;
  margin: 0;
}
.mvb-radio-item:has(input:checked),
.mvb-check-item:has(input:checked) {
  border-color: #4F7CFF;
  background: #eff6ff;
  color: #1e3a8a;
}

/* Info box */
.mvb-info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 3px solid #4F7CFF;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 12px;
  color: #1e40af;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Submit */
.mvb-submit-area {
  text-align: center;
  padding: 40px 0 20px;
}
.mvb-submit-btn {
  background: #4F7CFF;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 44px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: -0.2px;
}
.mvb-submit-btn:hover { background: #fab915; opacity: 1; }
.mvb-submit-btn:active { transform: scale(0.98); }
.mvb-submit-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px !important;
}
.mvb-spinner {
  color: #6b7280;
  font-size: 13px;
  margin-top: 10px;
}

/* Success */
.mvb-success {
  text-align: center;
  padding: 64px 24px;
}
.mvb-success-icon {
  width: 64px; height: 64px;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
  color: #065f46;
}
.mvb-success h2 {
  font-size: 24px; font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px !important;
}
.mvb-success p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 560px) {
  .mvb-row-2 { grid-template-columns: 1fr; }
  .mvb-hero { padding: 40px 20px 32px; }
  .mvb-section { padding: 20px 16px 6px; }
}
