/* ============================================
   THE UPLAND ACCOUNTABILITY REPORT
   Page-specific styles — extends style.css
   ============================================ */

/* Active nav link */
.nav-active {
  color: var(--color-orange) !important;
  font-weight: 700 !important;
}

/* ============================================
   AUDIT HERO
   ============================================ */
.audit-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.audit-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(255, 167, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 70%, rgba(12, 45, 80, 0.12) 0%, transparent 50%),
    var(--bg-primary);
  z-index: 0;
}

.audit-hero-content {
  position: relative;
  z-index: 1;
}

.audit-badge {
  display: inline-block;
  background: rgba(255, 167, 58, 0.12);
  border: 1px solid rgba(255, 167, 58, 0.3);
  color: var(--color-orange);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.audit-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audit-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.audit-byline {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.audit-byline strong {
  color: var(--color-orange);
}

.audit-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 20px auto 0;
  line-height: 1.6;
  opacity: 0.7;
}

.audit-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.audit-disclaimer-box strong {
  color: var(--text-secondary);
}

.audit-update-box {
  background: rgba(255, 167, 58, 0.04);
  border: 1px solid rgba(255, 167, 58, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.audit-update-box strong {
  color: var(--color-orange);
}

.audit-stat-note {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-top: 2px;
  opacity: 0.7;
}

/* ============================================
   STATS BAR
   ============================================ */
.audit-stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.audit-stat {
  text-align: center;
  min-width: 120px;
}

.audit-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1.2;
}

.audit-stat-num.stat-red {
  color: #ef4444;
}

.audit-stat-num.stat-green {
  color: #83C77D;
}

.audit-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */
.audit-toc {
  padding: 80px 0;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.toc-item:hover {
  border-color: rgba(255, 167, 58, 0.25);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.toc-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.toc-text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}

.toc-positive .toc-num {
  background: rgba(131, 199, 125, 0.15);
  color: #83C77D;
}

.toc-positive .toc-text {
  color: #83C77D;
}

/* ============================================
   AUDIT SECTIONS (general)
   ============================================ */
.audit-section {
  padding: 80px 0;
}

.audit-content {
  max-width: 840px;
  margin: 0 auto;
}

.part-header {
  margin-bottom: 36px;
}

.part-label {
  display: inline-block;
  background: rgba(255, 167, 58, 0.12);
  color: var(--color-orange);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.part-label-green {
  background: rgba(131, 199, 125, 0.12);
  color: #83C77D;
}

.part-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
}

/* ============================================
   PROSE
   ============================================ */
.prose p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose strong {
  color: var(--text-primary);
}

.prose em {
  color: var(--text-secondary);
  font-style: italic;
}

.prose-emphasis {
  font-family: var(--font-heading);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--text-primary) !important;
  text-align: center;
  padding: 24px 0;
}

.audit-list {
  padding-left: 24px;
  margin-bottom: 20px;
}

.audit-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 8px;
  position: relative;
}

.audit-list li::marker {
  color: var(--color-orange);
}

/* ============================================
   COLD OPEN
   ============================================ */
.cold-open-numbers {
  text-align: center;
  padding: 40px 0;
}

.cold-num {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(10px);
  animation: coldFade 0.6s ease forwards;
}

.cold-num:nth-child(1) { animation-delay: 0.1s; }
.cold-num:nth-child(2) { animation-delay: 0.3s; }
.cold-num:nth-child(3) { animation-delay: 0.5s; }
.cold-num:nth-child(4) { animation-delay: 0.7s; }
.cold-num:nth-child(5) { animation-delay: 0.9s; }

@keyframes coldFade {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   THE PATTERN (6 steps)
   ============================================ */
.pattern-steps {
  margin: 32px 0;
}

.pattern-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pattern-step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 167, 58, 0.12);
  color: var(--color-orange);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
}

.pattern-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pattern-step p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   TIMELINE (Uppies Saga)
   ============================================ */
.timeline {
  position: relative;
  margin: 32px 0;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 24px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-critical::before {
  background: #ef4444;
  border-color: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.timeline-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.timeline-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.quote-inline {
  background: var(--bg-card);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 12px 0;
}

.quote-inline p {
  color: var(--text-primary);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   VEHICLE TIMELINE
   ============================================ */
.vehicle-timeline {
  margin: 32px 0;
}

.vehicle-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color var(--transition);
}

.vehicle-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.vehicle-broken {
  border-left: 3px solid #ef4444;
}

.vehicle-working {
  border-left: 3px solid #83C77D;
  background: rgba(131, 199, 125, 0.04);
}

.vehicle-date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.vehicle-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.vehicle-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.vehicle-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ef4444;
  white-space: nowrap;
}

.vehicle-working .vehicle-price {
  color: #83C77D;
}

.vehicle-quote {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
}

.vehicle-working .vehicle-quote {
  color: #83C77D;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* ============================================
   FOMO QUOTES (Service Structures)
   ============================================ */
.fomo-quotes {
  margin: 24px 0;
}

.fomo-quote {
  background: var(--bg-card);
  border-left: 3px solid var(--color-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-style: italic;
  font-size: 0.95rem;
}

/* ============================================
   PRICE TRACKER
   ============================================ */
.price-tracker {
  margin: 40px 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.viz-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.viz-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

.price-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  gap: 12px;
  align-items: center;
}

.price-bar-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price-bar-date {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.7rem;
}

.price-bar-track {
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  overflow: hidden;
}

.price-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-bright));
  border-radius: 4px;
  min-width: 28px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  white-space: nowrap;
}

.price-bar-extreme .price-bar-fill {
  background: linear-gradient(90deg, #83C77D, #4ade80);
}

.price-bar-ratio {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: right;
}

.price-bar-extreme .price-bar-ratio {
  color: #83C77D;
}

.price-tracker-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.price-tracker-note strong {
  color: #ef4444;
}

/* ============================================
   MISSIONS
   ============================================ */
.mission-examples {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.mission-week {
  display: inline-block;
  background: rgba(255, 167, 58, 0.12);
  color: var(--color-orange);
  padding: 2px 10px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.mission-card p {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.mission-cost {
  display: block;
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================
   VOICE WALL
   ============================================ */
.voice-wall {
  columns: 2;
  column-gap: 16px;
  margin: 32px 0;
}

.voice-card {
  break-inside: avoid;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  transition: border-color var(--transition);
}

.voice-card:hover {
  border-color: rgba(255, 167, 58, 0.15);
}

.voice-quote {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
}

.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.voice-author {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-orange);
}

.voice-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.voice-upvotes {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-gold);
  background: rgba(255, 200, 69, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ============================================
   REBRAND COMPARISON
   ============================================ */
.rebrand-comparison {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 32px 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.rebrand-col {
  flex: 1;
  padding: 28px 24px;
}

.rebrand-before {
  background: rgba(255, 167, 58, 0.04);
}

.rebrand-after {
  background: rgba(239, 68, 68, 0.04);
}

.rebrand-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.rebrand-before h4 { color: var(--color-orange); }
.rebrand-after h4 { color: #ef4444; }

.rebrand-col ul {
  padding-left: 0;
}

.rebrand-col li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
  list-style: none;
  position: relative;
  padding-left: 16px;
}

.rebrand-before li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.5;
}

.rebrand-before li {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

.rebrand-after li {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0;
}

.rebrand-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.02);
}

/* ============================================
   POSITIVE SECTION
   ============================================ */
.audit-positive {
  background: rgba(131, 199, 125, 0.02);
}

.positive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}

.positive-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: rgba(131, 199, 125, 0.04);
  border: 1px solid rgba(131, 199, 125, 0.1);
  border-radius: var(--radius);
}

.positive-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(131, 199, 125, 0.15);
  color: #83C77D;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
}

.positive-item div {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

.positive-item strong {
  color: #83C77D;
}

.positive-prose p {
  color: var(--text-secondary);
}

.positive-prose .prose-emphasis {
  color: #83C77D !important;
}

/* ============================================
   CONTRADICTION LIST
   ============================================ */
.contradiction-list {
  margin: 32px 0;
}

.contradiction-item {
  display: grid;
  grid-template-columns: 48px 110px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contradiction-item:last-child {
  border-bottom: none;
}

.contradiction-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #ef4444;
  text-align: center;
}

.contradiction-date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.contradiction-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contradiction-critical {
  background: rgba(239, 68, 68, 0.04);
  border-radius: var(--radius);
  padding: 16px;
  margin: 4px -16px;
}

.contradiction-critical p {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   NUMBERS TABLE
   ============================================ */
.numbers-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.numbers-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.numbers-table th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.numbers-table th:last-child {
  text-align: right;
}

.numbers-table td {
  padding: 14px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.numbers-table td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
}

.numbers-table tr:last-child td {
  border-bottom: none;
}

.table-highlight-red td {
  background: rgba(239, 68, 68, 0.04);
}

.table-highlight-red td:last-child {
  color: #ef4444;
}

.table-highlight-green td {
  background: rgba(131, 199, 125, 0.04);
}

.table-highlight-green td:last-child {
  color: #83C77D;
}

/* ============================================
   ASKS
   ============================================ */
.asks-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.ask-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.ask-card:hover {
  border-color: rgba(255, 167, 58, 0.15);
}

.ask-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-bright));
  color: var(--bg-primary);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
}

.ask-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ask-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CLOSING
   ============================================ */
.audit-closing {
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 167, 58, 0.05) 0%, transparent 60%),
    var(--bg-primary);
}

.closing-prose {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing-prose p {
  font-size: 1.05rem;
}

.closing-signature {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-orange) !important;
  font-size: 1.1rem !important;
  margin-top: 32px !important;
}

/* ============================================
   DOWNLOADS
   ============================================ */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.download-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.download-card:hover {
  border-color: rgba(255, 167, 58, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.download-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.download-info p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.download-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.downloads-full {
  text-align: center;
  margin-top: 24px;
}

/* ============================================
   RESPONSIVE — AUDIT PAGE
   ============================================ */
@media (max-width: 768px) {
  .audit-hero {
    padding: 120px 0 60px;
  }

  .stats-row {
    gap: 20px 24px;
  }

  .audit-stat-num {
    font-size: 1.4rem;
  }

  .toc-grid {
    grid-template-columns: 1fr;
  }

  .voice-wall {
    columns: 1;
  }

  .positive-grid {
    grid-template-columns: 1fr;
  }

  .contradiction-item {
    grid-template-columns: 40px 90px 1fr;
    gap: 10px;
  }

  .price-bar-row {
    grid-template-columns: 110px 1fr 60px;
    gap: 8px;
  }

  .price-bar-label {
    font-size: 0.7rem;
  }

  .rebrand-comparison {
    flex-direction: column;
  }

  .rebrand-arrow {
    padding: 8px;
    transform: rotate(90deg);
  }

  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .ask-card {
    flex-direction: column;
    gap: 12px;
  }

  .pattern-step {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .audit-section {
    padding: 60px 0;
  }

  .price-tracker {
    padding: 20px 16px;
  }

  .price-bar-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .price-bar-label {
    font-size: 0.8rem;
  }

  .price-bar-ratio {
    text-align: left;
  }

  .contradiction-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contradiction-num,
  .contradiction-date {
    display: inline;
  }

  .vehicle-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
