/* ==========================================================================
   AURA UROLOGICA™ - Cyber-Clinical Aesthetics & Styling (2026 Edition)
   ========================================================================== */

/* Base Typography & Background */
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #e2e8f0;
  background-color: #04070f;
  overflow-x: hidden;
}

.font-heading {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

.font-mono {
  font-family: 'Space Grotesk', monospace;
}

/* Bento Box Component */
.bento-box {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background-color: rgba(8, 13, 26, 0.75);
  border: 1px solid rgba(51, 65, 85, 0.6);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bento-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-box:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(20, 184, 166, 0.1);
}

.bento-box:hover::before {
  opacity: 1;
}

/* Clinical Frame Container */
.clinical-frame {
  background-color: rgba(8, 13, 26, 0.85);
  border-radius: 1.75rem;
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

/* Clinical Chip Tag */
.clinical-chip {
  display: inline-block;
  font-size: 0.675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(20, 184, 166, 0.12);
  color: #2dd4bf;
  border: 1px solid rgba(20, 184, 166, 0.25);
  font-family: 'Space Grotesk', monospace;
}

/* Interactive Assessment Option Pill */
.interactive-option {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.1rem 1.35rem;
  border-radius: 1.15rem;
  background-color: rgba(4, 7, 15, 0.7);
  border: 2px solid rgba(51, 65, 85, 0.7);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

.interactive-option:hover {
  border-color: #38bdf8;
  background-color: rgba(14, 23, 42, 0.8);
  transform: translateX(4px);
}

.interactive-option.selected {
  border-color: #14b8a6;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
}

.interactive-option .opt-indicator {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  border: 2px solid #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  flex-shrink: 0;
  color: transparent;
  font-size: 0.65rem;
  transition: all 0.2s ease;
}

.interactive-option.selected .opt-indicator {
  border-color: #14b8a6;
  background-color: #14b8a6;
  color: #04070f;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.6);
}

.interactive-option .opt-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.35;
}

.interactive-option .opt-desc {
  font-size: 0.775rem;
  color: #94a3b8;
  margin-top: 0.2rem;
  line-height: 1.45;
}

/* Assessment Control Buttons */
.btn-clinical-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #0d9488 0%, #0369a1 100%);
  border-radius: 0.95rem;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
  transition: all 0.25s ease;
}

.btn-clinical-next:hover:not(:disabled) {
  background: linear-gradient(135deg, #14b8a6 0%, #0284c7 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

.btn-clinical-next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-clinical-prev {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}

.btn-clinical-prev:hover {
  color: #f8fafc;
  background-color: rgba(51, 65, 85, 0.5);
}

.btn-clinical-finish {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 900;
  color: #04070f;
  background: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4);
  transition: all 0.25s ease;
}

.btn-clinical-finish:hover:not(:disabled) {
  background: linear-gradient(135deg, #5eead4 0%, #7dd3fc 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 212, 191, 0.55);
}

.btn-clinical-finish:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

/* Botanical Ingredient Cards */
.botanical-card {
  padding: 1.5rem;
  border-radius: 1.35rem;
  background-color: rgba(8, 13, 26, 0.85);
  border: 1px solid rgba(51, 65, 85, 0.6);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.botanical-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.botanical-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.botanical-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(51, 65, 85, 0.4);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* FAQ Component */
.faq-item {
  border-radius: 1rem;
  background-color: rgba(8, 13, 26, 0.85);
  border: 1px solid rgba(51, 65, 85, 0.7);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(45, 212, 191, 0.4);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  text-align: left;
}

.faq-chevron {
  font-size: 0.8rem;
  color: #64748b;
  transition: transform 0.3s ease;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-chevron.rotate-180 {
  transform: rotate(180deg);
  color: #2dd4bf;
}

.faq-body {
  padding: 0 1.4rem 1.25rem 1.4rem;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
  background-color: rgba(4, 7, 15, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #04070f;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0d9488;
}
