/* ============================================
   The Wilbers Law Firm — Prototype A: "The Advocate"
   Morgan & Morgan inspired | Black/White + Red
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --red: #DC2626;
  --red-hover: #B91C1C;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 14px 32px;
  font-family: var(--font-heading); font-size: 1rem;
  font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .25s, transform .15s, box-shadow .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-red {
  background: var(--red); color: var(--white);
  box-shadow: 0 4px 14px rgba(220,38,38,.35);
}
.btn-red:hover { background: var(--red-hover); box-shadow: 0 6px 20px rgba(220,38,38,.45); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--black); height: var(--header-height);
  border-bottom: 3px solid var(--red);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.5); }

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-family: var(--font-heading); font-size: 1.35rem;
  color: var(--white); font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; line-height: 1.2;
}
.logo span { color: var(--red); }

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--gray-300); font-size: .9rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .5px;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--red) !important; color: var(--white) !important;
  padding: 10px 20px; border-radius: 4px; font-weight: 600;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-hover) !important; }

.nav-phone {
  color: var(--white) !important; font-weight: 700;
  font-size: 1rem !important;
}
.nav-phone::after { display: none !important; }

/* Mobile toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); margin: 5px 0;
  border-radius: 2px; transition: .3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--gray-900); padding: 8px 0;
  font-size: .8rem; color: var(--gray-400);
  border-bottom: 1px solid var(--gray-800);
}
.top-bar .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: var(--gray-300); transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-highlights { display: flex; gap: 20px; }
.top-bar-highlights span::before { content: '✓ '; color: var(--red); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 700px;
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, #0d0d0d 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(220,38,38,.05) 100%);
}
.hero .container {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 50px; align-items: center; position: relative; z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block; background: var(--red);
  padding: 6px 16px; border-radius: 3px;
  font-family: var(--font-heading); font-size: .8rem;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; color: var(--white);
}
.hero h1 {
  font-family: var(--font-heading); font-size: 3.2rem;
  font-weight: 700; line-height: 1.1; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.2rem; color: var(--gray-300);
  margin-bottom: 30px; line-height: 1.5;
}
.hero-bullets { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-bullets li {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-300); font-size: .95rem;
}
.hero-bullets li .icon {
  width: 24px; height: 24px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: .7rem; color: var(--white);
  flex-shrink: 0;
}
.hero-phone {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--white); font-weight: 700; letter-spacing: 1px;
}
.hero-phone a { color: var(--white); transition: color .2s; }
.hero-phone a:hover { color: var(--red); }

/* Hero Form */
.hero-form-card {
  background: var(--white); border-radius: 8px;
  padding: 36px 30px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
  position: relative;
}
.hero-form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--red); border-radius: 8px 8px 0 0;
}
.hero-form-card h2 {
  font-family: var(--font-heading); font-size: 1.5rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 6px;
}
.hero-form-card .form-sub {
  font-size: .85rem; color: var(--gray-500); margin-bottom: 24px;
}
.hero-form .form-group { margin-bottom: 16px; }
.hero-form label {
  display: block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--gray-600); margin-bottom: 6px;
}
.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--gray-200);
  border-radius: 4px; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s; background: var(--white);
}
.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none; border-color: var(--red);
}
.hero-form textarea { resize: vertical; min-height: 80px; }
.hero-form .btn { width: 100%; font-size: 1.1rem; padding: 16px; }
.form-note {
  text-align: center; font-size: .75rem;
  color: var(--gray-400); margin-top: 12px;
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--gray-900); border-top: 1px solid var(--gray-800);
  padding: 20px 0;
}
.trust-items {
  display: flex; justify-content: center;
  align-items: center; gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray-300); font-size: .9rem; font-weight: 500;
}
.trust-icon {
  width: 48px; height: 48px; background: rgba(220,38,38,.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: var(--red);
  border: 2px solid rgba(220,38,38,.3);
}

/* ---------- Results Ticker ---------- */
.results-section {
  padding: 80px 0; background: var(--white);
}
.section-header {
  text-align: center; margin-bottom: 50px;
}
.section-tag {
  display: inline-block; font-family: var(--font-heading);
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red);
  margin-bottom: 12px; font-weight: 600;
}
.section-title {
  font-family: var(--font-heading); font-size: 2.5rem;
  text-transform: uppercase; color: var(--black);
  line-height: 1.15;
}
.section-desc {
  max-width: 600px; margin: 16px auto 0; color: var(--gray-500);
  font-size: 1rem;
}

.results-ticker {
  overflow: hidden; position: relative;
  padding: 20px 0;
}
.results-ticker::before,
.results-ticker::after {
  content: ''; position: absolute; top: 0; width: 100px;
  height: 100%; z-index: 2; pointer-events: none;
}
.results-ticker::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.results-ticker::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }

.ticker-track {
  display: flex; gap: 30px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.result-card {
  flex-shrink: 0; background: var(--gray-900);
  padding: 30px 36px; border-radius: 8px;
  min-width: 280px; text-align: center;
  border-bottom: 3px solid var(--red);
  transition: transform .25s;
}
.result-card:hover { transform: translateY(-3px); }
.result-amount {
  font-family: var(--font-heading); font-size: 2.4rem;
  color: var(--red); font-weight: 700; margin-bottom: 8px;
}
.result-type {
  color: var(--gray-400); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .5px;
}

/* Results Grid (results page) */
.results-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.results-grid .result-card { min-width: auto; }
.result-total {
  text-align: center; padding: 40px;
  background: var(--gray-900); border-radius: 8px;
  margin-bottom: 40px;
}
.result-total .amount {
  font-family: var(--font-heading); font-size: 3.5rem;
  color: var(--red); font-weight: 700;
}
.result-total .label {
  color: var(--gray-400); font-size: 1rem;
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 8px;
}

/* ---------- Practice Areas ---------- */
.practice-section {
  padding: 80px 0; background: var(--gray-100);
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.practice-card {
  background: var(--white); border-radius: 8px;
  padding: 36px 28px; text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  border-color: var(--red);
}
.practice-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(220,38,38,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--red);
  transition: background .25s;
}
.practice-card:hover .practice-icon { background: var(--red); color: var(--white); }
.practice-card h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  text-transform: uppercase; margin-bottom: 10px;
  color: var(--black);
}
.practice-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.5; }

/* Expanded practice area content */
.practice-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--black); color: var(--white); text-align: center;
}
.practice-hero h1 {
  font-family: var(--font-heading); font-size: 2.8rem;
  text-transform: uppercase;
}
.practice-detail { padding: 60px 0; }
.practice-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.practice-detail-card {
  background: var(--white); border-radius: 8px;
  padding: 40px 30px; border: 1px solid var(--gray-200);
  transition: border-color .25s;
}
.practice-detail-card:hover { border-color: var(--red); }
.practice-detail-card h2 {
  font-family: var(--font-heading); font-size: 1.4rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 14px; display: flex; align-items: center; gap: 12px;
}
.practice-detail-card h2 .icon { font-size: 1.6rem; }
.practice-detail-card p { color: var(--gray-600); line-height: 1.7; margin-bottom: 14px; }
.practice-detail-card ul { padding-left: 20px; }
.practice-detail-card li {
  color: var(--gray-600); margin-bottom: 6px;
  list-style: disc; font-size: .95rem;
}

/* ---------- Why Choose Us ---------- */
.why-section { padding: 80px 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-card { text-align: center; padding: 30px 20px; }
.why-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--red);
  border: 3px solid var(--red);
}
.why-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem;
  text-transform: uppercase; margin-bottom: 10px;
  color: var(--black);
}
.why-card p { color: var(--gray-500); font-size: .9rem; }

/* ---------- About Section ---------- */
.about-section { padding: 80px 0; background: var(--gray-100); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center;
}
.about-photo {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gray-500);
  font-size: .9rem; border-left: 5px solid var(--red);
}
.about-text h2 {
  font-family: var(--font-heading); font-size: 2rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--gray-600); line-height: 1.7; margin-bottom: 16px;
}
.about-stat-row { display: flex; gap: 30px; margin-top: 24px; }
.about-stat {
  text-align: center;
}
.about-stat .num {
  font-family: var(--font-heading); font-size: 2.2rem;
  color: var(--red); font-weight: 700;
}
.about-stat .lbl {
  font-size: .8rem; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-500);
}

/* About page specific */
.about-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--black); color: var(--white);
  text-align: center;
}
.about-hero h1 {
  font-family: var(--font-heading); font-size: 2.8rem;
  text-transform: uppercase;
}
.about-content { padding: 60px 0; }
.about-full-grid {
  display: grid; grid-template-columns: 350px 1fr;
  gap: 50px; align-items: start;
}
.about-sidebar-photo {
  width: 100%; height: 450px;
  background: linear-gradient(135deg, var(--gray-800), var(--gray-900));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gray-500);
  font-size: .9rem; border-left: 5px solid var(--red);
  position: sticky; top: 100px;
}
.about-bio h2 {
  font-family: var(--font-heading); font-size: 2rem;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 8px;
}
.about-bio .title {
  color: var(--red); font-weight: 600;
  text-transform: uppercase; font-size: .9rem;
  letter-spacing: 1px; margin-bottom: 20px;
}
.about-bio p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-bio h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  text-transform: uppercase; color: var(--black);
  margin: 30px 0 16px;
}
.timeline { padding-left: 24px; border-left: 3px solid var(--red); }
.timeline-item { margin-bottom: 24px; position: relative; }
.timeline-item::before {
  content: ''; position: absolute; left: -31px; top: 6px;
  width: 14px; height: 14px; background: var(--red);
  border-radius: 50%; border: 3px solid var(--white);
}
.timeline-item .year {
  font-family: var(--font-heading); color: var(--red);
  font-size: .9rem; font-weight: 700;
}
.timeline-item p { color: var(--gray-600); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testimonials-section { padding: 80px 0; background: var(--black); color: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--gray-900); border-radius: 8px;
  padding: 36px; position: relative;
  border-top: 3px solid var(--red);
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-heading);
  font-size: 5rem; color: var(--red); opacity: .3;
  position: absolute; top: 10px; right: 24px; line-height: 1;
}
.testimonial-card p {
  color: var(--gray-300); font-style: italic;
  line-height: 1.7; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-weight: 600; color: var(--white);
  font-size: .9rem;
}
.testimonial-stars {
  color: var(--red); font-size: 1rem;
  margin-bottom: 14px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, #991B1B 100%);
  text-align: center; color: var(--white);
}
.cta-section h2 {
  font-family: var(--font-heading); font-size: 2.8rem;
  text-transform: uppercase; margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.15rem; margin-bottom: 30px;
  opacity: .9;
}
.cta-section .btn { font-size: 1.1rem; padding: 18px 40px; }
.cta-phone {
  margin-top: 20px; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; letter-spacing: 1px;
}
.cta-phone a { color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black); padding: 60px 0 0;
  color: var(--gray-400); border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-800);
}
.footer-brand .logo { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-heading); color: var(--white);
  text-transform: uppercase; font-size: 1rem;
  margin-bottom: 16px; letter-spacing: .5px;
}
.footer-col a {
  display: block; color: var(--gray-400);
  font-size: .9rem; margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }
.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 12px;
  font-size: .9rem;
}
.footer-contact-item .icon { color: var(--red); flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0; text-align: center;
  font-size: .8rem; color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-400); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px;
  background: var(--black); color: var(--white);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-heading); font-size: 2.8rem;
  text-transform: uppercase; margin-bottom: 12px;
}
.page-hero p { color: var(--gray-400); font-size: 1.1rem; }
.breadcrumb {
  font-size: .85rem; color: var(--gray-500);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Contact Page ---------- */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-card {
  background: var(--gray-900); border-radius: 8px;
  padding: 36px; color: var(--white);
  border-left: 4px solid var(--red);
  margin-bottom: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-heading); font-size: 1.2rem;
  text-transform: uppercase; margin-bottom: 16px;
}
.contact-info-card p { color: var(--gray-300); margin-bottom: 8px; }
.contact-info-card a { color: var(--red); }
.contact-info-card a:hover { text-decoration: underline; }
.map-placeholder {
  width: 100%; height: 300px;
  background: var(--gray-200); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: .9rem;
  margin-top: 24px;
}
.contact-form {
  background: var(--white); border-radius: 8px;
  padding: 40px; border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.contact-form h2 {
  font-family: var(--font-heading); font-size: 1.6rem;
  text-transform: uppercase; margin-bottom: 24px;
  color: var(--black);
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block; font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--gray-600); margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--gray-200);
  border-radius: 4px; font-family: var(--font-body); font-size: .95rem;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--red);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* ---------- Español Badge ---------- */
.espanol-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220,38,38,.1); color: var(--red);
  padding: 4px 12px; border-radius: 20px;
  font-size: .8rem; font-weight: 600;
}

/* ---------- Counter Animation ---------- */
.counter { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; }
  .hero h1 { font-size: 2.5rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-sidebar-photo { position: static; height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links {
    display: none; position: fixed;
    top: var(--header-height); left: 0;
    width: 100%; background: var(--black);
    flex-direction: column; padding: 30px;
    gap: 20px; border-top: 1px solid var(--gray-800);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 30px); padding-bottom: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero-phone { font-size: 1.4rem; }
  .section-title { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 2rem; }
  .cta-phone { font-size: 1.4rem; }
  .trust-items { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .result-total .amount { font-size: 2.5rem; }
}
