/* ═══════════════════════════════════════════════════════════════
   ROLL OFF DUMPSTER RENTAL, INC.
   main.css — shared stylesheet for all pages
   Design system: dark theme, truck-red (#C8300E), Inter
═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #C8300E;
  --red-dark:   #A32509;
  --orange:     #A84518;
  --orange-lt:  #BE6328;
  --amber:      #D08C50;
  --black:      #0D0D0D;
  --dark:       #1A1A1A;
  --dark-2:     #242424;
  --dark-3:     #2E2E2E;
  --mid:        #4A4A4A;
  --gray:       #7A7A7A;
  --gray-lt:    #B0B0B0;
  --border:     #E5E5E5;
  --offwhite:   #F7F7F5;
  --white:      #FFFFFF;
  --gray-50:    #F9FAFB;
  --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;
  --text:       #1A1A1A;
  --text-muted: #6B6B6B;
  --green:      #16A34A;
  --star:       #F59E0B;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow:     0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════ */
.announcement {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.announcement a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav-wrap {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-center { display: flex; gap: 28px; list-style: none; }
.nav-center a {
  color: var(--gray-lt);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-center a:hover,
.nav-center a.active { color: var(--white); border-color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.nav-phone-icon {
  width: 30px; height: 30px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0   rgba(200,48,14,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(200,48,14,0); }
  100% { box-shadow: 0 0 0 0   rgba(200,48,14,0); }
}
.btn-nav-quote {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.btn-nav-quote:hover { background: var(--red-dark); transform: translateY(-1px); }
@media (max-width: 900px) { .nav-center { display: none; } }
@media (max-width: 600px) { .nav-phone span { display: none; } .logo-sub { display: none; } }

/* ═══════════════════════════════════════
   HOMEPAGE HERO (split layout)
═══════════════════════════════════════ */
.hero {
  background: var(--dark);
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; } }

.hero-left {
  padding: 64px 56px 64px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 1140px) { .hero-left { padding: 56px 40px 56px 24px; } }
@media (max-width: 900px) { .hero-left { padding: 52px 24px 40px; max-width: none; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,32,0.15);
  border: 1px solid rgba(232,93,32,0.35);
  color: var(--amber);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange-lt);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .line-accent { color: var(--orange); display: block; }

.hero-desc {
  font-size: 16px;
  color: #9CA3AF;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
}
.hero-trust-item .check {
  width: 18px; height: 18px;
  background: rgba(200,48,14,0.2);
  border: 1px solid rgba(200,48,14,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-lt);
  font-size: 10px;
  flex-shrink: 0;
}

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Quote form panel */
.hero-right {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px 48px 48px;
  position: relative;
}
.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), var(--orange));
}
@media (max-width: 900px) {
  .hero-right { padding: 40px 24px; }
  .hero-right::before { display: none; }
}
.quote-box { width: 100%; max-width: 400px; }
.quote-header { margin-bottom: 24px; }
.quote-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.quote-header p { font-size: 14px; color: var(--text-muted); }
.callback-promise {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   INNER PAGE HERO
═══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 56px 24px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 20px;
}
.breadcrumb a { color: #6B7280; text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: #374151; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  max-width: 720px;
}
.page-hero h1 span { color: var(--orange); }
.page-hero-desc {
  font-size: 16px;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 32px;
}
.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #9CA3AF;
}
.page-hero-meta-item .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FORM STYLES
═══════════════════════════════════════ */
.form-field { margin-bottom: 13px; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mid);
  margin-bottom: 5px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-field input,
.form-field select { height: 46px; }
.form-field textarea { padding: 12px 14px; min-height: 100px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,48,14,0.1);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 36px; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
  font-size: 13px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(200,48,14,0.35);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,48,14,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.btn-submit-form {
  width: 100%;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  box-shadow: 0 4px 16px rgba(200,48,14,0.3);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.btn-submit-form:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,48,14,0.4); }
.form-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--gray);
  font-size: 12px;
  font-weight: 600;
}
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-call-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.15s;
}
.btn-call-alt:hover { border-color: var(--red); color: var(--red); background: #FFF5F3; }
.btn-white-solid {
  background: var(--white);
  color: var(--red);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-white-solid:hover { background: var(--offwhite); transform: translateY(-2px); }
.btn-outline-white-solid {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-outline-white-solid:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }
.btn-get-quote {
  background: var(--dark);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-get-quote:hover { background: var(--red); }

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band { background: var(--dark-2); padding: 0 24px; }
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid #333;
}
@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .stats-inner { grid-template-columns: 1fr; } }
.stat-item {
  padding: 28px 20px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
}
.stat-num { font-size: 30px; font-weight: 900; color: var(--white); letter-spacing: -1px; line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 5px; font-weight: 500; }
.stat-stars { color: var(--star); font-size: 13px; letter-spacing: 1px; margin-top: 3px; }

/* ═══════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════ */
.section { padding: 80px 24px; }
.section-sm { padding: 52px 24px; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-eyebrow::after { content: ''; flex: 0 0 32px; height: 2px; background: var(--red); border-radius: 2px; }
h2.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}
p.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 52px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.how-section { background: var(--offwhite); }
.steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .steps-track { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (max-width: 480px) { .steps-track { grid-template-columns: 1fr; } }
.step-card {
  background: var(--white);
  padding: 28px 22px;
  position: relative;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.step-card:hover { border-color: var(--red); }
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-lt);
  font-size: 18px;
  z-index: 1;
}
@media (max-width: 900px) { .step-card::after { display: none !important; } }
.step-number {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-number::before {
  content: attr(data-n);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}
.step-icon-lg { font-size: 30px; margin-bottom: 10px; display: block; }
.step-card h3 { font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 7px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   BIN SIZE CARDS (homepage)
═══════════════════════════════════════ */
.bins-section { background: var(--white); }
.bins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .bins-grid { grid-template-columns: 1fr; } }
.bin-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.bin-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(200,48,14,0.12); transform: translateY(-3px); }
.bin-card.featured { border-color: var(--red); border-width: 2px; }
.bin-badge-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px;
}
.bin-hero {
  height: 160px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}
.bin-hero-10 { background: #1d1d1d; }
.bin-hero-25 { background: #5c0f03; }
.bin-hero-40 { background: #2d1400; }
.bin-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.bin-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.bin-size-tag {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}
.bin-body-content { padding: 24px; }
.bin-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 4px; }
.bin-title { font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 4px; }
.bin-dims { font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.bin-use-list { list-style: none; margin-bottom: 20px; }
.bin-use-list li {
  font-size: 13px;
  color: var(--mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bin-use-list li:last-child { border-bottom: none; }
.bin-use-list li::before { content: '→'; color: var(--red); font-weight: 700; font-size: 12px; flex-shrink: 0; }
.bin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.bin-price { font-size: 13px; color: var(--text-muted); }
.bin-price strong { display: block; font-size: 22px; font-weight: 900; color: var(--dark); line-height: 1; letter-spacing: -0.5px; }
.bin-card.featured .btn-get-quote { background: var(--red); }
.bin-card.featured .btn-get-quote:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════
   BIN DETAIL PAGE (inner)
═══════════════════════════════════════ */
.bin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .bin-detail-grid { grid-template-columns: 1fr; } }

.bin-photo-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  background: var(--dark-2);
}
.bin-photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bin-specs-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 20px;
}
.spec-item {
  background: var(--white);
  padding: 16px 20px;
  text-align: center;
}
.spec-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); margin-bottom: 4px; }
.spec-val { font-size: 16px; font-weight: 900; color: var(--dark); letter-spacing: -0.3px; }

.sidebar-quote-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: 92px;
}
.sidebar-quote-box h3 { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 8px; letter-spacing: -0.3px; }
.sidebar-quote-box p { font-size: 14px; color: #9CA3AF; line-height: 1.6; margin-bottom: 24px; }
.sidebar-quote-box .form-field label { color: #9CA3AF; }
.sidebar-quote-box .form-field input,
.sidebar-quote-box .form-field select {
  background: var(--dark-2);
  border-color: #333;
  color: var(--white);
}
.sidebar-quote-box .form-field input:focus,
.sidebar-quote-box .form-field select:focus { border-color: var(--red); }
.sidebar-call-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: #4B5563;
  font-size: 12px;
}
.sidebar-call-divider::before, .sidebar-call-divider::after { content: ''; flex: 1; height: 1px; background: #2A2A2A; }
.sidebar-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all 0.15s;
}
.sidebar-call-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.sidebar-hours { font-size: 11px; color: #4B5563; text-align: center; margin-top: 14px; line-height: 1.6; }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 640px) { .use-cases-grid { grid-template-columns: 1fr; } }
.use-case-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--red);
}
.use-case-card h4 { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.use-case-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   WHY CHOOSE — DARK SECTION
═══════════════════════════════════════ */
.why-section { background: var(--dark); color: var(--white); }
.why-section .section-eyebrow { color: var(--amber); }
.why-section .section-eyebrow::after { background: var(--amber); }
.why-section h2.section-title { color: var(--white); }
.why-section p.section-sub { color: #9CA3AF; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #222;
  border: 1px solid #222;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--dark-2); padding: 36px 32px; transition: background 0.2s; }
.why-card:hover { background: #2A2A2A; }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(200,48,14,0.12);
  border: 1px solid rgba(200,48,14,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 17px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.3px; }
.why-card p { font-size: 14px; color: #9CA3AF; line-height: 1.7; }
.why-card .source-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 12px;
  background: rgba(251,146,60,0.1);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid rgba(251,146,60,0.2);
}

/* Owner panel */
.owner-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 640px) { .owner-panel { grid-template-columns: 1fr; padding: 28px 24px; } }
.owner-avatar-wrap { position: relative; flex-shrink: 0; }
.owner-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.owner-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.owner-verified {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 22px; height: 22px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--dark-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.owner-quote blockquote {
  font-size: 16px;
  color: #D1D5DB;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 14px;
  padding-left: 20px;
  border-left: 3px solid var(--red);
}
.owner-byline { font-size: 13px; font-weight: 700; color: var(--amber); }
.owner-byline span { color: #6B7280; font-weight: 400; }

/* ═══════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════ */
.areas-section { background: var(--offwhite); }
.areas-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .areas-map-wrapper { grid-template-columns: 1fr; } }
.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.15s;
}
.area-link:hover { border-color: var(--red); color: var(--red); background: #FFF5F3; }
.area-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; flex-shrink: 0; opacity: 0.7; }
.areas-callout {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--white);
}
.areas-callout h3 { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 10px; letter-spacing: -0.3px; }
.areas-callout p { font-size: 14px; color: #9CA3AF; line-height: 1.65; margin-bottom: 24px; }
.btn-call-white {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-call-white:hover { background: var(--red-dark); }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews-section { background: var(--white); }
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.reviews-header > div:last-child {
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  min-width: 160px;
}
.big-rating { font-size: 48px; font-weight: 900; color: var(--dark); line-height: 1; letter-spacing: -2px; }
.big-stars { color: var(--star); font-size: 20px; margin: 4px 0; letter-spacing: 2px; }
.big-rating-sub { font-size: 12px; color: var(--gray); font-weight: 500; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(200,48,14,0.08); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.review-stars-sm { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.review-platform {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray);
  background: var(--offwhite);
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.review-text { font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-initials {
  width: 36px; height: 36px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.review-detail { font-size: 12px; color: var(--gray); }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { background: var(--offwhite); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--red); }
.faq-arrow {
  width: 26px; height: 26px;
  background: var(--offwhite);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
  font-size: 14px;
  color: var(--mid);
}
.faq-item.open .faq-arrow { background: var(--red); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 20px 18px; }

.faq-cta {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.faq-cta h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.3px; }
.faq-cta p { font-size: 14px; color: #9CA3AF; line-height: 1.65; margin-bottom: 24px; }
.btn-cta-red {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200,48,14,0.3);
  transition: background 0.15s;
  margin-bottom: 10px;
}
.btn-cta-red:hover { background: var(--red-dark); }
.btn-cta-ghost {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.1); }
.faq-cta-hours { font-size: 12px; color: #6B7280; text-align: center; margin-top: 16px; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: var(--red);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 700px) { .cta-banner-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cta-banner-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 700px) { .cta-banner-buttons { justify-content: center; } }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--black); color: #6B7280; padding: 60px 24px 32px; }
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-logo-wrap { background: #fff; border-radius: 8px; padding: 10px 14px; display: inline-block; margin-bottom: 18px; }
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-tagline { font-size: 13px; color: #4B5563; line-height: 1.65; margin-bottom: 22px; max-width: 280px; }
.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #9CA3AF;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-contact-links a:hover { color: var(--orange); }
.f-icon {
  width: 24px; height: 24px;
  background: #1A1A1A;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13px; color: #4B5563; text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: var(--orange-lt); }
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  border-top: 1px solid #1A1A1A;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #374151;
}

/* ═══════════════════════════════════════
   MOBILE STICKY FOOTER
═══════════════════════════════════════ */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 1px solid #2A2A2A;
  padding: 10px 16px;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.35);
  z-index: 990;
  gap: 10px;
}
@media (max-width: 768px) { .sticky-mobile { display: flex; } }
.sticky-mobile a {
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: opacity 0.15s;
}
.sticky-mobile a:active { opacity: 0.85; }
.m-call-btn { background: var(--red); color: var(--white); }
.m-quote-btn { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.12); color: var(--white); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   CITY PAGE STYLES
═══════════════════════════════════════ */
.city-intro {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .city-intro { grid-template-columns: 1fr; } }
.city-body h2 { font-size: 26px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.2; }
.city-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.city-body ul { list-style: none; margin-bottom: 24px; }
.city-body ul li { font-size: 14px; color: var(--mid); padding: 6px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); }
.city-body ul li:last-child { border-bottom: none; }
.city-body ul li::before { content: '✓'; color: var(--green); font-weight: 800; font-size: 13px; }

.nearby-cities { background: var(--offwhite); }
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.nearby-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: all 0.15s;
}
.nearby-link:hover { border-color: var(--red); color: var(--red); background: #FFF5F3; }

/* ═══════════════════════════════════════
   INLINE QUOTE SECTION (non-hero pages)
═══════════════════════════════════════ */
.quote-section { background: var(--offwhite); }
.quote-section-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .quote-section-inner { padding: 32px 24px; } }
.quote-section-inner h2 { font-size: 28px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 8px; }
.quote-section-inner p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* ═══════════════════════════════════════
   INNER PAGE — SHARED SECTION COMPONENTS
═══════════════════════════════════════ */
.section-light { background: #fff; }
.section-dark { background: var(--dark); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: #9CA3AF; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 12px; }
.section-header p { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ═══════════════════════════════════════
   PHOTO BLOCK (full-width image)
═══════════════════════════════════════ */
.photo-block { position: relative; max-height: 420px; overflow: hidden; background: var(--dark); }
.photo-block-img { width: 100%; height: auto; max-height: 420px; object-fit: cover; display: block; opacity: 0.8; }
.photo-block-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 32px; }
.photo-block-tag {
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   USE CASE CARDS
═══════════════════════════════════════ */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .use-cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .use-cases-grid { grid-template-columns: 1fr; } }

.use-case-card {
  background: var(--gray-50, #F9FAFB);
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.use-case-card:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(200,48,14,0.08); }
.use-case-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.use-case-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.use-case-card p { font-size: 0.875rem; color: var(--text-muted, #6B7280); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   WHY GRID
═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px 24px;
}
.section-light .why-card {
  background: var(--gray-50, #F9FAFB);
  border-color: var(--gray-200, #E5E7EB);
}
.why-icon { font-size: 1.75rem; margin-bottom: 12px; display: block; }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.section-light .why-card h3 { color: var(--dark); }
.why-card p { font-size: 0.875rem; color: #9CA3AF; line-height: 1.65; margin: 0; }
.section-light .why-card p { color: var(--text-muted, #6B7280); }

/* (removed: dead inner-page .bin-card design — render cards now use the homepage .bin-card) */

/* ═══════════════════════════════════════
   STEPS ROW (horizontal)
═══════════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 768px) {
  .steps-row { grid-template-columns: 1fr; }
  .step-sep { display: none; }
}
.step-sep { font-size: 1.5rem; color: var(--gray-300, #D1D5DB); text-align: center; }
.step-num {
  width: 44px; height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 auto 14px;
}
.steps-row .step-card {
  background: var(--gray-50, #F9FAFB);
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}
.steps-row .step-card::after { display: none !important; }
.steps-row .step-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.steps-row .step-card p { font-size: 0.85rem; color: var(--text-muted, #6B7280); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════
   FAQ — NEW STYLE (inner pages)
═══════════════════════════════════════ */
.faq-section { background: var(--gray-50, #F9FAFB); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } }

.faq-main h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 28px; }
.faq-category-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200, #E5E7EB);
}
.faq-item {
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--red); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  font-family: inherit;
  transition: color 0.15s;
}
.faq-btn:hover { color: var(--red); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.875rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.7;
}
.faq-item.open .faq-body { max-height: 400px; }
.faq-body p { padding: 0 20px 18px; margin: 0; }
.faq-body p a { color: var(--red); }

/* ═══════════════════════════════════════
   SIDEBAR CTA CARD
═══════════════════════════════════════ */
.faq-sidebar { position: sticky; top: 100px; }
.sidebar-cta-card {
  background: var(--dark);
  color: var(--white);
  border-radius: 14px;
  padding: 32px;
}
.sidebar-cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-lt, #F97316);
  margin-bottom: 10px;
}
.sidebar-cta-card h3 { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 0.875rem; color: #9CA3AF; line-height: 1.6; margin-bottom: 20px; }

/* ═══════════════════════════════════════
   CTA BANNER — NEW ELEMENT VARIANTS
═══════════════════════════════════════ */
.cta-banner-title { font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: #fff; letter-spacing: -0.5px; margin-bottom: 6px; }
.cta-banner-sub { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
@media (max-width: 700px) { .cta-banner-inner { grid-template-columns: 1fr !important; text-align: center; } .cta-banner-actions { justify-content: center; } }
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--red);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-white:hover { background: var(--gray-100, #F3F4F6); transform: translateY(-2px); }
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════
   CITY CHIPS (inner pages)
═══════════════════════════════════════ */
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.city-chip {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s;
}
.city-chip:hover { background: var(--red); border-color: var(--red); color: #fff; }
.city-chip-more {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ═══════════════════════════════════════
   REVIEWS — SIMPLE (inner pages)
═══════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: #fff;
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 14px;
  padding: 24px;
}
.review-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.875rem; color: var(--text-muted, #6B7280); line-height: 1.7; margin-bottom: 16px; }
.review-author { font-size: 0.8rem; font-weight: 700; color: var(--dark); }

/* ═══════════════════════════════════════
   ABOUT PAGE — OWNER PANEL
═══════════════════════════════════════ */
.owner-panel-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 860px) { .owner-panel-layout { grid-template-columns: 1fr; gap: 40px; } }

.owner-panel-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.owner-panel-text h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 20px; }
.owner-panel-text p { font-size: 0.95rem; color: var(--text-muted, #6B7280); line-height: 1.75; margin-bottom: 18px; }

.owner-blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  background: var(--gray-50, #F9FAFB);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 24px 0;
}
.owner-sig { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.owner-sig .owner-avatar { font-size: 2.5rem; }
.owner-name { font-size: 1rem; font-weight: 800; color: var(--dark); }
.owner-title { font-size: 0.8rem; color: var(--text-muted, #6B7280); }

.owner-panel-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.owner-stat {
  background: var(--dark);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.owner-stat-num { font-size: 2rem; font-weight: 900; color: var(--orange-lt, #F97316); line-height: 1; margin-bottom: 6px; }
.owner-stat-label { font-size: 0.75rem; font-weight: 600; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; }

/* ═══════════════════════════════════════
   FOOTER — NEW INNER PAGE VARIANT
═══════════════════════════════════════ */
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-logo-pill {
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  display: inline-block;
}
.footer-logo-wrap { margin-bottom: 40px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; gap: 24px; } }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: #4B5563;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--orange-lt, #F97316); }

/* Footer social links */
.footer-social { display: flex; gap: 12px; margin-bottom: 28px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 9px;
  color: #9CA3AF;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

/* ═══════════════════════════════════════
   QUOTE MODAL (popup)
═══════════════════════════════════════ */
.qm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.72);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.qm-overlay.open { display: flex; opacity: 1; }
.qm-box {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  padding: 32px 32px 28px;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: qmIn 0.25s ease;
}
@keyframes qmIn { from { transform: translateY(16px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.qm-box::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(to bottom, var(--red), var(--orange));
}
.qm-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--mid);
  transition: background 0.15s, color 0.15s;
}
.qm-close:hover { background: var(--gray-200); color: var(--dark); }
.qm-box h2 { font-size: 22px; font-weight: 900; color: var(--dark); letter-spacing: -0.5px; margin-bottom: 4px; }
.qm-box .qm-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.qm-box .callback-promise { margin-bottom: 18px; }
body.qm-locked { overflow: hidden; }

/* ═══════════════════════════════════════
   MOBILE NAVIGATION (hamburger + drawer)
═══════════════════════════════════════ */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-left: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-right .btn-nav-quote { display: none; } /* lives in the drawer + bottom bar on mobile */
}

.mobile-nav { position: fixed; inset: 0; z-index: 1100; display: none; }
.mobile-nav.open { display: block; }
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.55);
  opacity: 0; transition: opacity 0.28s ease;
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 84%; max-width: 340px;
  background: var(--dark);
  box-shadow: -16px 0 50px rgba(0,0,0,0.45);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-nav-logo { background: #fff; border-radius: 7px; padding: 5px 10px; display: flex; }
.mobile-nav-logo img { height: 30px; width: auto; display: block; }
.mobile-nav-close {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px; color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 2px;
  color: #E5E5E5; text-decoration: none;
  font-size: 16px; font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.15s;
}
.mobile-nav-links a:active, .mobile-nav-links a:hover { color: var(--orange-lt); }
.mobile-nav-links a.active { color: var(--orange-lt); }
.mobile-nav-links a::after { content: '›'; color: #5A5A5A; font-size: 20px; font-weight: 700; }
.mobile-nav-cta { margin-top: auto; padding-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px; border-radius: 10px;
  font-weight: 800; font-size: 16px; text-decoration: none;
  font-family: inherit;
}
.mobile-nav-cta .mn-quote { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(200,48,14,0.35); }
.mobile-nav-cta .mn-call { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; font-weight: 700; }
body.nav-open { overflow: hidden; }

/* Keep page content clear of the fixed bottom CTA bar on mobile */
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .sticky-mobile { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}
