/* =========================================================
   MLR Junk Removal & Transport LLC
   Core stylesheet — mobile first
   ========================================================= */

:root {
  --charcoal: #1b1f24;
  --charcoal-2: #262b32;
  --charcoal-soft: #3a4049;
  --white: #ffffff;
  --off-white: #f6f7f9;
  --gray-100: #eef0f3;
  --gray-200: #e3e6eb;
  --gray-300: #d7dbe1;
  --gray-500: #88919b;
  --gray-600: #666f7a;
  --gray-700: #4b5563;
  --blue: #1f5fd1;
  --blue-dark: #163f8f;
  --blue-light: #eaf1fd;
  --green: #1e9e5a;
  --green-dark: #167a45;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 29, 0.06), 0 1px 3px rgba(20, 24, 29, 0.08);
  --shadow-md: 0 6px 20px rgba(20, 24, 29, 0.08), 0 2px 6px rgba(20, 24, 29, 0.05);
  --shadow-lg: 0 24px 48px rgba(20, 24, 29, 0.16), 0 8px 16px rgba(20, 24, 29, 0.08);
  --container: 1220px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

html:focus-within { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

/* Default size for bare inline-icon SVGs (icons pasted directly into markup
   have no width/height, so without this they inherit the browser's 300x150
   intrinsic default). Specific contexts below override as needed. */
svg[aria-hidden="true"], svg[role="img"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-700); }

table { border-collapse: collapse; width: 100%; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-tight { padding: 56px 0; }
}

.section-alt { background: var(--off-white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark p { color: var(--gray-300); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { max-width: 700px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: #7fb0ff; }
.section-lede { font-size: 1.1rem; margin-top: 14px; }

.grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color .15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(30, 158, 90, 0.28);
}
.btn-green:hover { background: var(--green-dark); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31, 95, 209, 0.28);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover { background: var(--gray-100); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }

.primary-nav {
  display: none;
}
.primary-nav ul { display: flex; align-items: center; gap: 0; }
.primary-nav a {
  display: block;
  padding: 10px 10px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  color: var(--charcoal-2);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.primary-nav a:hover { background: var(--off-white); color: var(--blue); }
.primary-nav a[aria-current="page"] { color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 11px 20px; font-size: 0.9rem; }
.header-phone {
  display: none;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  color: var(--charcoal);
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone svg { flex-shrink: 0; color: var(--green); width: 18px; height: 18px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--off-white); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--charcoal);
  margin-inline: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 490;
  overflow-y: auto;
  padding: 12px 20px 32px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: 1px solid var(--gray-200);
  color: var(--charcoal);
}
.mobile-nav a[aria-current="page"] { color: var(--blue); }
.mobile-nav-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

@media (min-width: 1080px) {
  .primary-nav { display: block; }
  .header-phone { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ---------- Hero (home / interior photo hero) ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero-media-feature img { opacity: 0.62; }
.hero-media-feature::after {
  background: linear-gradient(180deg, rgba(17,20,24,0.68) 0%, rgba(17,20,24,0.42) 45%, rgba(17,20,24,0.86) 100%) !important;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,20,24,0.88) 0%, rgba(17,20,24,0.72) 45%, rgba(17,20,24,0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 80px;
}
@media (min-width: 768px) { .hero-inner { padding: 120px 0 110px; } }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(2px);
}
.hero-badge svg { width: 15px; height: 15px; }
.hero h1 { max-width: 780px; }
.hero-sub {
  margin-top: 20px;
  max-width: 640px;
  font-size: 1.15rem;
  color: var(--gray-200, #e3e6eb);
}
.hero .cta-row { margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: var(--gray-300); }

/* Compact interior page header */
.page-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 46px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-header.has-media { padding: 100px 0 56px; }
.page-header .hero-media img { opacity: 0.25; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gray-300); font-weight: 600; }
.breadcrumb a:hover { color: var(--white); }
.page-header h1 { position: relative; z-index: 1; max-width: 800px; }
.page-header .section-lede { position: relative; z-index: 1; max-width: 680px; color: var(--gray-300); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.service-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-top: 4px; }
.service-card p { flex: 1; }
.service-card .link-arrow { margin-top: 6px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--blue);
}
.link-arrow svg { transition: transform 0.15s ease; width: 16px; height: 16px; }
.link-arrow:hover svg { transform: translateX(3px); }

/* Why choose us */
.feature-list { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .feature-list { grid-template-columns: repeat(4, 1fr); } }
.feature-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.feature-item .icon-badge {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-item .icon-badge svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.94rem; }

/* Image placeholder frame */
.img-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.img-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
figure { margin: 0; }
figcaption {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding-top: 8px;
}

/* Before / after pairs */
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-pair .img-frame { position: relative; }
.ba-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  z-index: 2;
}
.ba-tag.after { background: var(--green); }

/* ---------- Reviews ---------- */
.stars { display: inline-flex; gap: 3px; color: #f5a623; }
.stars svg { width: 18px; height: 18px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.review-quote { font-size: 1.02rem; color: var(--charcoal-2); }
.review-name { font-weight: 800; }
.review-meta { font-size: 0.85rem; color: var(--gray-600); }

/* ---------- Service area chips ---------- */
.area-chip-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
@media (min-width: 640px) { .area-chip-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 900px) { .area-chip-grid { grid-template-columns: repeat(4,1fr); } }
.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 700;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.area-chip:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.area-chip svg { color: var(--blue); flex-shrink: 0; width: 19px; height: 19px; }

/* City detail sections on Service Areas page */
.city-section { padding: 40px 0; border-top: 1px solid var(--gray-200); }
.city-section:first-of-type { border-top: none; }
.city-grid { display: grid; gap: 28px; }
@media (min-width: 860px) { .city-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.city-list { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.city-list li {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal-2);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 30px;
  text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: 60px 60px; } }
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--gray-300); max-width: 560px; margin-inline: auto; }
.cta-band .cta-row { justify-content: center; margin-top: 26px; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal-2);
  background: var(--white);
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.is-active { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }

.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); background: var(--white); }
.gallery-item img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.gallery-item figcaption { padding: 10px 12px 14px; }
.gallery-item[hidden] { display: none; }
.gallery-cat-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 24px;
  margin-bottom: 12px;
}
.gallery-cat-label:first-child { margin-top: 0; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-question .plus { flex-shrink: 0; transition: transform 0.2s ease; color: var(--blue); }
.faq-question[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-answer-inner { padding: 0 22px 20px; }
.faq-answer-inner p { }
.faq-category-title { margin-top: 42px; margin-bottom: 16px; }
.faq-category-title:first-child { margin-top: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field .required { color: var(--green); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-size: 1rem;
  background: var(--white);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(31,95,209,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--gray-600); }
.form-success {
  display: none;
  background: var(--blue-light);
  border: 1px solid var(--blue);
  color: var(--blue-dark);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 18px;
}
.form-success.is-visible { display: block; }

/* ---------- Contact info panels ---------- */
.info-panel {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-row { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--gray-200); }
.info-row:first-child { border-top: none; padding-top: 0; }
.info-row svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; width: 22px; height: 22px; }
.info-row h4 { margin-bottom: 3px; }
.hours-table td { padding: 4px 0; font-size: 0.95rem; color: var(--gray-700); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--charcoal); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  aspect-ratio: 16 / 10;
  background: var(--off-white);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Sticky call bar (mobile) ---------- */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 480;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 24px rgba(20,24,29,0.1);
}
.sticky-call-bar .btn { flex: 1; padding: 13px 16px; }
@media (min-width: 1080px) { .sticky-call-bar { display: none; } }
@media (max-width: 1079px) { body.has-sticky-bar { padding-bottom: 76px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--gray-300); }
.footer-top { padding: 64px 0 40px; display: grid; gap: 40px; }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: var(--gray-500); max-width: 320px; font-size: 0.92rem; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--gray-300); font-size: 0.95rem; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--charcoal-soft);
  border-radius: 999px;
}
.footer-social a:hover { background: var(--charcoal-soft); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--charcoal-soft);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.footer-bottom a { color: var(--gray-500); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Misc utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-pill {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}
.divider { height: 1px; background: var(--gray-200); border: none; margin: 48px 0; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--charcoal-2); }
.check-list svg { color: var(--green); flex-shrink: 0; margin-top: 3px; width: 17px; height: 17px; }

.two-col-text { display: grid; gap: 32px; }
@media (min-width: 900px) { .two-col-text { grid-template-columns: 1fr 1fr; } }

.anchor-jump { scroll-margin-top: calc(var(--header-h) + 16px); }

.table-wrap { overflow-x: auto; }
.pricing-table th, .pricing-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--gray-200); }
.pricing-table th { background: var(--off-white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

/* Print */
@media print {
  .site-header, .site-footer, .sticky-call-bar, .filter-bar { display: none !important; }
}
