/* ============================================================
   AutoSpyders – Premium Dark SaaS UI
   Fonts: Syne (display) + DM Sans (body)
   Theme: Deep space dark + electric cyan accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #080c14;
  --bg2:          #0d1220;
  --bg3:          #111827;
  --surface:      #141d2e;
  --surface2:     #1a2540;
  --border:       rgba(255,255,255,0.07);
  --border2:      rgba(255,255,255,0.12);

  --accent:       #00d4ff;
  --accent2:      #0099cc;
  --accent-glow:  rgba(0,212,255,0.18);
  --accent-glow2: rgba(0,212,255,0.08);

  --green:        #22c55e;
  --yellow:       #f59e0b;
  --red:          #ef4444;
  --orange:       #f97316;

  --text:         #e8edf5;
  --text2:        #9aa5b8;
  --text3:        #5c6b82;

  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.7);
  --shadow-accent:0 0 32px rgba(0,212,255,0.15);

  --transition:   all 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent2); }

/* ── Selection ────────────────────────────────────────────── */
::selection { background: var(--accent); color: var(--bg); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,12,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #0066ff);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0,212,255,0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--accent); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover { background: var(--surface); color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.nav-cta:hover { background: #fff; transform: translateY(-1px); }

/* ── HERO SECTION ─────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle 600px at 20% 50%, rgba(0,102,255,0.05) 0%, transparent 60%),
    radial-gradient(circle 400px at 80% 30%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .dim { color: var(--text2); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── TOOL CARD ────────────────────────────────────────────── */
.tool-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #0066ff, var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tool-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 8px;
}

/* Vehicle selector row */
.vehicle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  appearance: none;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.select-wrap select:focus,
.select-wrap select:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow2);
}

.select-wrap select option { background: var(--bg3); }
.select-wrap select:disabled { opacity: 0.5; cursor: not-allowed; }

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  font-size: 0.75rem;
  pointer-events: none;
}

/* Input area */
.input-group {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.problem-input {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
}

.problem-input::placeholder { color: var(--text3); }

.problem-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.problem-input.shake {
  animation: shake 0.4s ease;
  border-color: var(--red);
}

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

.diagnose-btn {
  background: linear-gradient(135deg, var(--accent), #0066ff);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.diagnose-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,212,255,0.35);
}

.diagnose-btn:active { transform: translateY(0); }
.diagnose-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

/* Example queries */
.examples-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.examples-label {
  font-size: 0.78rem;
  color: var(--text3);
  font-weight: 500;
}

.example-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.example-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow2);
}

/* ── SPINNER ──────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(8,12,20,0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

/* ── RESULTS ──────────────────────────────────────────────── */
#results-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: none;
}

.results-header {
  padding: 24px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.results-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.results-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.vehicle-tag {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.results-query {
  font-size: 0.88rem;
  color: var(--text3);
  margin-bottom: 14px;
}

.results-query em { color: var(--text2); font-style: normal; }

.confidence-bar-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.confidence-label { font-size: 0.78rem; color: var(--text3); white-space: nowrap; }

.confidence-bar {
  flex: 1;
  height: 6px;
  background: var(--surface2);
  border-radius: 100px;
  overflow: hidden;
}

.confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #0066ff);
  border-radius: 100px;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}

.confidence-pct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  min-width: 42px;
}

/* Recommendation banner */
.rec-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid;
}

.rec-urgent {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #fca5a5;
}

.rec-soon {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
  color: #fcd34d;
}

.rec-ok {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #86efac;
}

.rec-icon { font-size: 1.2rem; }

/* Result block */
.result-block {
  margin-bottom: 32px;
  animation: fadeUp 0.4s ease both;
  animation-delay: var(--delay, 0s);
}

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

.result-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.result-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-glow2);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.result-conf {
  font-size: 0.8rem;
  color: var(--text3);
}

/* Issues grid */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

/* Issue card */
.issue-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
  animation: fadeUp 0.35s ease both;
  animation-delay: var(--card-delay, 0s);
  position: relative;
  overflow: hidden;
}

.issue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border2);
  transition: var(--transition);
}

.issue-card:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.issue-card:hover::before { background: linear-gradient(90deg, var(--accent), #0066ff); }

.issue-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.issue-rank {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text3);
  background: var(--bg3);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Severity badges */
.severity-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.sev-high {
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.3);
}

.sev-medium {
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.3);
}

.sev-low {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.3);
}

.issue-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Probability bar */
.prob-row {
  margin-bottom: 14px;
}

.prob-bar-bg {
  height: 4px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 5px;
}

.prob-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 100px;
  transition: width 0.8s ease;
}

.prob-pct {
  font-size: 0.73rem;
  color: var(--text3);
}

/* Issue meta */
.issue-meta { display: flex; flex-direction: column; gap: 10px; }

.meta-item { display: flex; flex-direction: column; gap: 2px; }

.meta-label {
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 500;
}

.meta-value {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.4;
}

.cost-value {
  color: var(--green);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Related */
.related-section {
  margin: 8px 0 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.related-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 12px;
}

.related-pills { display: flex; flex-wrap: wrap; gap: 8px; }

.related-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.related-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow2);
}

/* Feedback */
.feedback-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text3);
  padding: 16px 0 8px;
  flex-wrap: wrap;
}

.fb-btn {
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.fb-btn:hover { background: var(--surface2); border-color: var(--accent); color: var(--text); }

.fb-thanks { color: var(--accent); font-weight: 500; }

/* Disclaimer */
.disclaimer {
  font-size: 0.78rem;
  color: var(--text3);
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* No result */
.no-result {
  text-align: center;
  padding: 48px 24px;
  color: var(--text3);
}

.no-result-icon { font-size: 3rem; margin-bottom: 16px; }
.no-result h3 { font-size: 1.2rem; color: var(--text2); margin-bottom: 8px; }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text3);
  margin-top: 4px;
}

/* ── CONTENT SECTION ──────────────────────────────────────── */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.section-head {
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-head p {
  color: var(--text2);
  font-size: 0.95rem;
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.how-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.how-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.how-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.how-card p {
  font-size: 0.82rem;
  color: var(--text3);
  line-height: 1.5;
}

/* Content body text */
.content-body {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
}

.content-body h3 {
  color: var(--text);
  font-size: 1.05rem;
  margin: 24px 0 10px;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-bottom: 48px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--border2); }

.faq-q {
  width: 100%;
  background: var(--surface);
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.faq-q:hover { background: var(--surface2); }

.faq-arrow {
  color: var(--text3);
  font-size: 0.8rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg2);
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 300px; padding: 16px 20px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text3);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text2);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text3);
}

.footer-copy a { color: var(--accent); }

.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text3);
  max-width: 460px;
  text-align: right;
  line-height: 1.5;
}

/* ── MAIN WRAP ────────────────────────────────────────────── */
.main-content { padding-bottom: 20px; }

/* ── SECTION DIVIDER ──────────────────────────────────────── */
.divider {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 24px;
  border: none;
  border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none; }

  .hero { padding: 48px 16px 40px; }

  .tool-card { padding: 20px 16px; }

  .vehicle-row { grid-template-columns: 1fr; }

  .input-group { flex-direction: column; }

  .diagnose-btn { justify-content: center; }

  .stats-row { grid-template-columns: 1fr; gap: 10px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .footer-disclaimer { text-align: left; }

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

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }

  .hero h1 { font-size: 1.8rem; }
}
