/* ============================================
   Gettys Law Group — Mesothelioma Landing Page
   V4: Halpern-matched — Navy + Teal + Ice Blue
   Mobile-first, PPC-optimized, fast-loading
   ============================================ */

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

:root {
  --primary-dark: #103c6e;
  --primary-medium: #124a9a;
  --primary-light: #1a5cbd;
  --accent-teal: #d4a832;
  --accent-gold: #c9a227;
  --bg-ice: #f0f7f9;
  --bg-light: #f7fafc;
  --bg-cream: #f0f7f9;
  --bg-stone: #e8f0f4;
  --text-dark: #0e1a2e;
  --text-body: #334155;
  --text-muted: #64748b;
  --white: #ffffff;
  --error: #dc2626;
  --success: #16a34a;
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Sora', 'Inter', sans-serif;
  --section-padding: 60px 20px;
  --max-width: 1100px;
  --transition: 0.3s ease;
}

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-body);
  background: var(--bg-ice);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 3px;
}

h1 {
  font-size: 36px;
  letter-spacing: 4px;
}

h2 {
  font-size: 28px;
  letter-spacing: 4px;
}

h3 {
  font-size: 20px;
  letter-spacing: 3px;
}

h4 {
  font-size: 18px;
  letter-spacing: 3px;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ============================================
   STICKY HEADER (appears on scroll)
   ============================================ */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary-dark);
  padding: 8px 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transform: translateY(-100%);
  transition: transform var(--transition);
}

.sticky-header.visible {
  transform: translateY(0);
}

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 12px;
}

.sticky-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.sticky-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 4px;
}

.sticky-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.15;
}

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

.sticky-phone {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.sticky-cta-btn {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition);
}

.sticky-cta-btn:hover {
  background: #28a745;
  color: #fff;
}

/* ============================================
   SITE HEADER (top bar + logo + nav)
   ============================================ */

/* --- Top Phone Bar --- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 20px;
  text-align: center;
}

.top-bar a {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--white);
}

/* --- Header Main (logo + nav) --- */
.header-main {
  background: var(--primary-medium);
  border-bottom: 3px solid var(--accent-gold);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo .logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.header-logo .logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}

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

/* Hamburger Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Navigation — Mobile-first (drawer) */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1000;
  padding: 80px 0 30px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.main-nav.open {
  right: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-links li a {
  display: block;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 28px;
  transition: background var(--transition);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.nav-links li a.nav-cta {
  color: var(--primary-dark);
  background: var(--accent-gold);
  border-radius: 6px;
  margin: 16px 24px 0;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 1px;
  border-bottom: none;
}

.nav-links li a.nav-cta:hover {
  background: #28a745;
  color: #fff;
}

.nav-phone-mobile {
  display: block;
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  text-decoration: none;
  margin-top: 10px;
}

/* Internal page nav with logo icon */
.internal-nav .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: #ffffff;
  padding: 50px 20px 60px;
  position: relative;
  overflow: hidden;
}


.hero-center {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero .pre-headline {
  display: inline-block;
  color: var(--primary-medium);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.hero h1 .highlight {
  color: var(--primary-medium);
}

.hero-sub {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--primary-dark);
  font-weight: 600;
}

.hero-trust .trust-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-trust .trust-stat .icon {
  color: var(--accent-teal);
  font-size: 18px;
}

.hero-trust .trust-divider {
  color: var(--accent-teal);
  opacity: 0.4;
}

/* ============================================
   HERO FORM BAR (Halpern-style horizontal)
   ============================================ */
.hero-form-bar {
  background: var(--primary-dark);
  padding: 44px 20px;
  position: relative;
  border-top: 4px solid var(--accent-gold);
  border-bottom: 4px solid var(--accent-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.hero-form-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-form-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 24px;
}

.hero-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hf-field input,
.hf-field select {
  width: 100%;
  padding: 16px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  border-radius: 0;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  height: 56px;
}

.hf-field input::placeholder {
  color: rgba(255,255,255,0.7);
}

.hf-field input:focus,
.hf-field select:focus {
  border-bottom-color: var(--accent-teal);
}

.hf-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}

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

.hf-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 15px rgba(201,162,39,0.35);
  height: 56px;
  white-space: nowrap;
}

.hf-btn:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(40,167,69,0.5);
}

.hf-trust {
  text-align: center;
  margin-top: 16px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
}

.hf-field.hf-error input,
.hf-field.hf-error select {
  border-bottom-color: #e74c3c;
}

.hf-field.hf-valid input,
.hf-field.hf-valid select {
  border-bottom-color: var(--success);
}

/* Form Success State */
.form-success {
  text-align: center;
  padding: 30px 10px;
}

.form-success .success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.form-success p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   TRUST BAR (light background)
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid #e2eaf0;
  padding: 24px 20px;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.trust-item .icon {
  font-size: 24px;
  color: var(--accent-teal);
  opacity: 1;
}

.trust-divider {
  color: var(--accent-teal);
  font-size: 20px;
  opacity: 0.4;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  background: var(--bg-ice);
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: var(--primary-medium);
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: var(--accent-teal);
  margin: 15px auto;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.why-card .card-icon {
  font-size: 36px;
  min-width: 50px;
  text-align: center;
  color: var(--accent-teal);
}

.why-card h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

.why-cta {
  text-align: center;
  margin-top: 30px;
}

.why-cta .btn-secondary {
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-color: var(--accent-teal);
}

.why-cta .btn-secondary:hover {
  background: #28a745;
  color: #ffffff;
  border-color: #28a745;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--accent-teal);
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(201,162,39,0.35);
}

.btn-primary:hover {
  background: #28a745;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(40,167,69,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary-medium);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border: 2px solid var(--primary-medium);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--primary-medium);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   SCROLLING TRUST TICKER
   ============================================ */
.trust-ticker {
  background: var(--primary-dark);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.ticker-item .t-icon {
  color: var(--accent-teal);
  font-size: 16px;
}

.ticker-dot {
  color: var(--accent-teal);
  font-size: 8px;
}

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

/* ============================================
   SOCIAL PROOF & VERDICTS
   ============================================ */
.social-proof {
  background: var(--white);
  padding: var(--section-padding);
}

.testimonials {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--primary-medium);
  border-radius: 0 12px 12px 0;
  padding: 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 48px;
  color: var(--primary-medium);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 16px;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-card cite {
  font-size: 14px;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
}

/* Verdicts */
.verdicts {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.verdict-card {
  background: var(--primary-medium);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.verdict-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.verdict-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 6px;
  line-height: 1.1;
}

.verdict-desc {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.verdict-story {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   MEET ATTORNEY
   ============================================ */
.meet-attorney {
  background: var(--bg-ice);
  padding: var(--section-padding);
}

.attorney-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.attorney-photo {
  text-align: center;
}

.attorney-photo .photo-frame {
  width: 250px;
  height: 300px;
  margin: 0 auto;
  border-radius: 12px;
  border: 4px solid var(--accent-teal);
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.attorney-photo .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attorney-photo .photo-placeholder {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}

.attorney-info h2 {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.attorney-info .attorney-title {
  color: var(--accent-teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.attorney-info p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.attorney-info .btn-secondary {
  margin-top: 10px;
}

/* ============================================
   EXPOSURE SITES
   ============================================ */
.exposure-sites {
  background: var(--white);
  padding: var(--section-padding);
}

.exposure-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.exposure-category {
  background: var(--bg-ice);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--primary-medium);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition);
}

.exposure-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.exposure-category h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.exposure-category h3 .cat-icon {
  font-size: 22px;
}

.exposure-category p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.6;
}

.exposure-links {
  max-width: var(--max-width);
  margin: 30px auto 0;
  text-align: center;
}

.exposure-links h3 {
  color: var(--primary-dark);
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.exposure-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.exposure-links ul li a {
  display: inline-block;
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.exposure-links ul li a:hover {
  background: var(--accent-teal);
  color: var(--white);
}

/* ============================================
   PACKET CTA (Navy)
   ============================================ */
.packet-cta {
  background: var(--primary-medium);
  padding: 50px 20px;
  text-align: center;
}

.packet-cta h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.packet-cta p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}

.packet-cta .btn-primary {
  background: var(--accent-teal);
  color: var(--primary-dark);
}

/* Packet Form (inline) */
.packet-form {
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.packet-form.active {
  display: block;
}

.packet-form .form-row {
  margin-bottom: 12px;
}

.packet-form input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
}

.packet-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.packet-form input:focus {
  border-color: var(--accent-teal);
}

/* ============================================
   MAP & LOCATIONS
   ============================================ */
.locations-section {
  background: var(--bg-ice);
  padding: var(--section-padding);
}

.map-container {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 3px solid var(--primary-medium);
}

#office-map {
  width: 100%;
  height: 400px;
  display: block;
  z-index: 1;
}

.custom-map-pin {
  background: none !important;
  border: none !important;
}

.map-container {
  position: relative;
}

.map-reset-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: var(--primary-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background var(--transition);
}

.map-reset-btn:hover {
  background: var(--primary-medium);
}

.location-card {
  cursor: pointer;
}

.location-card.active {
  background: var(--primary-dark);
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.location-card.active .loc-icon {
  color: var(--accent);
}

.location-card.active .loc-name {
  color: var(--white);
}

.locations-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.location-card {
  background: var(--white);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.location-card:hover {
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.location-card .loc-icon {
  color: var(--primary-medium);
  font-size: 20px;
  min-width: 24px;
}

.location-card .loc-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  padding: 50px 20px 20px;
}

.footer-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.footer-cta .urgency {
  color: var(--accent-teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.footer-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-cta .phone-big,
.phone-big {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-cta .phone-big:hover,
.phone-big:hover {
  color: var(--accent-teal);
}

.footer-cta .btn-primary {
  background: var(--accent-teal);
}

.footer-locations {
  max-width: var(--max-width);
  margin: 0 auto 30px;
  text-align: center;
}

.footer-locations h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.footer-loc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  list-style: none;
}

.footer-loc-list li {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-loc-list li .pin {
  color: var(--accent-teal);
  font-size: 12px;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.8;
}

.footer-bottom a {
  color: rgba(255,255,255,0.65);
}

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

/* ============================================
   MOBILE STICKY CTA (all devices)
   ============================================ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent-teal);
  padding: 14px 15px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.hidden {
  transform: translateY(100%);
}

.sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background var(--transition);
}

.sticky-call:hover {
  background: #1ba3d9;
  color: var(--primary-dark);
}

.sticky-form-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--transition);
}

.sticky-form-btn:hover {
  background: var(--bg-stone);
  color: var(--primary-dark);
}

/* ============================================
   INTERNAL PAGE STYLES
   ============================================ */
.internal-nav {
  background: var(--primary-medium);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid var(--accent-gold);
  gap: 10px;
}

.internal-nav .logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.internal-nav .logo-link .logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.internal-nav .logo-link-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.internal-nav .logo-link-text span {
  color: var(--accent-gold);
}

.internal-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.internal-nav-links .nav-link-desktop {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  text-decoration: none;
}

.internal-nav-links .nav-link-desktop:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.internal-nav .nav-phone {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
}

.internal-page .page-header {
  background: linear-gradient(56deg, #184a9d 0%, #1a5cbd 50%, #124a9a 100%);
  padding: 50px 20px;
  text-align: center;
}

.internal-page .page-header h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.internal-page .page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
}

.attorney-photo-hero {
  text-align: center;
  margin-bottom: 30px;
}

.attorney-photo-hero .photo-frame {
  width: 220px;
  height: 270px;
  margin: 0 auto;
  border-radius: 12px;
  border: 4px solid var(--accent-teal);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.attorney-photo-hero .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  background: var(--bg-ice);
}

.page-content h2 {
  color: var(--primary-medium);
  font-family: var(--font-display);
  font-size: 26px;
  margin: 40px 0 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-content h2:first-of-type {
  margin-top: 0;
}

.page-content p {
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.page-content ul {
  margin: 15px 0 25px 20px;
  color: var(--text-body);
}

.page-content ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 5px;
}

.page-content .highlight-box {
  background: var(--white);
  border-left: 4px solid var(--accent-teal);
  border-radius: 0 12px 12px 0;
  padding: 25px;
  margin: 30px 0;
}

.page-content .highlight-box p {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.page-cta {
  background: var(--primary-medium);
  padding: 50px 20px;
  text-align: center;
}

.page-cta h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.page-cta .urgency {
  color: var(--accent-teal);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.page-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.page-cta .phone-big {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-medium);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.back-link:hover {
  color: var(--accent-teal);
}

/* ============================================
   RESPONSIVE — Tablet (600px)
   ============================================ */
@media (min-width: 600px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

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

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

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

  .verdicts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-form-fields {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hf-submit {
    grid-column: 1 / -1;
  }

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

  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  #office-map {
    height: 450px;
  }
}

/* ============================================
   RESPONSIVE — Desktop (900px)
   ============================================ */
@media (min-width: 900px) {
  :root {
    --section-padding: 80px 40px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 22px;
  }

  body {
    font-size: 20px;
    line-height: 1.7;
  }

  /* Sticky header desktop */
  .sticky-header {
    padding: 10px 30px;
  }

  .sticky-header-inner {
    gap: 24px;
  }

  .sticky-logo {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .sticky-logo br {
    display: none;
  }

  .sticky-logo span::before {
    content: " ";
  }

  .sticky-cta-btn {
    font-size: 13px;
    padding: 10px 22px;
  }

  .hero {
    padding: 70px 40px 80px;
  }

  .hero-sub {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 56px;
    letter-spacing: 5px;
  }

  .hero-form-fields {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
  }

  .hero-form-heading {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .hf-btn {
    padding: 16px 40px;
  }

  .section-header h2 {
    font-size: 50px;
  }

  .mobile-sticky-cta {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  /* Desktop: inline nav, no hamburger */
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }

  .nav-links {
    flex-direction: row;
    align-items: center;
  }

  .nav-links li a {
    padding: 12px 14px;
    font-size: 13px;
    border-bottom: none;
  }

  .nav-links li a.nav-cta {
    margin: 0 0 0 8px;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    box-shadow: none;
  }

  .nav-phone-mobile {
    display: none;
  }

  .top-bar a {
    font-size: 20px;
    font-weight: 900;
  }

  .header-logo .logo-text {
    font-size: 24px;
  }

  .header-logo .logo-icon {
    width: 44px;
    height: 44px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .attorney-content {
    grid-template-columns: 280px 1fr;
    gap: 50px;
  }

  .attorney-photo .photo-frame {
    width: 280px;
    height: 340px;
  }

  .attorney-info h2 {
    font-size: 34px;
  }

  .exposure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  #office-map {
    height: 500px;
  }

  .footer-cta h2 {
    font-size: 34px;
  }

  .internal-page .page-header h1 {
    font-size: 44px;
  }

  .page-content {
    padding: 70px 20px;
  }
}

/* ============================================
   RESPONSIVE — Large Desktop (1200px)
   ============================================ */
@media (min-width: 1200px) {
  .hero h1 {
    font-size: 60px;
    letter-spacing: 5px;
  }

  .verdict-amount {
    font-size: 44px;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (<600px)
   ============================================ */
@media (max-width: 599px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 30px 15px 40px;
  }

  .hero-form-heading {
    font-size: 22px;
    letter-spacing: 2px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  /* Hide top phone bar on mobile — phone is in sticky CTA */
  .top-bar {
    display: none;
  }

  /* Sticky header on mobile */
  .sticky-phone {
    display: none;
  }

  /* Compact header on mobile */
  .header-inner {
    min-height: 52px;
  }

  .header-logo .logo-icon {
    width: 34px;
    height: 34px;
  }

  .header-logo .logo-text {
    font-size: 18px;
    letter-spacing: 2px;
  }

  /* Hide desktop nav links on internal pages, show only phone */
  .internal-nav-links .nav-link-desktop {
    display: none;
  }

  .internal-nav .logo-link-text {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .internal-nav .nav-phone {
    font-size: 13px;
  }

  /* Tighter hero trust items */
  .hero-trust {
    font-size: 13px;
    gap: 8px;
  }

  .hero-trust span {
    font-size: 13px;
  }

  /* Compact sections */
  .section-header h2 {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .trust-bar {
    padding: 16px 12px;
  }

  .trust-item {
    font-size: 14px;
  }

  .trust-divider {
    display: none;
  }

  .trust-items {
    flex-direction: column;
    gap: 8px;
  }

  /* Compact verdicts */
  .verdict-amount {
    font-size: 28px;
  }

  /* Compact footer */
  .footer-cta h2 {
    font-size: 24px;
  }

  .phone-big,
  .footer-cta .phone-big {
    font-size: 28px;
  }

  /* Sticky CTA slightly thinner on small phones */
  .mobile-sticky-cta {
    padding: 8px 12px;
  }

  .sticky-call,
  .sticky-form-btn {
    padding: 10px;
    font-size: 13px;
  }

  /* Internal page adjustments */
  .internal-page .page-header {
    padding: 35px 15px;
  }

  .internal-page .page-header h1 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .page-content {
    padding: 30px 15px;
  }

  .page-cta {
    padding: 35px 15px;
  }

  .page-cta .phone-big {
    font-size: 26px;
  }
}
