/* ===== VARIABLES ===== */
:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --black-border: #2a2a2a;
  --gold: #C9A84C;
  --gold-light: #d4b85e;
  --gold-dark: #b8972f;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.7);
  --white-muted: rgba(255, 255, 255, 0.4);
  --font: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 30px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

/* ===== DEMO BANNER ===== */
.demo-banner {
  position: relative;
  z-index: 999;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}
.section-title span { color: var(--gold); }
.section-subtitle {
  font-size: 17px;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--black-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.logo-text {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.logo-text span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--gold); }
nav { display: flex; align-items: center; gap: 32px; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 24px; font-size: 14px; }
.nav-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone svg { width: 16px; height: 16px; fill: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--black-light);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 8px;
  transition: right 0.4s ease;
  border-left: 1px solid var(--black-border);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--white-dim);
  border-bottom: 1px solid var(--black-border);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; text-align: center; justify-content: center; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-close svg { width: 24px; height: 24px; fill: var(--white); }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.6) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 30px;
  margin-bottom: 32px;
}
.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: 19px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat-value {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--white-muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.hero-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 32px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-stat {
  text-align: center;
  padding: 0 24px;
}
.trust-stat-value {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.trust-stat-label {
  font-size: 13px;
  color: var(--white-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== PRACTICE AREAS ===== */
.practice-areas {
  padding: 100px 0;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.practice-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.practice-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.practice-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}
.practice-card h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.practice-card p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-img-wrap {
  position: relative;
}
.why-us-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-us-img-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.why-us-content { }
.why-us-list { margin-top: 32px; }
.why-us-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--black-border);
}
.why-us-item:last-child { border-bottom: none; }
.why-us-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us-item-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.why-us-item h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-us-item p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== ATTORNEYS ===== */
.attorneys {
  padding: 100px 0;
}
.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.attorney-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.attorney-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
  border-color: rgba(201, 168, 76, 0.3);
}
.attorney-img-wrap {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.attorney-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.attorney-card:hover .attorney-img-wrap img {
  transform: scale(1.05);
}
.attorney-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--black-card), transparent);
}
.attorney-info {
  padding: 24px 28px 28px;
}
.attorney-info h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.attorney-title {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.attorney-info p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 48px;
  font-family: var(--font);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.5;
}
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--black-border);
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
}
.author-name {
  font-size: 15px;
  font-weight: 600;
}
.author-case {
  font-size: 13px;
  color: var(--gold);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--black-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question h3 {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  padding-right: 20px;
}
.faq-question:hover h3 { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--gold); transition: transform 0.3s ease; }
.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item.active .faq-icon svg {
  fill: var(--black);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--white-dim);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== SERVICE AREAS ===== */
.areas {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.area-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}
.area-item svg { width: 20px; height: 20px; fill: var(--gold); min-width: 20px; }
.area-item span { font-size: 15px; font-weight: 500; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.93), rgba(10,10,10,0.8));
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner > p {
  font-size: 17px;
  color: var(--white-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-contact-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-contact-item svg { width: 20px; height: 20px; fill: var(--gold); }
.cta-contact-item a {
  font-size: 15px;
  color: var(--white-dim);
}
.cta-contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--black-border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--white-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer h4 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--white-muted);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); min-width: 16px; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: var(--white-muted);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--white-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--white-muted);
}
.footer-bottom-links a:hover { color: var(--gold); }
.footer-disclaimer {
  padding: 16px 0 24px;
  border-top: 1px solid var(--black-border);
}
.footer-disclaimer p {
  font-size: 12px;
  color: var(--white-muted);
  line-height: 1.6;
  opacity: 0.6;
}

/* ===== CASE RESULTS (Homepage) ===== */
.case-results {
  padding: 100px 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  display: block;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.result-card:hover::before { transform: scaleX(1); }
.result-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.result-amount {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.result-type {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.result-location {
  font-size: 14px;
  color: var(--white-muted);
}
.result-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.result-arrow svg { width: 20px; height: 20px; fill: var(--gold); }
.result-card:hover .result-arrow {
  background: var(--gold);
}
.result-card:hover .result-arrow svg { fill: var(--black); }

/* ===== CASE DETAIL PAGE ===== */
.case-detail-page .header {
  position: relative;
  background: var(--black-light);
  border-bottom: 1px solid var(--black-border);
  padding: 16px 0;
}
.case-hero {
  background: var(--black-light);
  border-bottom: 1px solid var(--black-border);
  padding: 48px 0 40px;
}
.case-hero-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.case-breadcrumb {
  font-size: 14px;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.case-breadcrumb a { color: var(--gold); }
.case-breadcrumb a:hover { color: var(--gold-light); }
.case-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.case-hero h1 {
  font-family: var(--font);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}
.case-hero h1 span { color: var(--gold); }
.case-hero-sub {
  font-size: 17px;
  color: var(--white-dim);
}
.case-detail-layout {
  display: grid;
  grid-template-columns: 1fr 400px 320px;
  gap: 40px;
  padding: 60px 0 100px;
  align-items: start;
}
/* Left: Story */
.case-story h2 {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.case-story h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--gold);
}
.case-story p {
  font-size: 16px;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.case-story-cta {
  margin-top: 36px;
  padding: 28px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
}
.case-story-cta p {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 16px;
}
/* Center: Verdict Card */
.case-verdict-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.case-verdict-top {
  background: linear-gradient(135deg, #1a1a1a, #222);
  padding: 32px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.case-verdict-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.case-verdict-logo .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 18px;
}
.case-verdict-logo .logo-text {
  font-size: 20px;
}
.case-verdict-type {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.case-verdict-location {
  font-size: 14px;
  color: var(--white-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.case-verdict-location svg { width: 16px; height: 16px; fill: var(--gold); }
.case-verdict-amount {
  font-family: var(--font);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.case-verdict-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-muted);
}
.case-verdict-bottom {
  padding: 24px 32px;
  text-align: center;
}
.case-verdict-bottom p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
/* Right: Sidebar */
.case-sidebar {
  position: sticky;
  top: 100px;
}
.case-sidebar-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--black-border);
}
.case-sidebar-section:first-child { padding-top: 0; }
.case-sidebar-section:last-child { border-bottom: none; }
.case-sidebar-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.case-sidebar-value {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.case-sidebar-value.gold { color: var(--gold); }
.case-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  padding: 8px 12px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  transition: var(--transition);
}
.case-sidebar-link:hover {
  background: rgba(201,168,76,0.25);
}
.case-sidebar-link svg { width: 16px; height: 16px; fill: var(--gold); }

@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .case-detail-layout {
    grid-template-columns: 1fr 1fr;
  }
  .case-sidebar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 32px;
    border-top: 1px solid var(--black-border);
    padding-top: 32px;
  }
  .case-sidebar-section { border-bottom: none; padding: 0; }
}

@media (max-width: 768px) {
  .results-grid { grid-template-columns: 1fr; }
  .case-detail-layout {
    grid-template-columns: 1fr;
  }
  .case-verdict-card { position: static; }
  .case-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .case-verdict-amount { font-size: 42px; }
}

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

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .attorneys-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta, .nav-phone { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-stats { gap: 28px; }
  .hero-stat-value { font-size: 28px; }

  .trust-bar-inner { gap: 28px; }
  .trust-stat { padding: 0 12px; }
  .trust-stat-value { font-size: 22px; }
  .trust-stat-label { font-size: 11px; }

  .practice-grid { grid-template-columns: 1fr; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-img { height: 300px; }
  .why-us-img-border { display: none; }
  .attorneys-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}
