/* ==========================================================================
   Noise Landing Page - UI Components & Interactive Modules
   ========================================================================== */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #f4f4f5 0%, #d4d4d8 100%);
  color: #09090b;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), var(--glass-highlight);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 100%);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25), var(--glass-highlight);
  transform: translateY(-2px);
}

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

[data-theme="light"] .btn-primary {
  background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), var(--glass-highlight);
  border: 1px solid rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(135deg, #27272a 0%, #3f3f46 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm), var(--glass-highlight);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-github {
  background: #18181b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), var(--glass-highlight);
}

[data-theme="light"] .btn-github {
  background: #0f172a;
}

.btn-github:hover {
  background: #27272a;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.btn-ai {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), var(--glass-highlight);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ai:hover {
  background: linear-gradient(135deg, var(--brand-secondary-light) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.86rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.08rem;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* --- Badges & Pills --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-default);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.badge-glow {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .badge-glow {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
}

.badge-ai {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.12);
  color: var(--brand-secondary-light);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.2);
}

.badge-conflict {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border-color: rgba(244, 63, 94, 0.4);
}

.badge-success {
  background: rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
  border-color: rgba(255, 255, 255, 0.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 8px var(--brand-primary);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-dot.pulse-conflict {
  background: var(--status-conflict);
  box-shadow: 0 0 8px var(--status-conflict);
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- Glass Container Cards --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), var(--glass-highlight);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg), var(--glass-highlight-strong);
}

.glass-card-interactive {
  cursor: pointer;
}

.glass-card-interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Glow Border Card Highlight Effect */
.card-glow-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.glass-card:hover .card-glow-overlay {
  opacity: 1;
}

/* --- Interactive Mockup Window (Hero Desktop Preview) --- */
.mockup-window {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--bg-base);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow-combined);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(14, 15, 18, 0.9);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  user-select: none;
}

.mockup-titlebar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.traffic-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.traffic-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic-dot.close { background: #ef4444; }
.traffic-dot.min { background: #f59e0b; }
.traffic-dot.max { background: #10b981; }

.mockup-app-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-app-title img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.mockup-workspace-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  color: #c4b5fd;
}

.mockup-window-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  height: 520px;
  background: var(--bg-app);
}

@media (max-width: 840px) {
  .mockup-window-body {
    grid-template-columns: 1fr;
    height: auto;
  }
  .mockup-sidebar {
    display: none;
  }
}

.mockup-sidebar {
  background: rgba(12, 13, 16, 0.8);
  border-right: 1px solid var(--border-subtle);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mockup-nav-item:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.mockup-nav-item.active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-left: 3px solid var(--brand-primary);
  font-weight: 600;
}

.mockup-team-section {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.mockup-team-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.mockup-member-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.member-avatar-chip {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ffffff;
}

.mockup-viewport {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

/* --- Interactive Simulator & Calendar Sandbox --- */
.sandbox-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  background: var(--bg-base);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 980px) {
  .sandbox-wrapper {
    grid-template-columns: 1fr;
  }
}

.sandbox-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 10px;
}

.sandbox-date-display {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sandbox-team-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.filter-btn.active {
  background: #3f3f46;
  color: #ffffff;
  border-color: #71717a;
}

/* Conflict Alert Live Banner */
.conflict-alert-banner {
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  animation: slide-down 0.3s ease;
}

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

.conflict-alert-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fb7185;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-resolve {
  background: #f43f5e;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.btn-resolve:hover {
  background: #e11d48;
  transform: scale(1.03);
}

/* Interactive Time Grid */
.calendar-sim-grid {
  display: grid;
  grid-template-columns: 50px repeat(3, 1fr);
  gap: 8px;
  background: rgba(14, 15, 20, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  min-height: 280px;
}

.sim-time-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 6px 0;
}

.sim-day-col {
  border-left: 1px solid var(--border-subtle);
  padding: 4px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.sim-slot-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.sim-conflict-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  transition: all var(--transition-normal);
}

.sim-conflict-row.conflict-active {
  gap: 6px;
}

.sim-slot-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-slot-placeholder.filled {
  border: none;
  padding: 0;
  background: transparent;
  min-height: auto;
}

.sim-day-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-subtle);
}

.sim-event-card {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  border-left: 3px solid;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.sim-event-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.sim-event-card.conflict-flash {
  border-color: #f43f5e !important;
  background: rgba(244, 63, 94, 0.25) !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.sim-event-alex {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--member-alex);
  color: #f8fafc;
}

.sim-event-sarah {
  background: rgba(16, 185, 129, 0.18);
  border-color: var(--member-sarah);
  color: #e2e8f0;
}

.sim-event-elena {
  background: rgba(244, 63, 94, 0.18);
  border-color: var(--member-elena);
  color: #e2e8f0;
}

.sim-event-michael {
  background: rgba(6, 182, 212, 0.18);
  border-color: var(--member-michael);
  color: #e2e8f0;
}

/* Decibel AI Sandbox Widget Panel */
.decibel-panel {
  display: flex;
  flex-direction: column;
  background: rgba(15, 16, 22, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
  padding: 14px;
  height: 100%;
}

.decibel-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 10px;
}

.decibel-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #6d28d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
}

.decibel-title-meta {
  flex: 1;
}

.decibel-title-meta h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e2e8f0;
}

.decibel-title-meta span {
  font-size: 0.72rem;
  color: #a78bfa;
}

.decibel-chat-feed {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  max-height: 220px;
  padding-right: 4px;
}

.chat-bubble {
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 90%;
}

.chat-bubble.ai {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #e2e8f0;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.chat-bubble.user {
  background: #3f3f46;
  color: #ffffff;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.decibel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 8px;
}

.prompt-chip {
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.prompt-chip:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--brand-secondary);
  color: #ffffff;
}

.decibel-input-box {
  display: flex;
  gap: 6px;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 4px 8px;
}

.decibel-input-box input {
  flex: 1;
  padding: 6px 4px;
  font-size: 0.82rem;
  color: var(--text-primary);
}

.decibel-input-box button {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--brand-secondary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.decibel-input-box button:hover {
  transform: scale(1.08);
}

/* --- Feature Grid & Cards --- */
.feature-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-sm);
}

.feature-card.teal .feature-icon-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #e4e4e7;
}

.feature-card.violet .feature-icon-wrapper {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--brand-secondary-light);
}

.feature-card.coral .feature-icon-wrapper {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
  color: #fb7185;
}

.feature-card.amber .feature-icon-wrapper {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.feature-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Release & Download Cards --- */
.download-card {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%), var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.download-version-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #e4e4e7;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.download-specs {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.checksum-widget {
  width: 100%;
  max-width: 480px;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-muted);
}

.checksum-widget span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-hash-btn {
  padding: 4px 8px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  transition: all var(--transition-fast);
}

.copy-hash-btn:hover {
  background: var(--brand-primary);
  color: #ffffff;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

/* --- Toast Notification --- */
.web-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-modal);
  backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.web-toast.show {
  transform: translateY(0);
  opacity: 1;
}
