:root{
  --bg0:#020617;
  --ink:#ffffff;
  --muted:rgba(255, 255, 255, 0.5);
  --glass:rgba(255, 255, 255, 0.03);
  --glass-border:rgba(255, 255, 255, 0.08);
  --glass-blur:blur(40px);
  --stroke:rgba(255, 255, 255, 0.05);
  --shadow:0 30px 60px rgba(0,0,0,0.5);
  
  /* 🆕 AUDITLYIO PREMIUM THEME */
  --purple-main:#a78bfa;
  --purple-glow:rgba(167, 139, 250, 0.3);
  --blue-main:#60a5fa;
  --gradient-btn: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
  
  --green:#22c55e;
  --orange:#f59e0b;
  --red:#ef4444;
  --green-glow:rgba(34, 197, 94, 0.5);
  
  --radius:32px;
  --radius-sm:20px;
  --radius-xs:16px;
  --sans:"Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0; -webkit-font-smoothing: antialiased;}
/* 📄 EXPERT REPORT OVERLAY STYLES */
.expert-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: expertFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes expertFadeIn {
  from { opacity: 0; backdrop-filter: blur(0px); }
  to { opacity: 1; backdrop-filter: blur(20px); }
}

.expert-overlay__container {
  background: #ffffff;
  color: #0f172a;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  border-radius: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  animation: expertSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes expertSlideUp {
  from { transform: translateY(60px) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.expert-overlay__header {
  padding: 40px 50px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.expert-overlay__title-group h2 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: #0f172a;
}

#expertReportBadge {
  font-size: 11px;
  font-weight: 800;
  color: #8b5cf6;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: #f5f3ff;
  padding: 4px 12px;
  border-radius: 8px;
}

.expert-overlay__close {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-overlay__close:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg);
}

.expert-overlay__body {
  padding: 50px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.expert-overlay__loader {
  text-align: center;
  padding: 80px 0;
  color: #94a3b8;
  font-weight: 600;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin-bottom: 24px;
}

.text-warning { color: #f59e0b; }
.text-success { color: #10b981; }

.expert-report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.specs-box {
  background: #f8fafc;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #f1f5f9;
  display: grid;
  gap: 16px;
}

.expert-spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.expert-spec-label { font-size: 14px; font-weight: 600; color: #ffffff !important; opacity: 1 !important; }
.expert-spec-value { font-size: 14px; font-weight: 800; color: #ffffff !important; opacity: 1 !important; }

.risks-box {
  background: #fffcf0;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #fef3c7;
  display: grid;
  gap: 14px;
}

.expert-risk-item {
  font-size: 14px;
  font-weight: 700;
  color: #78350f;
  padding: 14px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  display: flex;
  gap: 12px;
}

.full-text-box {
  background: #f8fafc;
  padding: 40px;
  border-radius: 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  white-space: pre-wrap;
  font-weight: 500;
  margin-bottom: 48px;
}

.tips-box {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  padding: 40px;
  border-radius: 40px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.3);
}

.expert-overlay__footer {
  padding: 30px;
  text-align: center;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 850px) {
  .expert-report-grid { grid-template-columns: 1fr; }
  .expert-overlay__container { border-radius: 0; max-height: 100vh; }
  .expert-overlay__header { padding: 30px; }
  .expert-overlay__body { padding: 30px; }
}

.resultCard.is-interactive {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.resultCard.is-interactive:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-main);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px var(--purple-glow);
}

.resultCard.is-interactive:active {
  transform: scale(0.98);
}

.resultCard.is-interactive::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(167, 139, 250, 0.05) 100%);
  pointer-events: none;
}

/* 💎 EXTREME PREMIUM LUXURY MODAL (REFINED CONTRAST) */
/* ==========================================================================
   AI SCANNER & MODALS
   ========================================================================== */

#expertReportOverlay, #risksReportOverlay, #compareReportOverlay, #adReportOverlay, #aiScannerOverlay, #welcomeOverlay, #authOverlay, #pricingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* AI Scanner Visuals */
.scanner-container {
  background: #ffffff;
  width: 95%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.scanner-view {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f0f0f5;
  border-radius: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.scanner-close-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s;
  color: #1d1d1f;
}

.scanner-close-x:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}


.scanner-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.scanner-view .placeholder-icon {
  font-size: 48px;
  opacity: 0.2;
}

/* Laser Animation */
.scanner-laser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #007aff, transparent);
  box-shadow: 0 0 15px #007aff, 0 0 5px #fff;
  z-index: 10;
  display: none;
  animation: scanMove 2.5s infinite ease-in-out;
}

@keyframes scanMove {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.scanning-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.scan-point {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #007aff;
  border-radius: 50%;
  box-shadow: 0 0 10px #007aff;
  animation: pulsePoint 1.5s infinite;
  opacity: 0;
}

@keyframes pulsePoint {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.scanner-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.scanner-step-desc {
  font-size: 14px;
  color: #86868b;
  margin-bottom: 24px;
}

.scanner-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.progress-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

.progress-dot.active {
  width: 24px;
  background: #007aff;
}

.scanner-result {
  display: none;
  text-align: left;
  background: #f5f5f7;
  padding: 20px;
  border-radius: 16px;
  margin-top: 10px;
  border: 1px solid #e2e8f0;
}

.scanner-result__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.scanner-result__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.scanner-result__label {
  font-size: 13px;
  color: #86868b;
}

.scanner-result__value {
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
}

.scanner-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-scanner {
  flex: 1;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-scanner--primary {
  background: #007aff;
  color: white;
}

.btn-scanner--secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}

.ai-disclaimer {
  font-size: 11px;
  color: #86868b;
  margin-top: 16px;
  line-height: 1.4;
}

/* Verdict Box visibility fix (from memory) */
.verdictBox__badge {
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#expertReportOverlay, #risksReportOverlay, #compareReportOverlay, #adReportOverlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 6, 23, 0.85); /* Darker backdrop for focus */
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* 🆕 COMPARISON MODAL STYLES */
.comparison-window {
  max-width: 1300px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  position: relative;
  margin-bottom: 40px;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--purple-main);
  background: rgba(167, 139, 250, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.3);
  align-self: center;
  margin-top: 120px;
  backdrop-filter: blur(5px);
  z-index: 2;
}

.compare-col {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.compare-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

.select-compare {
  height: 52px !important;
  font-size: 15px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.compare-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.compare-section-title {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
  display: block;
}

.compare-price-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 100%);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.compare-price-value {
  font-size: 38px;
  font-weight: 950;
  color: #ffffff;
  letter-spacing: -1px;
}

.compare-summary-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 50px;
  margin-top: 30px;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
}

.summary-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.summary-item {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
}

.summary-item strong {
  display: block;
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.btnCompareTrigger {
  width: 100%;
  padding: 20px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px dashed rgba(139, 92, 246, 0.5);
  border-radius: 20px;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btnCompareTrigger:hover {
  background: rgba(139, 92, 246, 0.2);
  border-style: solid;
  border-color: #a78bfa;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .compare-vs {
    margin-top: 0;
    margin-bottom: 20px;
  }
  .summary-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.expert-report-window {
  width: 100%;
  max-width: 1100px;
  max-height: 94vh;
  background: #0f172a; /* Solid dark base for readability */
  background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 48px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #f8fafc;
}

/* Header */
.expert-header-top {
  padding: 40px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#expertReportName, #risksReportName {
  font-size: 42px;
  font-weight: 950;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(255,255,255,0.1);
  margin: 0;
}

.expert-subtitle {
  color: #ffffff; /* pure white */
  opacity: 1;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 10px;
}

#closeExpertReport, #closeRisksReport {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

#closeExpertReport:hover, #closeRisksReport:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
  transform: rotate(90deg) scale(1.1);
}

/* Body */
.expert-scroll-area {
  padding: 40px 50px;
  overflow-y: auto;
  flex: 1;
}
.expert-scroll-area::-webkit-scrollbar {
  width: 8px;
}
.expert-scroll-area::-webkit-scrollbar-track {
  background: transparent;
}
.expert-scroll-area::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.expert-scroll-area::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Visual Area */
.expert-visual-area {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 32px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.expert-price-tag {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 14px;
  color: #ffffff !important;
  opacity: 1 !important;
  font-weight: 700;
  margin-bottom: 5px;
}

#expertRecommendedPrice {
  font-size: 64px;
  font-weight: 950;
  color: #fff;
  line-height: 1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Info Grid (2 Columns) */
.expert-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.info-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 35px;
}

.card-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Analysis Card */
.analysis-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 40px;
  margin-bottom: 30px;
}

.analysis-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* Footer Tip */
.expert-footer-tip {
  background: linear-gradient(90deg, #1e1b4b 0%, #0f172a 100%);
  border-top: 1px solid #4338ca;
  padding: 30px 50px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.tip-icon {
  font-size: 32px;
  filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.4));
}

.tip-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #eab308;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

#expertReportTips {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: #f1f5f9;
}

/* Lists */
.expert-manual-item, .expert-risk-item, .expert-check-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.expert-check-item:hover, .expert-risk-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: #a78bfa;
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.expert-risk-icon {
  color: #fb7185; 
  font-size: 22px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(251, 113, 133, 0.3));
}

/* 🦴 SKELETON LOADERS */
@keyframes skeleton-loading {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}

.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px;
}

.skeleton-text { height: 16px; margin-bottom: 12px; width: 80%; }
.skeleton-title { height: 24px; margin-bottom: 20px; width: 50%; }
.skeleton-card { height: 120px; margin-bottom: 20px; width: 100%; }
.skeleton-circle { width: 40px; height: 40px; border-radius: 50%; }

/* 🏷️ Interactive Price Badge */
.price-impact-badge {
  font-size: 10px;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 8px;
  font-weight: 800;
  display: inline-block;
}

.expert-check-item.is-checked {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.expert-check-item.is-checked .expert-check-icon {
  color: #ef4444 !important;
}

#expertReportLoader {
  padding: 40px;
}

.skeleton-expert-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.skeleton-header-row {
  display: flex;
  gap: 20px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* FOOTER LOGOS / TRUST */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.3s;
}

.trust-badges:hover {
  opacity: 0.8;
}

/* 🛡️ Floating Verified Badge */
.verified-floating-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  z-index: 9999;
  border: 2px solid rgba(255,255,255,0.2);
  animation: floating-badge-in 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes floating-badge-in {
  from { transform: translateY(100px) scale(0.5); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .verified-floating-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 11px;
  }
}
  content: attr(data-hint);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 13px;
  width: 280px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  line-height: 1.5;
}

.expert-check-item[data-hint]:hover::after {
  opacity: 1;
  top: -85px;
}

.expert-risk-item {
  background: rgba(244, 63, 94, 0.03);
  border-color: rgba(244, 63, 94, 0.15);
}

.expert-risk-item:hover {
  background: rgba(244, 63, 94, 0.08);
  border-color: #fb7185;
}

/* Specs */
#expertReportSpecs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.expert-spec-item {
  display: flex;
  flex-direction: column;
}

.expert-spec-label {
  font-size: 11px;
  color: #ffffff !important;
  opacity: 1 !important;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.expert-spec-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff !important;
}

/* New Bottom Grid Layout */
.expert-bottom-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.secondary-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 25px;
}

.expert-footer-simple {
  padding: 20px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Checklist Item Styles (for Calculator & Manual) */
.expert-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #f1f5f9;
  transition: all 0.2s;
}

.expert-check-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.expert-check-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* 📱 MODEL SELECTION DROPDOWNS */
.model-selection-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

select.auditInput {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px;
}

select.auditInput:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .expert-bottom-grid { grid-template-columns: 1fr; }
}

[hidden]{display:none !important}

/* --- KONIEC NOVÉHO PREMIUM ŠTÝLU --- */

/* --- KONIEC NOVÉHO GLASS ŠTÝLU --- */

.section-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #94a3b8;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.05);
}

.specs-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.expert-spec-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.expert-spec-label { font-size: 11px; font-weight: 700; color: #ffffff !important; opacity: 1 !important; text-transform: uppercase; }
.expert-spec-value { font-size: 16px; font-weight: 800; color: #ffffff !important; opacity: 1 !important; }

.risks-box {
  background: #fffcf0;
  padding: 40px;
  border-radius: 40px;
  border: 1px solid #fef3c7;
  display: grid;
  gap: 16px;
  box-shadow: inset 0 0 40px rgba(251, 191, 36, 0.05);
}

.expert-risk-item {
  font-size: 14px;
  font-weight: 700;
  color: #78350f;
  padding: 18px 24px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 16px rgba(120, 53, 15, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(251, 191, 36, 0.1);
}

.expert-risk-item span {
  font-size: 20px;
}

/* Forensic Text Area */
.expert-report-full {
  margin-bottom: 60px;
}

.full-text-box {
  background: #ffffff;
  padding: 60px;
  border-radius: 48px;
  font-size: 17px;
  line-height: 1.9;
  color: #334155;
  white-space: pre-wrap;
  font-weight: 500;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.full-text-box::before {
  content: "MASTER";
  position: absolute;
  top: 40px;
  right: -20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.02);
  transform: rotate(90deg);
  pointer-events: none;
}

.tips-box {
  background: #0f172a;
  background-image: radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent);
  padding: 50px 60px;
  border-radius: 48px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.7;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
  position: relative;
}

.tips-box::after {
  content: "🤝";
  position: absolute;
  bottom: 20px;
  right: 40px;
  font-size: 40px;
  opacity: 0.2;
}

.expert-overlay__footer {
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 1000px) {
  .expert-report-grid { grid-template-columns: 1fr; }
  .specs-box { grid-template-columns: 1fr; }
  .expert-overlay__container { border-radius: 0; max-height: 100vh; }
  .expert-overlay__header { padding: 30px; }
  .expert-overlay__body { padding: 30px; }
  .full-text-box { padding: 30px; }
  .expert-overlay__title-group h2 { font-size: 28px; }
}

.manual-check-box {
  background: #f0fdf4;
  padding: 32px;
  border-radius: 40px;
  border: 1px solid #dcfce7;
  display: grid;
  gap: 12px;
  box-shadow: inset 0 0 40px rgba(34, 197, 94, 0.03);
}

.expert-manual-item {
  font-size: 14px;
  font-weight: 700;
  color: #166534;
  padding: 14px 20px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.expert-manual-item span {
  font-size: 18px;
}

[hidden]{display:none !important}

html, body {
  min-height: 100%;
  margin: 0;
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

/* 🌌 VIBRANT AURORA MESH BACKGROUND */
.aurora-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0f172a 0%, #020617 100%);
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

@keyframes auroraAnim {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.aurora-blob {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  mix-blend-mode: screen;
  z-index: -1;
  animation: blobFloat 40s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.aurora-blob--1 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.aurora-blob--2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  bottom: -20%;
  right: -10%;
  animation-delay: -8s;
}

.aurora-blob--3 {
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation-duration: 50s;
  animation-delay: -15s;
}

.aurora-blob--4 {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: 40%;
  animation-duration: 45s;
  animation-delay: -20s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(10%, 15%) scale(1.1) rotate(5deg); }
  66% { transform: translate(-5%, 10%) scale(0.95) rotate(-5deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

.ambient {
  position: fixed;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  background: transparent !important;
}

/* 🏷️ PRICING SECTION */
.pricingSection {
  padding: 100px 0;
  background: rgba(2, 6, 23, 0.4);
  backdrop-filter: blur(10px);
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card.is-popular {
  background: rgba(167, 139, 250, 0.05);
  border: 2px solid var(--purple-main);
  transform: scale(1.05);
}

.pricing-card.is-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pricing-card__type {
  font-size: 12px;
  font-weight: 800;
  color: var(--purple-main);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.pricing-card__price {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 30px;
}

.pricing-card__price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-card__features li {
  margin-bottom: 15px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card__features li span {
  font-size: 12px;
}

.pricing-card__btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-card.is-popular .pricing-card__btn {
  background: var(--gradient-btn);
}

.pricing-card__btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card.is-popular .pricing-card__btn:hover {
  box-shadow: 0 10px 20px var(--purple-glow);
}

/* 🏔️ MAIN HEADER (FIXED GLASS) */
.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.headerContainer {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.headerLeft .headerLogo {
  display: flex;
  flex-direction: column;
}

.logoText {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logoTagline {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.headerCenter .navLinks {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navLinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navLinks a:hover {
  color: #ffffff;
}

.headerRight {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btnSettings {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.btnSettings:hover {
  color: #ffffff;
}

.btnLogin {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btnLogin:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.mobileMenuToggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobileMenuToggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.3s;
}

.mobileMenuToggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobileMenuToggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobileMenuToggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 🛡️ HERO / LUXURY PROTECTION SECTION */
.heroSection {
  padding-top: 140px; /* Space for fixed header */
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.luxuryBadge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 32px 80px;
  border-radius: 120px;
  border: 1px solid rgba(252, 211, 77, 0.2); /* Jemný zlatý okraj */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxuryBadge__glow {
  position: absolute;
  inset: 0;
  border-radius: 120px;
  background: radial-gradient(circle at center, rgba(252, 211, 77, 0.1) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.luxuryBadge:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(252, 211, 77, 0.4);
  box-shadow: 
    0 35px 100px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(252, 211, 77, 0.15);
}

.luxuryBadge:hover .luxuryBadge__glow {
  opacity: 1;
}

.luxuryBadge__icon {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(252, 211, 77, 0.3));
  animation: luxuryPulse 4s infinite ease-in-out;
}

@keyframes luxuryPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(252, 211, 77, 0.2)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 35px rgba(252, 211, 77, 0.5)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(252, 211, 77, 0.2)); }
}

.luxuryBadge__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.luxuryBadge__title {
  font-size: 52px; /* Ešte väčší pre maximálny impakt */
  font-weight: 900;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.03em;
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.gold-text {
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.white-text {
  color: #ffffff;
  opacity: 0.95;
}

.luxuryBadge__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.diamond-icon {
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.subtitle {
  font-size: 11px;
  font-weight: 800;
  color: var(--purple-main);
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* 🛠️ HOW IT WORKS SECTION */
.howSection {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 80px;
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.how-subtitle {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-col {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.how-col:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(167, 139, 250, 0.2);
}

.how-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.how-label.sell {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.how-label.buy {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-step-num {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
  font-size: 14px;
}

.how-step-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.how-step-content p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* 🏗️ PREMIUM UNIFIED LAYOUT */
.mainContent {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 6rem auto; /* Extra bottom margin for footer */
  display: flex;
  justify-content: center;
}

.market-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.3;
  margin: 12px 0 8px 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-style: italic;
}

/* 🦶 MAIN FOOTER */
.mainFooter {
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px 0;
  margin-top: auto;
}

.footerContainer {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footerTitle {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.footerLinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerLinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footerLinks a:hover {
  color: #ffffff;
}

.footerBottom {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footerBottom p {
  font-size: 12px;
  color: var(--muted);
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .headerCenter {
    display: none;
  }
  .mobileMenuToggle {
    display: flex;
  }
  .footerContainer {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .headerRight .btnLogin {
    display: none;
  }
}

.mobileNav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(30px);
  padding: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobileNavLinks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobileNavLinks a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.btnLogin.mobile {
  width: 100%;
  margin-top: 10px;
}

.unifiedCard {
  width: 100%;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px; /* Zmenšené z 40px */
  box-shadow: 
    0 35px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.mainLayout {
  display: grid;
  grid-template-columns: 360px 1px 1fr; /* Zmenšené z 420px */
  min-height: 700px; /* Zmenšené z 800px */
}

.verticalDivider {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
  width: 1px;
}

.layoutCol {
  padding: 40px; /* Zmenšené z 48px */
  display: flex;
  flex-direction: column;
  gap: 28px; /* Zmenšené z 32px */
}

.leftCol {
  background: rgba(255, 255, 255, 0.03);
}

.rightCol {
  background: transparent;
}

@media (max-width: 1100px) {
  .mainLayout {
    grid-template-columns: 1fr;
  }
  .verticalDivider {
    display: none;
  }
  .leftCol {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* 🪟 GLASS COMPONENTS (INNER) */
.auditHeader {
  margin-bottom: 34px; /* Zmenšené z 40px */
}

.auditHeader__logo {
  display: flex;
  align-items: center;
  gap: 14px; /* Zmenšené z 16px */
  font-size: 28px; /* Zmenšené z 32px */
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 6px; /* Zmenšené z 8px */
}

.auditHeader__subtitle {
  font-size: 12px; /* Zmenšené z 14px */
  color: var(--muted);
  font-weight: 500;
}

.categoryGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  width: 100%;
}

.catItem {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  min-width: 0; /* Prevents overflow in grid */
}

.catItem .icon {
  font-size: 22px;
  opacity: 0.6;
}

.catItem:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.catItem.is-active {
  background: rgba(167, 139, 250, 0.2);
  border-color: var(--purple-main);
  box-shadow: 0 0 18px var(--purple-glow);
}

.catItem.is-active .icon {
  opacity: 1;
  transform: scale(1.1);
}

/* 🔄 MODE TOGGLE (KUPUJEM / PREDÁVAM) */
.modeToggle {
  margin-bottom: 28px; /* Zmenšené z 32px */
}

.modeToggle__container {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 12px; /* Zmenšené z 14px */
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modeToggle__item {
  flex: 1;
  text-align: center;
  padding: 10px 0; /* Zmenšené z 12px */
  font-size: 13px; /* Zmenšené z 14px */
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  user-select: none;
}

.modeToggle__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px; /* Zmenšené z 10px */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  backdrop-filter: blur(10px);
}

#modeBuy:checked ~ .modeToggle__slider {
  transform: translateX(0);
}

#modeSell:checked ~ .modeToggle__slider {
  transform: translateX(100%);
}

#modeBuy:checked ~ [for="modeBuy"],
#modeSell:checked ~ [for="modeSell"] {
  color: #ffffff;
}

/* ✍️ INPUTS (LARGER & PREMIUM) */
.auditForm {
  display: flex;
  flex-direction: column;
  gap: 14px; /* Zmenšené z 16px */
}

.photoAction {
  margin-bottom: 6px; /* Zmenšené z 8px */
}

.btnPhoto {
  width: 100%;
  height: 78px; /* Zmenšené z 90px (cca 86%) */
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 2px dashed rgba(139, 92, 246, 0.4);
  border-radius: 14px; /* Zmenšené z var(--radius-xs) */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px; /* Zmenšené z 20px */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btnPhoto:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
  border-color: var(--purple-main);
  border-style: solid;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(139, 92, 246, 0.15);
}

.btnPhoto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btnPhoto:hover::before {
  transform: translateX(100%);
}

.btnPhoto__icon {
  font-size: 28px; /* Zmenšené z 32px */
  filter: drop-shadow(0 0 10px var(--purple-glow));
}

.btnPhoto__text {
  font-size: 14px; /* Zmenšené z 16px */
  font-weight: 700;
  color: #ffffff;
}

.photoAction__tip {
  font-size: 11px; /* Zmenšené z 12px */
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
}

.formDivider {
  display: flex;
  align-items: center;
  gap: 14px; /* Zmenšené z 16px */
  margin: 6px 0; /* Zmenšené z 8px */
}

.formDivider::before,
.formDivider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.formDivider span {
  font-size: 10px; /* Zmenšené z 11px */
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.auditInput {
  width: 100%;
  height: 56px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff !important;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
}

.auditInput:focus {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--purple-main) !important;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.2);
}

.auditInput::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 500;
}

select.auditInput option {
  background: #0f172a;
  color: white;
  padding: 15px;
}

/* 🆕 PREMIUM SCROLLBAR FOR DROPDOWNS */
select.auditInput::-webkit-scrollbar {
  width: 8px;
}
select.auditInput::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
}
select.auditInput::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
select.auditInput::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* For Firefox */
select.auditInput {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

/* 🚀 ANALYZE BUTTON (TALLER) */
.btnAnalyze {
  width: 100%;
  height: 56px; /* Zmenšené z 64px */
  background: var(--gradient-btn);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 14px; /* Zmenšené z 16px */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 10px; /* Zmenšené z 12px */
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 🎚️ MODE FIELDS & TOGGLES */
.input-row-spec {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.select-spec {
  flex: 1;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 30px;
}

.select-spec option {
  background: #1a1a2e;
  color: white;
}

.mode-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fieldFadeIn 0.3s ease;
}

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

.input-row-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* Apple-style Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider-round {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider-round {
  background-color: var(--purple-main);
}

input:checked + .slider-round:before {
  transform: translateX(20px);
}

/* Accessory Selection */
.accessory-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accessory-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accessory-grid {
  display: flex;
  gap: 12px;
}

.acc-item {
  flex: 1;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.acc-icon {
  font-size: 20px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.acc-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.acc-item:has(input:checked) {
  background: rgba(167, 139, 250, 0.2);
  border-color: var(--purple-main);
  box-shadow: 0 0 15px var(--purple-glow);
}

.acc-item:has(input:checked) .acc-icon {
  opacity: 1;
  transform: scale(1.1);
}

.acc-item:has(input:checked) .acc-text {
  color: #ffffff;
  opacity: 1;
}

.input-helper-text {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  padding-left: 4px;
  font-weight: 500;
}

.input-with-info {
  position: relative;
  display: flex;
  align-items: center;
}

.info-tooltip {
  position: absolute;
  right: 16px;
  z-index: 10;
}

.info-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple-main);
  cursor: help;
  transition: all 0.3s ease;
}

.info-icon:hover {
  background: var(--purple-main);
  color: white;
  border-color: var(--purple-main);
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 12px);
  right: -10px;
  width: 200px;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  font-size: 11px;
  color: white;
  line-height: 1.4;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-tooltip:hover .tooltip-content {
  opacity: 1;
  transform: translateY(0);
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 14px;
  border: 6px solid transparent;
  border-top-color: rgba(2, 6, 23, 0.95);
}

/* 🎮 CONTROLLER SELECTOR */
.controller-selector {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  margin-bottom: 12px; /* Pridaný margin pre oddelenie od mriežky */
}

.controller-selector:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-main);
  transform: translateY(-2px);
}

.controller-selector:active {
  transform: scale(0.98);
}

.controller-selector__content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.controller-selector__icon {
  font-size: 24px;
}

.controller-selector__info {
  display: flex;
  flex-direction: column;
}

.controller-selector__label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.controller-selector__value {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.controller-selector__visual {
  display: flex;
  gap: 4px;
}

.controller-mini-icon {
  font-size: 18px;
  filter: drop-shadow(0 0 8px var(--purple-glow));
  animation: controllerPop 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@keyframes controllerPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.btnAnalyze:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.5);
}

/* 🤝 SOCIAL PROOF */
.socialProof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.8;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* 📊 RIGHT SIDE AREA (UNIFIED) */
.rightCol {
  position: relative; /* For overlay positioning */
}

.reportOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 34px 34px 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.reportOverlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
}

.reportOverlay__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reportOverlay__icon {
  font-size: 40px;
  opacity: 0.5;
}

.reportOverlay__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.reportOverlay__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--purple-main);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner-mini {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-left-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dealArea {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dealMeter {
  padding: 0 0 34px 0; /* Zmenšené z 40px */
}

.dealMeter__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; /* Zmenšené z 24px */
}

.dealMeter__label {
  font-size: 16px; /* Zmenšené z 18px */
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.dealMeter__status {
  font-size: 16px; /* Zmenšené z 18px */
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  text-shadow: 0 0 18px var(--green-glow);
}

.dealMeter__bar {
  height: 10px; /* Zmenšené z 12px */
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: visible;
}

.dealMeter__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #22c55e 100%);
  border-radius: 5px;
  opacity: 0.8;
}

.dealMeter__active {
  position: absolute;
  top: 50%;
  height: 0;
  width: 0;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.dealMeter__handle {
  position: absolute;
  left: -10px; /* Zmenšené z -12px */
  top: -10px; /* Zmenšené z -12px */
  width: 20px; /* Zmenšené z 24px */
  height: 20px; /* Zmenšené z 24px */
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
  border: 3px solid var(--bg0); /* Zmenšené z 4px */
}

.reportArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 34px 0; /* Zmenšené z 40px */
}

.reportGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  height: 100%;
}

.resultCard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.resultCard:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.05);
}

.resultCard__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.resultCard__title span {
  font-size: 18px;
}

/* 📋 SPEC LIST */
.specList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.specItem:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.specItem span {
  color: #ffffff !important;
  opacity: 0.7;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.specItem strong {
  color: #ffffff !important;
  opacity: 1;
  font-weight: 800;
}

/* 🛡️ CHECKLIST */
.checkList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkItem {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.checkItem.is-good { color: #4ade80; }
.checkItem.is-bad { color: #f87171; }

/* 📊 PRICE CHART */
.priceChart {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100px;
  gap: 10px;
  margin-top: 10px;
}

.priceChart__bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  position: relative;
  min-width: 40px;
}

.priceChart__bar.is-active {
  background: var(--purple-main);
  box-shadow: 0 0 20px var(--purple-glow);
}

.priceChart__bar span {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
}

.priceChart__label {
  font-size: 11px;
  text-align: center;
  color: var(--muted);
}

.resultCard.is-interactive {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.resultCard.is-interactive:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cardActionHint {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--purple-main);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
}

.resultCard.is-interactive:hover .cardActionHint {
  opacity: 1;
}

.btnTrend {
  display: none; /* Skryté, lebo celá karta je interaktívna */
}

/* ... existing btnTrend styles if needed ... */

/* 📈 TREND MODAL */
.trendModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.trendModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(10px);
}

.trendModal__content {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.trendModal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.trendModal__close:hover {
  color: #ffffff;
}

.trendModal__header {
  margin-bottom: 32px;
}

.trendModal__title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.trendModal__subtitle {
  font-size: 14px;
  color: var(--muted);
}

.trendModal__chart {
  width: 100%;
  height: 250px;
  margin-bottom: 32px;
}

.trendModal__footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trendStats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trendInfo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trendInfo__label {
  font-size: 14px;
  color: var(--muted);
}

.trendInfo__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--purple-main);
}

.trendInfo__value.is-drop {
  color: #f87171; /* Reddish for drop */
  display: flex;
  align-items: center;
  gap: 4px;
}

.trendInfo__value.is-drop::after {
  content: "📉";
  font-size: 14px;
}

.trendModal__tip {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
}

/* 💜 VERDICT BOX */
.is-verdict {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.verdictBox__badge {
  font-size: 20px;
  font-weight: 800;
  background: var(--purple-main);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verdictBox__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.verdictActions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding-top: 16px;
}

.btnAction {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.btnAction:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--purple-main);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.btnAction span {
  font-size: 14px;
}

.btnGenerateAd {
  width: 100%;
  margin-top: 16px;
  background: var(--gradient-btn);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.btnGenerateAd:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.btnGenerateAd span {
  font-size: 18px;
}

@media (max-width: 768px) {
  .reportGrid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.similarSection {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 34px;
}

.similarTitle {
  font-size: 16px; /* Zmenšené z 18px */
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ink);
}

.similarGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); /* Zmenšené z 280px */
  gap: 18px; /* Zmenšené z 20px */
}

.similarCardPremium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.similarCardPremium:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--purple-main);
  transform: translateY(-3px);
}

.similarCardPremium__price {
  font-size: 18px; /* Zmenšené z 20px */
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.similarCardPremium__title {
  font-size: 13px; /* Zmenšené z 14px */
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.reportEmptyState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px; /* Zmenšené z 24px */
}

.reportEmptyState h3 {
  font-size: 28px; /* Zmenšené z 32px */
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.reportEmptyState p {
  font-size: 16px; /* Zmenšené z 18px */
  color: var(--muted);
  max-width: 350px; /* Zmenšené z 400px */
  line-height: 1.6;
}

.reportEmptyState::before {
  content: "";
  width: 70px; /* Zmenšené z 80px */
  height: 70px; /* Zmenšené z 80px */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.21 15.89A10 10 0 1 1 8 2.83'%3E%3C/path%3E%3Cpath d='M22 12A10 10 0 0 0 12 2v10z'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  margin-bottom: 6px;
  opacity: 0.6;
}

/* 🍞 TOAST */
/* ✨ PREMIUM TOAST UPGRADE */
.toast {
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  border: 1px solid rgba(167, 139, 250, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(167, 139, 250, 0.1);
  backdrop-filter: blur(12px);
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.toast.is-success {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(6, 78, 59, 0.9);
}

.toastIcon {
  font-size: 20px;
}

/* ✍️ AD MODAL STYLES */
.ad-modal-window {
  max-width: 650px !important;
}

.ad-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 0;
}

.ad-field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ad-field-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-copy-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.ad-copy-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(167, 139, 250, 0.3);
}

.ad-copy-box.is-multiline {
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
}

.ad-text-content {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
  width: 100%;
}

.btnCopy {
  background: var(--purple-main);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btnCopy:hover {
  background: #a78bfa;
  transform: translateY(-1px);
}

.ad-copy-box.is-multiline .btnCopy {
  align-self: flex-end;
  margin-top: 10px;
}

/* 🏆 PUBLIC AUDIT LANDING PAGE STYLES */
.public-audit-window {
  max-width: 900px !important;
  width: 95% !important;
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(167, 139, 250, 0.1);
}

.public-audit-window .expert-header-top {
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.public-audit-window .expert-scroll-area {
  padding: 40px;
}

.fact-sheet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 0 0 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.fact-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.fact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(167, 139, 250, 0.3);
  transform: translateY(-2px);
}

.fact-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.fact-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 700;
}

.public-section {
  margin-bottom: 40px;
}

.public-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 25px;
}

.intro-card {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.05) 0%, rgba(30, 27, 75, 0.2) 100%);
  border-color: rgba(167, 139, 250, 0.1);
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.public-grid-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.comp-point {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 20px;
  border-left: 4px solid var(--purple-main);
  transition: transform 0.3s ease;
}

.comp-point:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.comp-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.comp-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.verified-param {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.05);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.public-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-box {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 16px;
  font-size: 11px;
  line-height: 1.6;
  color: #64748b;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* 🏁 PUBLIC REPORT PAGE MODE */
body.is-public-report {
  background: #020617 !important;
  overflow: hidden !important;
}

body.is-public-report > *:not(#publicAuditOverlay):not(#expertReportOverlay):not(.aurora-container) {
  display: none !important;
}

body.is-public-report #publicAuditOverlay:not([hidden]),
body.is-public-report #expertReportOverlay:not([hidden]) {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  padding: 20px !important;
  background: rgba(2, 6, 23, 0.9) !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

body.is-public-report .public-audit-window,
body.is-public-report .expert-report-window {
  max-width: 1000px !important;
  width: 100% !important;
  height: auto !important;
  max-height: 90vh !important;
  border-radius: 40px !important;
  margin: 0 auto !important;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: #0f172a !important;
  overflow: hidden;
  position: relative;
  display: flex !important;
  flex-direction: column !important;
}

body.is-public-report .expert-scroll-area {
  flex: 1 !important;
  overflow-y: auto !important;
  padding-bottom: 60px;
}

body.is-public-report .expert-header-top {
  padding: 40px 30px;
  background: rgba(2, 6, 23, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
  body.is-public-report .expert-header-top {
    padding: 20px;
  }
}

#publicAuditOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto; /* Enable scrolling for the overlay */
}

.public-audit-window .expert-header-top #closePublicAudit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.public-audit-window .expert-header-top #closePublicAudit:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* 🚪 GATE CARDS STYLES */
.gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.gate-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gate-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gate-card.seller:hover::before { background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, transparent 100%); }

.gate-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.gate-card:hover::before { opacity: 1; }

.gate-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}

.gate-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.gate-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
  line-height: 1.5;
}

.gate-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--purple-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.seller .gate-link { color: var(--orange); }

/* 📑 GUIDE MODAL STYLES */
.guide-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.guide-modal-window {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 600px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

.guide-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.guide-close:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.guide-modal-header {
  padding: 50px 40px 30px;
  text-align: center;
}

.guide-modal-header.seller { background: linear-gradient(to bottom, rgba(245, 158, 11, 0.1), transparent); }
.guide-modal-header.buyer { background: linear-gradient(to bottom, rgba(167, 139, 250, 0.1), transparent); }

.guide-modal-header h2 {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-top: 15px;
}

.guide-modal-body {
  padding: 0 40px 50px;
}

.guide-modal-footer {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .gate-grid { grid-template-columns: 1fr; }
  .guide-modal-body { padding: 0 25px 40px; }
  .guide-modal-header { padding: 40px 25px 25px; }
}

@media (max-width: 768px) {
  .gate-grid { grid-template-columns: 1fr; }
  .guide-modal-body { padding: 0 25px 40px; }
  .guide-modal-header { padding: 40px 25px 25px; }
}
