/* css/business-xray.css */
.xray-body {
  background-color: #f8fafc;
  margin: 0;
  font-family: inherit;
}

.xray-screen {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.xray-screen.active {
  display: block;
}

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

.wizard-header {
  background: white;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Question Styles */
.question-title {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.4;
  text-align: center;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.option-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #334155;
  font-weight: 500;
}

.option-card:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--secondary-color);
  background: #f0fdfa;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.option-card input[type="radio"] {
  display: none;
}

.option-indicator {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-card.selected .option-indicator {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

.option-card.selected .option-indicator::after {
  content: '';
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

/* Custom Chart Bar */
.chart-row {
  display: flex;
  flex-direction: column;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #475569;
}

.chart-bar-bg {
  width: 100%;
  height: 12px;
  background: #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--secondary-color);
}

.step-item {
  background: rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.step-number {
  background: var(--secondary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-left: 1rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
  .options-grid.single-col {
    grid-template-columns: 1fr;
  }
}

.xray-audience-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .xray-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .xray-audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
