/* ===== AUDIT PAGE ===== */
body.audit-page {
  background: var(--bg);
  min-height: 100vh;
}

.audit-main {
  padding: 100px 1rem 4rem;
}

.audit-container {
  max-width: 620px;
  margin: 0 auto;
}

.audit-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.audit-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 16px rgba(0,200,255,0.3);
}

.audit-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.audit-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto;
}

/* ===== AUDIT CARD ===== */
.audit-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3), 0 0 1px rgba(0,200,255,0.1);
  overflow: hidden;
}

.audit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 0.5px solid var(--border);
}

.audit-step-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.audit-progress {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.audit-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  border-radius: 2px;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px rgba(0,200,255,0.3);
}

/* ===== STEPS ===== */
.audit-step {
  display: none;
  padding: 2rem 1.75rem;
  animation: stepIn 0.3s ease;
}

.audit-step.active { display: block; }

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

.audit-q {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.audit-hint {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ===== OPTIONS ===== */
.audit-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  transition: all 0.15s;
}

.audit-opt:hover {
  background: var(--accent-subtle);
  border-color: var(--border-accent);
}

.audit-opt.selected {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--text);
}

.opt-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  transition: all 0.15s;
}

.audit-opt.selected .opt-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(0,200,255,0.4);
}

/* ===== NAV BUTTONS ===== */
.audit-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
}

.btn-audit-back {
  background: transparent;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.15s;
}
.btn-audit-back:hover { color: var(--text); }

.btn-audit-next {
  background: var(--accent);
  border: none;
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  box-shadow: 0 0 12px rgba(0,200,255,0.2);
}
.btn-audit-next:hover { background: #33d4ff; box-shadow: 0 0 20px rgba(0,200,255,0.35); }
.btn-audit-next:disabled { opacity: 0.35; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== INPUTS ===== */
.audit-input {
  display: block;
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.15s;
}
.audit-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 8px rgba(0,200,255,0.15); }
.audit-input::placeholder { color: var(--text-light); }

.audit-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: -6px;
  margin-bottom: 8px;
}

/* ===== LOADING ===== */
.audit-loading {
  text-align: center;
  padding: 3.5rem 1rem;
}

.audit-spinner {
  width: 40px; height: 40px;
  border: 2.5px solid var(--border-mid);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 12px rgba(0,200,255,0.15);
}

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

.audit-loading-msg {
  font-size: 14px;
  color: var(--text-muted);
  animation: breathe 1.8s ease-in-out infinite;
}

@keyframes breathe { 0%,100%{opacity:0.5} 50%{opacity:1} }

/* ===== RESULTS ===== */
.results-wrap { padding: 1.75rem; }

.results-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 2rem;
}

.result-score-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  text-align: center;
  border: 0.5px solid var(--border);
}

.rsc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.rsc-value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 16px rgba(0,200,255,0.3);
}

.rsc-sub {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 4px;
}

.results-section-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 0.5px solid var(--border);
}

.results-summary {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.75rem;
  background: var(--bg-elevated);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 0.5px solid var(--border);
}

.results-recos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.reco-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.1rem;
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}

.reco-icon {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border: 0.5px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.reco-content { flex: 1; }
.reco-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 2px; }
.reco-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.reco-price {
  font-size: 12px; font-weight: 500;
  color: var(--accent);
  white-space: nowrap; padding-left: 8px; padding-top: 2px;
}

.results-cta {
  background: linear-gradient(135deg, rgba(0,200,255,0.08), rgba(124,92,252,0.08));
  border: 0.5px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}

.results-cta-head {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.results-cta-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.results-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1rem;
}

.results-cta-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
