/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: 'Oswald', 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.01em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: 1.3rem; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Colors ---------- */
:root {
  --charcoal: #141414;
  --charcoal-2: #1f1f1f;
  --charcoal-3: #2a2a2a;
  --orange: #ff6b1a;
  --orange-dark: #e55a0e;
  --orange-light: #ff8a47;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --gray-50: #fafafa;
  --gray-100: #f4f4f4;
  --gray-200: #e8e8e8;
  --gray-300: #d4d4d4;
  --gold: #ffc857;
}

/* ---------- Phone Icon ---------- */
.phone-icon {
  display: inline-block;
  margin-right: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,26,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,107,26,0.5); }
.btn-secondary { background: var(--charcoal); color: #fff; }
.btn-secondary:hover { background: var(--charcoal-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-large { padding: 18px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--charcoal);
  color: #ddd;
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { opacity: 0.85; }
.topbar-phone { color: var(--orange-light); font-weight: 600; }
.topbar-phone:hover { color: #fff; }
@media (max-width: 720px) {
  .topbar-item:nth-child(2) { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 12px rgba(255,107,26,0.3);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.logo-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--charcoal-2);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-cta { padding: 11px 22px; font-size: 0.9rem; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s ease;
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .main-nav.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: 70px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,107,26,0.35) 0%, transparent 55%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #2a2a2a 100%);
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(transparent 95%, rgba(255,255,255,0.04) 95%),
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.04) 95%);
  background-size: 60px 60px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 16px;
}
.hero-copy h1 { margin-bottom: 20px; font-weight: 700; }
.hero-copy h1 .accent {
  color: var(--orange);
  display: inline-block;
}
.lede {
  font-size: 1.15rem;
  color: #d8d8d8;
  margin-bottom: 26px;
  max-width: 580px;
}
.hero-perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  margin-bottom: 30px;
  max-width: 580px;
}
.hero-perks li {
  font-size: 0.96rem;
  color: #efefef;
  font-weight: 500;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: #cfcfcf;
  flex-wrap: wrap;
}
.trust-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

/* Quote Card */
.quote-card {
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  position: relative;
}
.quote-card-head {
  text-align: center;
  margin-bottom: 22px;
  position: relative;
}
.badge-deal {
  position: absolute;
  top: -52px; right: -42px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  font-family: 'Oswald', sans-serif;
  padding: 16px 18px;
  border-radius: 50%;
  font-size: 1rem;
  transform: rotate(15deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  letter-spacing: 0.02em;
}
.quote-card-head h2 { font-size: 1.7rem; margin-bottom: 6px; }
.quote-card-head p { color: var(--text-muted); font-size: 0.95rem; }

.quote-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.field-row { display: flex; gap: 12px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal-2);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
  transition: border 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.15);
}
.field textarea { resize: vertical; }
.hidden-field { position: absolute; left: -9999px; }

/* Thank-you state (replaces form after submit) */
.quote-card-thanks {
  text-align: center;
  padding: 12px 0 4px;
  animation: thanksFade 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes thanksFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.thanks-check {
  width: 76px; height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  box-shadow: 0 10px 28px rgba(255,107,26,0.35);
  animation: checkPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes checkPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.quote-card-thanks h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.thanks-lead {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 18px;
}
.thanks-lead strong { color: var(--charcoal); }
.thanks-urgency {
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.35);
  color: var(--charcoal-2);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-perks { grid-template-columns: 1fr; }
  .badge-deal { right: 10px; top: -42px; }
}
@media (max-width: 480px) {
  .hero { padding: 50px 0 70px; }
  .field-row { flex-direction: column; gap: 14px; }
  .quote-card { padding: 28px 20px; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--charcoal-2);
  color: #fff;
  padding: 26px 0;
  border-top: 3px solid var(--orange);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  color: var(--orange);
  letter-spacing: 0.01em;
}
.trust-item span { font-size: 0.82rem; color: #c5c5c5; }
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust-item:last-child { grid-column: 1 / -1; }
}

/* ---------- Section Heads ---------- */
.section-head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 { margin: 8px 0 14px; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; }
.section-head.light p { color: #b8b8b8; }
.section-head.light .eyebrow { color: var(--orange-light); }

/* ---------- Services ---------- */
.services { padding: 90px 0; background: var(--gray-50); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--orange);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.service-body { padding: 32px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12) 0%, rgba(255,107,26,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.service-body h3 { margin-bottom: 10px; color: var(--charcoal); }
.service-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; flex: 1; }
.card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.card-link:hover { color: var(--orange-dark); }

@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } .services { padding: 70px 0; } }

/* ---------- Why Us ---------- */
.why-us {
  background: var(--charcoal);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.section-head.light h2 { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--charcoal-2);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 26px;
  transition: all 0.25s ease;
}
.why-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 { color: #fff; margin-bottom: 10px; }
.why-card p { color: #bcbcbc; font-size: 0.96rem; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } .why-us { padding: 70px 0; } }

/* ---------- Process ---------- */
.process { padding: 90px 0; background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.process-step {
  text-align: center;
  position: relative;
  padding: 20px 14px 0;
}
.step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(255,107,26,0.35);
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }
.process-cta {
  text-align: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } .process { padding: 70px 0; } }

/* ---------- Gallery ---------- */
.gallery { padding: 90px 0; background: var(--gray-50); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery { padding: 70px 0; } }

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; background: #fff; }
.stars-row {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-top: 12px;
}
.stars-row span {
  color: var(--text-muted);
  font-size: 0.92rem;
  letter-spacing: normal;
  margin-left: 10px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--gray-50);
  border-left: 4px solid var(--orange);
  padding: 26px 28px;
  border-radius: 10px;
}
.t-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { color: var(--charcoal-2); font-size: 1rem; margin-bottom: 14px; font-style: italic; }
.testimonial footer { color: var(--text-muted); font-size: 0.9rem; }
.testimonial footer strong { color: var(--charcoal); }
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } .testimonials { padding: 70px 0; } }

/* ---------- Service Area ---------- */
.service-area {
  padding: 90px 0;
  background: var(--charcoal);
  color: #fff;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.city {
  background: var(--charcoal-2);
  border: 1px solid #333;
  padding: 12px 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #ddd;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.city-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.city-zip { font-size: 0.78rem; color: #aaa; font-weight: 500; }
.city:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.city:hover .city-zip, .city:hover .city-name { color: #fff; }
.area-note { text-align: center; color: #bbb; font-size: 0.98rem; }
.area-note a { color: var(--orange-light); font-weight: 700; }
@media (max-width: 760px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } .service-area { padding: 70px 0; } }
@media (max-width: 460px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- FAQ ---------- */
.faq { padding: 90px 0; background: var(--gray-50); }
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: 0 6px 20px rgba(0,0,0,0.06); border-color: var(--orange); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
.faq-body { padding: 0 22px 20px; }
.faq-body p { color: var(--text-muted); }
@media (max-width: 600px) { .faq { padding: 70px 0; } }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.18) 0%, transparent 40%);
  opacity: 0.7;
  z-index: 0;
}
.final-cta > .container { position: relative; z-index: 1; }
.final-cta h2 { margin-bottom: 16px; color: #fff; max-width: 800px; margin-inline: auto; }
.final-cta > .container > p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-inline: auto;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.final-cta .btn-primary {
  background: #fff;
  color: var(--orange-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.final-cta .btn-primary:hover { background: #f4f4f4; }
.cta-note { font-size: 0.92rem; opacity: 0.85; }
@media (max-width: 600px) { .final-cta { padding: 70px 0; } .cta-buttons .btn { width: 100%; } }

/* ---------- Footer ---------- */
.site-footer { background: #0a0a0a; color: #c4c4c4; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.logo-footer .logo-text strong { color: #fff; }
.footer-brand p { color: #999; font-size: 0.94rem; margin-top: 18px; max-width: 320px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li { font-size: 0.92rem; color: #999; }
.footer-col a:hover { color: var(--orange-light); }
.footer-col strong { color: #c4c4c4; }
.footer-cta { margin-top: 18px; padding: 10px 20px; font-size: 0.88rem; }
.footer-bottom {
  background: #050505;
  padding: 18px 0;
  font-size: 0.84rem;
  color: #777;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--orange-light); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .site-footer { padding-top: 50px; } }

/* ---------- Sticky Mobile Call Button ---------- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
@media (max-width: 720px) {
  .sticky-call { display: block; }
  body { padding-bottom: 60px; }
  .header-cta { display: none; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
