/* ============================================================
   LAW WARRIORS GROUP — Conversion-First PI Law Firm
   Billboard energy. Dark, bold, high-contrast.
   Mobile-first. Spanish-speaking, working-class LA audience.
   ============================================================ */

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --bg-primary: #0A0A1A;
  --bg-secondary: #111128;
  --bg-card: #1A1A2E;
  --red: #C0392B;
  --red-light: #E74C3C;
  --gold: #F5A623;
  --gold-light: #F7B731;
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --gray-light: #CCCCCC;
  --gray-mid: #888888;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.75);

  --font-headline: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --header-height-mobile: 64px;
  --header-height-desktop: 72px;
  --container-max: 1200px;
  --radius: 6px;
  --radius-lg: 10px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-red { color: var(--red-light); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-secondary { color: var(--text-secondary); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border: none;
}

.badge {
  display: inline-block;
  padding: 0.35em 1em;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
}

.badge--gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.badge--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

/* ============================================================
   Phone — Massive
   ============================================================ */
.phone-massive {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 48px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: color var(--transition);
}

.phone-massive:hover {
  color: var(--gold-light);
}

@media (min-width: 768px) {
  .phone-massive {
    font-size: 64px;
  }
}

@media (min-width: 1024px) {
  .phone-massive {
    font-size: 80px;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.97);
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--red:hover {
  background: var(--red-light);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-primary);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--bg-primary);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

.btn--lg {
  min-height: 56px;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
}

@media (min-width: 768px) {
  .btn--full-mobile-only {
    width: auto;
  }
}

/* ============================================================
   Forms
   ============================================================ */
.form-field {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-field::placeholder {
  color: var(--gray-mid);
}

.form-field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

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

select.form-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

select.form-field option {
  background: var(--bg-primary);
  color: var(--white);
}

textarea.form-field {
  resize: vertical;
  min-height: 100px;
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================================
   STICKY HEADER (.site-header)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height-mobile);
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: rgba(10, 10, 26, 0.97);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-logo {
  flex-shrink: 0;
}

.header-phone {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--gold-light);
}

.header-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language toggle */
.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  gap: 4px;
  align-items: center;
}

.lang-toggle a {
  color: var(--text-secondary);
  padding: 2px 6px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}

.lang-toggle a.active,
.lang-toggle a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.lang-toggle .separator {
  color: var(--gray-mid);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  z-index: 999;
  padding: 2rem 1rem;
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  transition: color var(--transition);
  padding: 0.5rem 0;
}

.desktop-nav a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .header-phone {
    font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .site-header {
    height: var(--header-height-desktop);
  }

  .header-logo img {
    height: 42px;
  }

  .header-phone {
    font-size: 1.5rem;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .desktop-nav {
    display: block;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Offset body for fixed header */
body {
  padding-top: var(--header-height-mobile);
}

@media (min-width: 1024px) {
  body {
    padding-top: var(--header-height-desktop);
  }
}

/* ============================================================
   HERO (.hero)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 26, 0.85) 0%,
    rgba(10, 10, 26, 0.7) 40%,
    rgba(10, 10, 26, 0.85) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--red-light);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.hero-espanol {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-phone {
  margin-bottom: 2rem;
}

.hero-phone a {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 48px;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: color var(--transition), transform var(--transition);
}

.hero-phone a:hover {
  color: var(--gold-light);
  transform: scale(1.03);
}

.hero-badge {
  margin-bottom: 2rem;
}

/* Hero inline form */
.hero-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-form .form-group {
  margin-bottom: 0.75rem;
}

.hero-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 58px;
  }

  .hero-phone a {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 85vh;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-phone a {
    font-size: 80px;
  }

  .hero-form {
    margin: 0;
    max-width: none;
    padding: 2rem;
  }
}

/* ============================================================
   TRUST BAR (.trust-bar)
   ============================================================ */
.trust-bar {
  background: var(--bg-secondary);
  padding: 2rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.trust-bar-icon {
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
}

.trust-bar-icon img,
.trust-bar-icon svg {
  width: 32px;
  height: 32px;
}

.trust-bar-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

@media (min-width: 768px) {
  .trust-bar {
    padding: 2.5rem 0;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .trust-bar-item {
    flex-direction: row;
    gap: 0.75rem;
  }

  .trust-bar-label {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* ============================================================
   Section Base Styles
   ============================================================ */
.section {
  padding: 4rem 0;
}

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

.section--darker {
  background: var(--bg-secondary);
}

.section--card-bg {
  background: var(--bg-card);
}

.section--light {
  background: var(--off-white);
  color: var(--bg-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.section--light .section-header h2 {
  color: var(--bg-primary);
}

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

.section--light .section-header p {
  color: var(--gray-mid);
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .section-header h2 {
    font-size: 3rem;
  }
}

/* ============================================================
   CASE RESULTS (.case-results)
   ============================================================ */
.case-results {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.result-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition);
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.result-amount {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-type {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.results-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-style: italic;
}

@media (min-width: 768px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .case-results {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .result-amount {
    font-size: 56px;
  }

  .case-results {
    padding: 6rem 0;
  }
}

/* ============================================================
   PRACTICE AREAS (.practice-grid-v2)
   ============================================================ */
.practice-grid-v2 {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.practice-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.practice-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid transparent;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.practice-card:hover {
  border-left-color: var(--red);
  transform: translateY(-2px);
  background: rgba(26, 26, 46, 0.8);
}

.practice-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.practice-card-icon img,
.practice-card-icon svg {
  width: 40px;
  height: 40px;
}

.practice-card-content h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--white);
}

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

@media (min-width: 768px) {
  .practice-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .practice-grid-v2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .practice-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .practice-grid-v2 {
    padding: 6rem 0;
  }
}

/* ============================================================
   ATTORNEY SECTION (.attorney-section)
   ============================================================ */
.attorney-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.attorney-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.attorney-photo {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.attorney-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.attorney-photo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.attorney-photo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 0;
  z-index: 1;
}

.attorney-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.attorney-content .attorney-title {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.attorney-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.attorney-credentials {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.attorney-credentials li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.attorney-credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

@media (min-width: 768px) {
  .attorney-section {
    padding: 5rem 0;
  }

  .attorney-content h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .attorney-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .attorney-photo {
    max-width: none;
  }

  .attorney-section {
    padding: 6rem 0;
  }

  .attorney-content h2 {
    font-size: 3rem;
  }
}

/* ============================================================
   TESTIMONIALS (.testimonials-v2)
   ============================================================ */
.testimonials-v2 {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-stars::before {
  content: '\2605\2605\2605\2605\2605';
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}

.testimonial-reviewer {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-v2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-v2 {
    padding: 6rem 0;
  }
}

/* ============================================================
   FINAL CTA (.final-cta)
   ============================================================ */
.final-cta {
  position: relative;
  background: var(--bg-primary);
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--red-light), var(--gold));
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(192, 57, 43, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.final-cta .urgency-text {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.final-cta .phone-massive {
  font-size: 64px;
  display: block;
  margin-bottom: 2rem;
}

.final-cta-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-form .form-group {
  margin-bottom: 0.75rem;
}

.final-cta-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 5rem 0;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

  .final-cta .phone-massive {
    font-size: 80px;
  }
}

@media (min-width: 1024px) {
  .final-cta {
    padding: 6rem 0;
  }

  .final-cta h2 {
    font-size: 3rem;
  }

  .final-cta .phone-massive {
    font-size: 96px;
  }

  .final-cta-form {
    max-width: 600px;
    padding: 2.5rem;
  }

  .final-cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .final-cta-form .form-row .form-group {
    margin-bottom: 0;
  }
}

/* ============================================================
   FOOTER (.site-footer)
   ============================================================ */
.site-footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand {
  text-align: center;
}

.footer-brand img {
  height: 40px;
  margin: 0 auto 1rem;
}

.footer-brand .footer-phone {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand .footer-address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links h4 {
  font-family: var(--font-headline);
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.footer-badge {
  text-align: center;
  margin-top: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.footer-bottom a {
  color: var(--gray-mid);
}

.footer-bottom a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
  }

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

  .footer-brand img {
    margin: 0 0 1rem;
  }
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 4rem 0 2rem;
  }
}

/* ============================================================
   Process / Steps Section (.process-section)
   ============================================================ */
.process-section {
  background: var(--bg-card);
  padding: 4rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step-counter;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  counter-increment: step-counter;
  position: relative;
}

.process-step::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--bg-primary);
  background: var(--gold);
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

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

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-section {
    padding: 6rem 0;
  }
}

/* ============================================================
   FAQ Section (.faq-section)
   ============================================================ */
.faq-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

/* ============================================================
   Floating CTA — Mobile sticky bottom bar
   ============================================================ */
.floating-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--bg-primary);
  border-top: 2px solid var(--red);
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.floating-cta a {
  flex: 1;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
}

.floating-cta .cta-call {
  background: var(--gold);
  color: var(--bg-primary);
}

.floating-cta .cta-form {
  background: var(--red);
  color: var(--white);
}

@media (min-width: 1024px) {
  .floating-cta {
    display: none;
  }
}

/* Add padding at bottom of page for floating CTA on mobile */
body::after {
  content: '';
  display: block;
  height: 64px;
}

@media (min-width: 1024px) {
  body::after {
    display: none;
  }
}

/* ============================================================
   Stats / Numbers Bar
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item .stat-number {
    font-size: 3rem;
  }
}

/* ============================================================
   Inner Pages — Page Header
   ============================================================ */
.page-header {
  background: var(--bg-secondary);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-mid);
}

.page-header .breadcrumb a {
  color: var(--gray-mid);
}

.page-header .breadcrumb a:hover {
  color: var(--gold);
}

@media (min-width: 768px) {
  .page-header {
    padding: 4rem 0;
  }

  .page-header h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .page-header h1 {
    font-size: 3.5rem;
  }
}

/* ============================================================
   Content Area (inner pages)
   ============================================================ */
.content-area {
  background: var(--bg-primary);
  padding: 3rem 0;
}

.content-area .content-body {
  max-width: 800px;
}

.content-body h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.content-body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.content-body p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.content-body ul,
.content-body ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.content-body strong {
  color: var(--white);
  font-weight: 700;
}

.content-body a {
  color: var(--gold);
  text-decoration: underline;
}

.content-body a:hover {
  color: var(--gold-light);
}

/* ============================================================
   Sidebar CTA (inner pages)
   ============================================================ */
.sidebar-cta {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: calc(var(--header-height-mobile) + 1.5rem);
}

.sidebar-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.sidebar-cta p {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta .form-group {
  margin-bottom: 0.75rem;
}

.sidebar-cta .btn {
  width: 100%;
}

@media (min-width: 1024px) {
  .content-area .container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
  }

  .sidebar-cta {
    top: calc(var(--header-height-desktop) + 1.5rem);
  }
}

/* ============================================================
   Map Section
   ============================================================ */
.map-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

@media (min-width: 768px) {
  .map-container iframe {
    height: 400px;
  }
}

/* ============================================================
   Accessibility — Focus Styles
   ============================================================ */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================================
   Print Styles
   ============================================================ */
@media print {
  .site-header,
  .floating-cta,
  .hero-form,
  .final-cta-form,
  .sidebar-cta {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    background: none !important;
    padding: 2rem 0;
  }

  .hero::before {
    display: none;
  }

  .hero h1,
  h2, h3, h4, h5, h6 {
    color: #000;
  }
}

/* ============================================================
   Selection
   ============================================================ */
::selection {
  background: var(--red);
  color: var(--white);
}

::-moz-selection {
  background: var(--red);
  color: var(--white);
}

/* ============================================================
   Scrollbar (Webkit)
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-mid);
}

/* ============================================================
   HTML ↔ CSS Class Alignment
   Fixes mismatches between HTML markup and CSS definitions
   ============================================================ */

/* Header: HTML uses .logo, .header-inner, .mobile-toggle */
.logo { flex-shrink: 0; }
.logo img { height: 36px; width: auto; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
}
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
  .logo img { height: 42px; }
}

/* Hero: HTML uses .hero-inner, .hero-overlay, .hero-badge, .hero-sub, .tap-label, .hero-form-wrap, .hero-form, .form-badge, .form-heading */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,26,0.85) 0%, rgba(10,10,26,0.65) 40%, rgba(10,10,26,0.9) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.4em 1em;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.tap-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.hero-form-wrap {
  margin-top: 2rem;
}
.hero-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}
.form-heading {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}
.form-badge {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

/* Forms: HTML uses input/select directly, CSS expects .form-field */
.hero-form input,
.hero-form select,
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white);
  background: var(--bg-primary);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.hero-form input::placeholder,
.cta-form input::placeholder {
  color: var(--gray-mid);
}
.hero-form input:focus,
.hero-form select:focus,
.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}
.hero-form select,
.cta-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.hero-form select option,
.cta-form select option {
  background: var(--bg-primary);
  color: var(--white);
}

@media (min-width: 1024px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .hero-content { text-align: left; }
  .hero-form-wrap { margin-top: 0; }
  .hero-form { padding: 2rem; }
}

/* Trust bar: HTML uses .trust-bar-inner, .trust-item, .trust-icon */
.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}
.trust-item span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .trust-item {
    flex-direction: row;
    gap: 0.75rem;
  }
  .trust-item span {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* Case results: HTML uses .result-desc, CSS has .result-type */
.result-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  display: block;
}
.result-amount { display: block; }

/* Section headings: HTML uses .section-heading */
.section-heading {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) { .section-heading { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3rem; } }

/* Practice areas: HTML uses .practice-icon, h3/p directly (no .practice-card-content wrapper) */
.practice-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.practice-icon svg {
  width: 40px;
  height: 40px;
}
.practice-card h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--white);
}
.practice-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Attorney: HTML uses .attorney-inner, .attorney-image, .attorney-content, .attorney-credentials as <p> */
.attorney-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.attorney-image {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}
.attorney-image img {
  border-radius: var(--radius-lg);
  width: 100%;
}
.attorney-image::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.attorney-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius) 0 0 0;
  z-index: 1;
}
.attorney-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.attorney-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
p.attorney-credentials {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 1024px) {
  .attorney-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .attorney-image { max-width: none; }
  .attorney-content h2 { font-size: 3rem; }
}

/* Testimonials: HTML uses .testimonials, .testimonial-grid, .stars, blockquote, cite */
.testimonials {
  background: var(--bg-secondary);
  padding: 4rem 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}
.testimonial-card cite {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  font-style: normal;
}

@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials { padding: 5rem 0; }
}
@media (min-width: 1024px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials { padding: 6rem 0; }
}

/* Final CTA: HTML uses .final-cta-inner, .cta-sub, .cta-form, .form-row, .cta-badges */
.final-cta-inner {
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.cta-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.cta-form .form-group { margin-bottom: 0.75rem; }
.cta-badges {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .cta-form { padding: 2.5rem; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }
  .form-row .form-group { margin-bottom: 0; }
}

/* Footer: HTML uses .footer-inner, .footer-logo, .footer-phone, address, .footer-links as nav, .footer-nofee, .footer-disclaimer */
.footer-inner {
  text-align: center;
}
.footer-logo {
  height: 40px;
  margin: 0 auto 1rem;
}
.footer-phone {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.site-footer address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--gold); }
.footer-nofee {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-mid);
  margin-top: 0.5rem;
}

/* ============================================================
   Hero Background Image
   ============================================================ */
.hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   Tips Section (.tips-section)
   ============================================================ */
.tips-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.tip-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid var(--gold);
}

.tip-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.tip-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.tip-item strong {
  color: var(--white);
}

@media (min-width: 768px) {
  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .tips-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .tips-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tip-item {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--gold);
  }

  .tip-icon {
    margin: 0 auto;
  }

  .tips-section {
    padding: 6rem 0;
  }
}

/* ============================================================
   Benefits Section (.benefits-section)
   ============================================================ */
.benefits-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.benefit-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), transform var(--transition);
}

.benefit-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}

.benefit-item h4,
.benefit-item span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .benefits-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .benefits-section {
    padding: 6rem 0;
  }
}

/* ============================================================
   PPC Landing Page Overrides (.lp-page)
   ============================================================ */
.lp-page .lp-header {
  text-align: center;
}

.lp-page .lp-header .header-inner {
  justify-content: center;
  gap: 1.5rem;
}

.lp-page .footer-links {
  display: none;
}
