/* ═══════════════════════════════════════════════════════════
   BASE & RESET
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  /* Color palette - Bird System Style */
  --brand-primary: #3b82f6; /* Bright neon blue */
  --brand-secondary: #8b5cf6; /* Neon purple */
  --brand-accent: #60a5fa;
  --brand-glow: rgba(59, 130, 246, 0.4);

  --bg-base: #000000;
  --bg-surface: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-input: #0a0a0a;
  --bg-input-focus: #111111;

  --border-subtle: rgba(255,255,255,0.04);
  --border-card: rgba(255,255,255,0.06);
  --border-focus: rgba(59, 130, 246, 0.6);

  --text-primary: #F3F4F6; /* Brighter white */
  --text-secondary: #9CA3AF; /* Muted gray/blue */
  --text-muted: #6B7280;
  --text-label: #D1D5DB;

  --success: #10B981;
  --success-bg: rgba(16, 185, 129, 0.12);
  --warning: #F59E0B;
  --warning-bg: rgba(245, 158, 11, 0.12);
  --error: #EF4444;
  --error-bg: rgba(239, 68, 68, 0.12);
  --info: #3B82F6;
  --info-bg: rgba(59, 130, 246, 0.10);

  --urgent-color: #F97316;
  --urgent-bg: rgba(249, 115, 22, 0.12);
  --scheduled-color: #6366F1;
  --scheduled-bg: rgba(99, 102, 241, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 25px rgba(59, 130, 246, 0.25);
  --shadow-btn: 0 4px 20px rgba(59, 130, 246, 0.35);

  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { 
  scroll-behavior: smooth; 
  background-color: var(--bg-base);
  overscroll-behavior: none;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  background-image: none; /* Removed gradient to keep it pure black */
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
  line-height: 1.6;
}
body::-webkit-scrollbar {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   BACKGROUND PARTICLES
   ═══════════════════════════════════════════════════════════ */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur, 12s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.15; }
  90%  { opacity: 0.05; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  border-bottom: none;
}

.header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.logo-icon {
  width: 140px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.7));
}

.logo-icon img {
  filter: invert(1);
}

.header-badge {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */
.progress-container {
  position: relative;
  z-index: 10;
  background: transparent;
  border-bottom: none;
  padding: 20px 24px;
}

.progress-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border-card);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-check {
  display: none;
  color: white;
}

.step-item.active .step-circle {
  border-color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  box-shadow: 0 0 20px rgba(108,99,255,0.5);
}
.step-item.active .step-num { color: white; }

.step-item.done .step-circle {
  border-color: var(--success);
  background: var(--success-bg);
}
.step-item.done .step-num { display: none; }
.step-item.done .step-check { display: block; color: var(--success); }

.step-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: var(--transition);
}
.step-item.active .step-label { color: var(--brand-secondary); font-weight: 600; }
.step-item.done .step-label { color: var(--success); }

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border-card);
  min-width: 40px;
  max-width: 100px;
  margin-bottom: 18px;
  transition: background 0.5s ease;
}

.step-line.filled { background: linear-gradient(90deg, var(--success), var(--brand-primary)); }

/* ═══════════════════════════════════════════════════════════
   MAIN CONTENT
   ═══════════════════════════════════════════════════════════ */
.main-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   STEP SECTIONS
   ═══════════════════════════════════════════════════════════ */
.step-section {
  display: none;
  animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.step-section.active { display: block; }

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

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.section-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(108,99,255,0.2), rgba(167,139,250,0.1));
  border: 1px solid rgba(108,99,255,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   EVENT CARDS
   ═══════════════════════════════════════════════════════════ */
.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.event-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.event-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.event-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-number-badge {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
}

.btn-remove-event {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-remove-event:hover {
  background: var(--error-bg);
  border-color: rgba(248,113,113,0.3);
  color: var(--error);
}

/* ═══════════════════════════════════════════════════════════
   FORM ELEMENTS
   ═══════════════════════════════════════════════════════════ */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-label);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-label svg {
  color: var(--brand-secondary);
  opacity: 0.8;
}

.input-wrapper {
  position: relative;
}

.form-input, .form-select {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus, .form-select:focus {
  border-color: var(--border-focus);
  background: var(--bg-input-focus);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.form-input.error { border-color: var(--error); box-shadow: 0 0 0 3px var(--error-bg); }

.form-select {
  cursor: pointer;
  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='%239EA3C0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   ADD EVENT BUTTON
   ═══════════════════════════════════════════════════════════ */
.btn-add-event {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 2px dashed rgba(108,99,255,0.3);
  border-radius: var(--radius-lg);
  color: var(--brand-secondary);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  justify-content: center;
  margin-bottom: 24px;
}

.btn-add-event:hover {
  border-color: rgba(108,99,255,0.6);
  background: rgba(108,99,255,0.06);
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════
   FORM CARD (Step 2)
   ═══════════════════════════════════════════════════════════ */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════
   NEED TYPE CARDS
   ═══════════════════════════════════════════════════════════ */
.need-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.need-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.need-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.need-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.need-card input:checked + .need-card-inner,
.need-card-inner:hover {
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

.need-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.need-icon-urgent { background: var(--urgent-bg); color: var(--urgent-color); }
.need-icon-scheduled { background: var(--scheduled-bg); color: var(--scheduled-color); }

.need-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.need-card-content strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.need-card-content span {
  font-size: 12px;
  color: var(--text-secondary);
}

.need-card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
}

.urgent-tag { background: var(--urgent-bg); color: var(--urgent-color); }
.scheduled-tag { background: var(--scheduled-bg); color: var(--scheduled-color); }

.need-card-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  margin-top: 2px;
  color: transparent;
}

.need-card input:checked + .need-card-inner .need-card-check {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   SCHEDULED FIELDS
   ═══════════════════════════════════════════════════════════ */
.scheduled-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  opacity: 0;
}

.scheduled-fields.visible {
  max-height: 300px;
  opacity: 1;
}

.scheduled-fields-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 4px;
  padding-bottom: 8px;
}

.info-box {
  background: var(--info-bg);
  border: 1px solid rgba(96,165,250,0.2);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--info);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.info-box svg { flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════
   STEP FOOTER
   ═══════════════════════════════════════════════════════════ */
.step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1e3a8a 0%, var(--brand-primary) 100%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 25px rgba(59, 130, 246, 0.3);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
  border-color: rgba(59, 130, 246, 0.8);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: rgba(108,99,255,0.3);
  color: var(--text-primary);
}

.btn-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--success), #059669);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(52,211,153,0.35);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.45);
}

/* ═══════════════════════════════════════════════════════════
   CONFIRMATION BLOCK
   ═══════════════════════════════════════════════════════════ */
.confirm-block {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.confirm-block-title {
  padding: 14px 20px;
  background: rgba(108,99,255,0.08);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.confirm-event-item {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
}
.confirm-event-item:last-child { border-bottom: none; }

.confirm-event-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.confirm-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.confirm-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.confirm-detail-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirm-detail-value {
  font-size: 13px;
  color: var(--text-secondary);
}

.status-pill {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.status-liberado { background: var(--success-bg); color: var(--success); }
.status-em-breve { background: var(--warning-bg); color: var(--warning); }
.status-encerrado { background: var(--error-bg); color: var(--error); }
.status-pausado   { background: rgba(161,161,170,0.12); color: #A1A1AA; }
.status-rascunho  { background: var(--info-bg); color: var(--info); }

.confirm-contact-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
}

.confirm-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(108,99,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  flex-shrink: 0;
}

.contact-info { display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.4px; }
.contact-value { font-size: 14px; color: var(--text-primary); font-weight: 500; }

.need-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.need-type-badge.urgent { background: var(--urgent-bg); color: var(--urgent-color); }
.need-type-badge.scheduled { background: var(--scheduled-bg); color: var(--scheduled-color); }

/* ═══════════════════════════════════════════════════════════
   STATUS PAGE
   ═══════════════════════════════════════════════════════════ */
.status-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px 28px;
}

.status-animation {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.status-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--success);
  opacity: 0.3;
  animation: ringPulse 2.5s ease-in-out infinite;
}

.status-ring.ring-2 {
  inset: 10px;
  border-color: var(--brand-primary);
  animation-delay: 0.5s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50%       { transform: scale(1.08); opacity: 0.6; }
}

.status-icon-center {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 30px rgba(52,211,153,0.4);
  animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

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

.status-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.status-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.request-id-badge {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.request-id-badge strong { color: var(--brand-secondary); }

/* ═══════════════════════════════════════════════════════════
   STATUS TIMELINE
   ═══════════════════════════════════════════════════════════ */
.status-timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}

.timeline-header {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  background: rgba(108,99,255,0.06);
  border-bottom: 1px solid var(--border-subtle);
}

.timeline {
  padding: 8px 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 28px;
  top: 44px;
  width: 2px;
  height: calc(100% - 24px);
  background: var(--border-subtle);
}

.timeline-item.done::after { background: var(--success); opacity: 0.4; }
.timeline-item.processing::after { background: linear-gradient(to bottom, var(--brand-primary), transparent); opacity: 0.5; }

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border-card);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  z-index: 1;
  position: relative;
  color: var(--text-muted);
  transition: var(--transition);
}

.timeline-item.done .timeline-dot {
  background: var(--success-bg);
  border-color: var(--success);
  color: var(--success);
}

.timeline-item.processing .timeline-dot {
  background: rgba(108,99,255,0.15);
  border-color: var(--brand-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

.timeline-content { flex: 1; }

.timeline-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.timeline-item.pending .timeline-label { color: var(--text-secondary); }

.timeline-time {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

.timeline-item.done .timeline-time { color: var(--success); opacity: 0.8; }
.timeline-item.processing .timeline-time { color: var(--brand-secondary); }

/* ═══════════════════════════════════════════════════════════
   STATUS INFO CARD
   ═══════════════════════════════════════════════════════════ */
.status-info-card {
  margin-top: 16px;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-info-card.urgent {
  background: var(--urgent-bg);
  border: 1px solid rgba(251,146,60,0.25);
  color: var(--urgent-color);
}

.status-info-card.scheduled {
  background: var(--scheduled-bg);
  border: 1px solid rgba(129,140,248,0.3);
  color: var(--scheduled-color);
}

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  z-index: 1000;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  opacity: 0;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon { color: var(--error); }

.toast.toast-success .toast-icon { color: var(--success); }
.toast.toast-error   .toast-icon { color: var(--error); }

/* ═══════════════════════════════════════════════════════════
   LINK INPUT WRAPPER
   ═══════════════════════════════════════════════════════════ */
.link-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.link-input-wrap:focus-within {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.12);
}

.link-prefix {
  padding: 11px 12px;
  background: rgba(108,99,255,0.07);
  border-right: 1px solid var(--border-card);
  color: var(--text-muted);
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.link-input-wrap .form-input {
  border: none;
  border-radius: 0;
  background: transparent;
}

.link-input-wrap .form-input:focus {
  border: none;
  box-shadow: none;
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .need-type-grid { grid-template-columns: 1fr; }
  .scheduled-fields-inner { grid-template-columns: 1fr; }
  .confirm-details-grid { grid-template-columns: 1fr; }
  
  /* Progress Bar tweaks for small phones */
  .step-label { display: none; }
  .step-line { min-width: 12px; max-width: 100%; margin-bottom: 14px; }
  .step-circle { width: 28px; height: 28px; }
  .step-num { font-size: 11px; }
  .progress-container { padding: 12px 16px; }

  /* Headings */
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
  .section-icon { width: 40px; height: 40px; min-width: 40px; }
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 13px; }

  /* Body layout */
  .main-content { padding: 16px 12px 60px; }
  .header-badge { display: none; }
  
  /* Buttons */
  .step-footer { flex-direction: column-reverse; gap: 12px; margin-top: 24px; }
  .btn-primary, .btn-secondary, .btn-confirm { width: 100%; justify-content: center; }

  /* Cards */
  .form-card, .event-card { padding: 16px; gap: 16px; }
  .need-card-inner { padding: 14px; gap: 10px; }
  .need-card-icon { width: 40px; height: 40px; }
  .upload-zone { padding: 20px 14px; }
  
  /* Status Page */
  .status-hero { padding: 20px 12px 16px; }
  .status-title { font-size: 22px; }
  .status-info-card { flex-direction: column; align-items: stretch; text-align: center; }
  .status-info-card svg { margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   PHOTO UPLOAD ZONE
   ═══════════════════════════════════════════════════════════ */
.upload-zone {
  border: 2px dashed rgba(108,99,255,0.35);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: rgba(108,99,255,0.03);
  transition: var(--transition);
  text-align: center;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--brand-primary);
  background: rgba(108,99,255,0.08);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.10);
}

.upload-zone.drag-over {
  transform: scale(1.01);
}

.upload-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(108,99,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  transition: var(--transition);
}

.upload-zone:hover .upload-icon,
.upload-zone.drag-over .upload-icon {
  background: rgba(108,99,255,0.22);
  transform: translateY(-3px);
}

.upload-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 4px;
}

.upload-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   PHOTO PREVIEW THUMBNAILS
   ═══════════════════════════════════════════════════════════ */
.photo-preview-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.photo-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-card);
  transition: var(--transition);
}

.photo-thumb:hover { border-color: rgba(108,99,255,0.4); }

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(13,14,26,0.85);
  border: 1px solid rgba(248,113,113,0.4);
  border-radius: 50%;
  color: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: var(--transition);
}

.photo-thumb:hover .photo-remove-btn {
  opacity: 1;
}

.photo-thumb-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 14px 5px 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   CONFIRMATION PHOTO GRID
   ═══════════════════════════════════════════════════════════ */
.confirm-photos {
  padding: 14px 0 2px;
  margin-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.confirm-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.confirm-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-card);
}

