/* ============================================
   NACOL — Not A Court Of Law
   Dark Courtroom Aesthetic
   ============================================ */

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

/* === VARIABLES === */
:root {
  --bg-deep: #07080f;
  --bg-primary: #0a0b14;
  --bg-card: #111219;
  --bg-card-hover: #16171f;
  --bg-elevated: #1a1b25;
  --bg-input: #0e0f18;
  --border: #1e2035;
  --border-light: #282a40;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dim: #8b7635;
  --gold-glow: rgba(201,168,76,0.15);
  --crimson: #c0392b;
  --crimson-light: #e74c3c;
  --green: #27ae60;
  --green-light: #2ecc71;
  --blue: #2980b9;
  --purple: #8e44ad;
  --text-primary: #f0ece2;
  --text-secondary: #a8a4a0;
  --text-dim: #6b6865;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --gold-shadow: 0 0 20px rgba(201,168,76,0.1);
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

img { max-width: 100%; height: auto; }

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* === NAVIGATION === */
.navbar-nacol {
  background: rgba(10,11,20,0.95) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold) !important;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-brand:hover { color: var(--gold-light) !important; }

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active { color: var(--gold) !important; }

.navbar-toggler {
  border-color: var(--border) !important;
  padding: 4px 8px;
}

.navbar-toggler-icon {
  filter: invert(80%) sepia(30%) saturate(500%) hue-rotate(10deg);
}

/* === BUTTONS === */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8972e);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-deep);
  box-shadow: var(--gold-shadow);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--gold-shadow);
}

.btn-crimson {
  background: var(--crimson);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-crimson:hover {
  background: var(--crimson-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* === HERO === */
.hero-section {
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 35%, transparent 65%);
  pointer-events: none;
}

.hero-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.hero-section h1 .gold { color: var(--gold); }
.hero-section h1 .crimson { color: var(--crimson-light); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-dim);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* === CASE CARDS === */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim));
  opacity: 0;
  transition: opacity 0.3s;
}

.case-card:hover {
  border-color: var(--gold-dim);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.case-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-primary);
}

.case-card-title a { color: var(--text-primary); }
.case-card-title a:hover { color: var(--gold); }

.case-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.case-versus {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.case-versus .side-a { color: var(--blue); font-weight: 600; }
.case-versus .vs { color: var(--gold-dim); font-family: var(--font-heading); font-style: italic; }
.case-versus .side-b { color: var(--crimson-light); font-weight: 600; }

/* Vote progress bar on cards */
.vote-bar {
  height: 6px;
  background: var(--bg-deep);
  border-radius: 3px;
  overflow: hidden;
  margin: 0.8rem 0;
  display: flex;
}

.vote-bar-fill-a {
  background: var(--blue);
  transition: width 0.5s;
}

.vote-bar-fill-b {
  background: var(--crimson-light);
  transition: width 0.5s;
}

/* === STATUS BADGES === */
.badge-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-voting {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.badge-pending {
  background: rgba(41,128,185,0.15);
  color: var(--blue);
  border: 1px solid rgba(41,128,185,0.3);
}

.badge-closed {
  background: rgba(107,104,101,0.15);
  color: var(--text-dim);
  border: 1px solid rgba(107,104,101,0.3);
}

.badge-default {
  background: rgba(192,57,43,0.15);
  color: var(--crimson-light);
  border: 1px solid rgba(192,57,43,0.3);
}

.badge-featured {
  background: rgba(201,168,76,0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold);
}

/* === CASE PAGE — TWO COLUMN === */
.case-versus-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 2rem 0;
}

.case-side {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.case-side.side-a { border-top: 3px solid var(--blue); }
.case-side.side-b { border-top: 3px solid var(--crimson-light); }

.case-side-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.case-side.side-a .case-side-header { color: var(--blue); }
.case-side.side-b .case-side-header { color: var(--crimson-light); }

.case-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.vs-badge {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  background: var(--bg-elevated);
  border: 2px solid var(--gold-dim);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-content-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.case-content-media {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

/* === VOTING SECTION === */
.voting-section {
  background: var(--bg-card);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.voting-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.voting-section .subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.verdict-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.verdict-btn {
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.verdict-btn:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.verdict-btn.selected {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  box-shadow: var(--gold-shadow);
}

.verdict-btn-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.verdict-btn-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.verdict-btn-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* === VERDICT RESULT === */
.verdict-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verdict-card::before {
  content: '⚖️';
  position: absolute;
  top: -20px; right: -20px;
  font-size: 8rem;
  opacity: 0.04;
}

.verdict-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.verdict-winner {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}

.verdict-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.verdict-stat {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.verdict-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.verdict-stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* === FORMS === */
.nacol-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control, .form-select {
  background: var(--bg-input) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-primary) !important;
  padding: 12px 16px !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  transition: border-color 0.2s !important;
  width: 100%;
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-glow) !important;
  outline: none !important;
}

.form-control::placeholder { color: var(--text-dim); }

textarea.form-control { min-height: 140px; resize: vertical; }

.form-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* === COMMENTS === */
.comment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-author {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.9rem;
}

.comment-time {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.comment-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.comment-badge {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

.comment-badge.jury {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
}

/* === USER DASHBOARD / PROFILE === */
.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.profile-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.profile-stats {
  display: flex;
  gap: 2rem;
}

.profile-stat {
  text-align: center;
}

.profile-stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.profile-stat-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CARDS / CONTAINERS === */
.page-section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.page-section.alt-bg {
  background: var(--bg-primary);
}

.container-nacol {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.card-nacol {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* === HOW IT WORKS STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  counter-increment: step;
  position: relative;
}

.step-card::before {
  content: counter(step);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-dim);
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* === SHARE BUTTONS === */
.share-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}

.share-btn:hover { border-color: var(--gold); color: var(--gold); }
.share-btn.twitter:hover { border-color: #1da1f2; color: #1da1f2; }
.share-btn.facebook:hover { border-color: #4267b2; color: #4267b2; }
.share-btn.whatsapp:hover { border-color: #25d366; color: #25d366; }

/* === FOOTER === */
.footer-nacol {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  position: relative;
  z-index: 1;
}

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

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

/* === FLASH MESSAGES === */
.flash-message {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  border: 1px solid;
}

.flash-success {
  background: rgba(39,174,96,0.1);
  color: var(--green-light);
  border-color: rgba(39,174,96,0.3);
}

.flash-error {
  background: rgba(192,57,43,0.1);
  color: var(--crimson-light);
  border-color: rgba(192,57,43,0.3);
}

.flash-info {
  background: rgba(41,128,185,0.1);
  color: var(--blue);
  border-color: rgba(41,128,185,0.3);
}

/* === EMPTY STATES === */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-dim);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-state h3 {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === UTILITY === */
.text-gold { color: var(--gold) !important; }
.text-crimson { color: var(--crimson-light) !important; }
.text-blue { color: var(--blue) !important; }
.text-dim { color: var(--text-dim) !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.w-100 { width: 100%; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-section { padding: 4rem 0 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

  .case-versus-grid {
    grid-template-columns: 1fr;
  }

  .case-vs-divider {
    padding: 0.5rem 0;
  }

  .verdict-options {
    grid-template-columns: 1fr;
  }

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

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-stats { justify-content: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .verdict-breakdown { grid-template-columns: repeat(2, 1fr); }
}
