/* ══════════════════════════════════════
   WOW SAMIACC — Sector Benefits Panel
   Collapsible intelligence card in Creator tab
   ══════════════════════════════════════ */

/* ── Container ── */
#sectorBenefits {
  margin: 0 0 24px 0;
  transition: all 0.3s ease;
}

/* ── Panel ── */
.sb-panel {
  --sb-color: #c9a84c;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(7,10,21,0.98));
  border: 1px solid rgba(201,168,76,0.25);
  border-top: 3px solid var(--sb-color);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.06);
  animation: sbPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* ── Header ── */
.sb-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
}

.sb-header:hover { background: rgba(255,255,255,0.02); }

.sb-header-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.sb-icon-wrap {
  width: 36px;
  height: 36px;
  background: color-mix(in srgb, var(--sb-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--sb-color) 30%, transparent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.sb-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--sb-color);
  line-height: 1.3;
  margin-bottom: 3px;
}

.sb-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

.sb-toggle {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: rgba(255,255,255,0.5);
}

.sb-toggle:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  color: #c9a84c;
}

/* ── Body ── */
.sb-body {
  padding: 0 20px 20px;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              padding 0.3s ease;
  max-height: 2000px;
  opacity: 1;
}

.sb-body.collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* ── Section ── */
.sb-section {
  margin-top: 18px;
}

.sb-section-label {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Pain Points ── */
.sb-pains {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sb-pain {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.sb-pain-dot {
  width: 6px;
  height: 6px;
  background: #e74c3c;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(231,76,60,0.5);
}

/* ── Solutions Grid ── */
.sb-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.sb-solution {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-solution:hover {
  background: rgba(255,255,255,0.055);
  border-color: color-mix(in srgb, var(--sb-color) 30%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 12px color-mix(in srgb, var(--sb-color) 8%, transparent);
}

.sb-sol-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-sol-content { flex: 1; min-width: 0; }

.sb-sol-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3px;
  line-height: 1.3;
}

.sb-sol-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* ── Outcomes ── */
.sb-outcomes {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sb-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.sb-outcome svg { margin-top: 2px; }

/* ── Recommended Level ── */
.sb-recommended {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: 8px;
}

.sb-rec-left { flex-shrink: 0; }

.sb-rec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.sb-rec-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.sb-rec-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border: 1px solid;
  border-radius: 5px;
  letter-spacing: 0.02em;
}

.sb-rec-reason {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 16px;
}
