/* Brand qualification form */

.brand-qual-form .form-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.brand-qual-form .form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}

.brand-qual-form .form-section-head {
  margin-bottom: 1rem;
}

.brand-qual-form .form-section-head h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-bottom: 0.25rem;
}

.brand-qual-form .form-section-head p {
  font-size: 0.82rem;
  color: var(--text-dim) !important;
  line-height: 1.5;
}

.collab-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.collab-card {
  display: block;
  cursor: pointer;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  padding: 1rem 1.1rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.collab-card:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}

.collab-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.collab-card:has(input:checked) {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.collab-card-icon {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.collab-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.collab-card span {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.barter-panel {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5, #eff6ff);
  border: 1px solid #a7f3d0;
}

.barter-panel h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #047857 !important;
  margin-bottom: 0.75rem;
}

.platform-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}

.platform-pill:hover,
.platform-pill.active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #1d4ed8;
}

.platform-pill--ig.active { border-color: #e1306c; background: #fdf2f8; color: #be185d; }
.platform-pill--tt.active { border-color: #111; background: #f1f5f9; color: #0f172a; }
.platform-pill--yt.active { border-color: #dc2626; background: #fef2f2; color: #b91c1c; }
.platform-pill--li.active { border-color: #0a66c2; background: #eff6ff; color: #1d4ed8; }

body.marketing .brand-qual-form .form-group label {
  color: var(--text-dark) !important;
}

body.marketing .brand-qual-form .form-group label small {
  color: var(--text-dim) !important;
  font-weight: 500;
}

@media (max-width: 600px) {
  .collab-type-grid { grid-template-columns: 1fr; }
}