/* ========================================
   SEO Growth - Audit Report Styles
   ======================================== */

.report-page {
  max-width: 900px;
  margin: 100px auto 40px;
  padding: 0 20px;
}

.report-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 40px;
  color: var(--white);
  text-align: center;
}
.report-header h1 { font-size: 1.6rem; font-weight: 800; margin-bottom: 5px; }
.report-header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.report-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.report-meta span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.report-score-section {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 40px;
  text-align: center;
}
[data-theme="dark"] .report-score-section {
  background: var(--bg-alt, #1a1a2e);
  border-color: rgba(255,255,255,0.06);
}

.score-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
}
.score-green { background: linear-gradient(135deg, #28a745, #20c997); }
.score-yellow { background: linear-gradient(135deg, #ffc107, #fd7e14); }
.score-red { background: linear-gradient(135deg, #dc3545, #e74c3c); }

.score-summary {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.score-stat { text-align: center; }
.score-stat strong { display: block; font-size: 1.5rem; color: var(--navy); }
[data-theme="dark"] .score-stat strong { color: var(--white); }
.score-stat span { font-size: 0.82rem; color: var(--gray-500); }

.report-body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  padding: 30px 40px;
}
[data-theme="dark"] .report-body {
  background: var(--bg-alt, #1a1a2e);
  border-color: rgba(255,255,255,0.06);
}

.report-category {
  margin-bottom: 30px;
}
.report-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 15px;
}
[data-theme="dark"] .report-category-header { border-bottom-color: rgba(255,255,255,0.06); }
.report-category-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
[data-theme="dark"] .report-category-header h3 { color: var(--white); }
.report-category-header .cat-score { font-size: 0.85rem; font-weight: 600; }

.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
[data-theme="dark"] .check-row { border-bottom-color: rgba(255,255,255,0.03); }
.check-row:last-child { border-bottom: none; }
.check-name { font-size: 0.9rem; color: var(--gray-700); font-weight: 500; }
[data-theme="dark"] .check-name { color: rgba(255,255,255,0.7); }
.check-detail { font-size: 0.78rem; color: var(--gray-500); margin-top: 2px; }
.check-status {
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.check-pass { background: #d4edda; color: #155724; }
.check-fail { background: #f8d7da; color: #721c24; }
[data-theme="dark"] .check-pass { background: rgba(40,167,69,0.15); color: #69db7c; }
[data-theme="dark"] .check-fail { background: rgba(220,53,69,0.15); color: #ff8787; }

.report-fixes {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #856404;
}
[data-theme="dark"] .report-fixes {
  background: rgba(255,193,7,0.1);
  border-color: rgba(255,193,7,0.3);
  color: #ffd43b;
}
.report-fixes strong { display: block; margin-bottom: 5px; }

.report-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 0;
  padding: 40px;
  text-align: center;
  color: var(--white);
}
.report-cta h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.report-cta p { color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.report-cta .cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.report-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.report-pkg {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
}
.report-pkg h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.report-pkg .price { font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.report-pkg ul { text-align: left; }
.report-pkg li { font-size: 0.82rem; color: rgba(255,255,255,0.6); padding: 3px 0; list-style: none; }
.report-pkg li::before { content: '\2713'; color: #28a745; margin-right: 8px; }

@media (max-width: 768px) {
  .report-page { margin-top: 80px; }
  .report-header, .report-body, .report-score-section { padding: 25px 20px; }
  .report-cta { padding: 25px 20px; }
  .report-packages { grid-template-columns: 1fr; }
  .score-summary { gap: 20px; }
}
