/* ============================================
   ROOT & RESET
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:      #f97316;
  --orange-dk:   #ea6c0e;
  --orange-lt:   #fff7ed;
  --orange-mid:  #fed7aa;
  --black:       #111827;
  --gray-800:    #1f2937;
  --gray-600:    #4b5563;
  --gray-400:    #9ca3af;
  --gray-200:    #e5e7eb;
  --gray-100:    #f3f4f6;
  --gray-50:     #f9fafb;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.1);
  --radius:      12px;
  --radius-sm:   8px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 999;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: top .2s;
}
.skip-link:focus {
  top: 12px;
}

/* ============================================
   UTILITIES
============================================ */
.accent { color: var(--orange); }
.bg-off { background: var(--gray-50); }
.mobile-br { display: none; }

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}

.section-header-block {
  max-width: 600px;
  margin-bottom: 48px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
}

.section-desc strong { color: var(--black); }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 12px 22px;
  transition: all .18s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-100);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-size: 17px;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-lg  { padding: 15px 28px; font-size: 16px; }
.btn-xl  { padding: 18px 36px; font-size: 18px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   HEADER
============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .2s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.header-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-mark {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  font-size: 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 34px; font-size: 14px; }
.logo-words { display: flex; flex-direction: column; line-height: 1.3; }
.logo-name { font-size: 15px; font-weight: 800; color: var(--black); letter-spacing: -.3px; }
.logo-tagline { font-size: 11px; color: var(--gray-600); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--black); background: var(--gray-100); }
.nav-cta { margin-left: 8px; padding: 10px 18px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  gap: 4px;
  z-index: 190;
}
.nav.open .nav-link { padding: 12px 16px; font-size: 16px; border-radius: 8px; }
.nav.open .nav-cta { margin: 8px 0 0; width: 100%; justify-content: center; font-size: 16px; padding: 14px; }

/* ============================================
   HERO
============================================ */
.hero { padding: 120px 24px 80px; background: var(--white); }

.hero-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 60px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-lt);
  border: 1px solid var(--orange-mid);
  color: var(--orange-dk);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  color: var(--black);
  margin-bottom: 18px;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.hero-tags span {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 5px 12px;
  border-radius: 100px;
}

.hero-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hero-card-icon { display: flex; align-items: center; color: var(--orange); }
.hero-card-title { font-size: 18px; font-weight: 800; color: var(--black); letter-spacing: -.3px; }
.hero-card-sub { font-size: 13px; color: var(--gray-600); margin-top: 2px; }
.hero-card-body { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 20px; }

.hero-card-call {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.hero-card-call:hover { color: var(--black); }
.hero-card-note { margin-top: 16px; font-size: 12px; color: var(--gray-600); text-align: center; }

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 20px 24px;
}

.stats-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat { flex: 1; text-align: center; padding: 0 24px; }
.stat-num { font-size: 18px; font-weight: 900; color: var(--black); letter-spacing: -.5px; }
.stat-label { font-size: 12px; color: var(--gray-600); font-weight: 500; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); flex-shrink: 0; }

/* ============================================
   ROADSIDE SECTION
============================================ */
.roadside-section { background: var(--white); border-top: 1px solid var(--gray-200); }

.roadside-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.check-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-800);
  font-weight: 500;
}

.check-yes {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-no {
  display: inline-flex;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-list li:last-child { color: var(--gray-400); }
.roadside-right { display: flex; flex-direction: column; gap: 14px; }

.scenario-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.scenario-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.scenario-icon { display: flex; align-items: center; flex-shrink: 0; color: var(--orange); }
.scenario-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.scenario-text { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ============================================
   SERVICES
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--orange-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon { display: flex; margin-bottom: 12px; color: var(--orange); }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.services-footer-cta {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.services-footer-cta p { font-size: 16px; color: var(--gray-600); }
.services-footer-cta strong { color: var(--black); }

/* ============================================
   HOW IT WORKS
============================================ */
.how-section { background: var(--white); border-top: 1px solid var(--gray-200); }

.steps { display: flex; align-items: center; gap: 0; }

.step {
  flex: 1;
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--black); }
.step p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.step-arrow { color: var(--orange); padding: 0 16px; flex-shrink: 0; }

/* ============================================
   WHY US
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.why-card:hover { border-color: var(--orange-mid); transform: translateY(-2px); }

.why-icon { display: flex; margin-bottom: 14px; color: var(--orange); }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.why-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ============================================
   REVIEWS
============================================ */
.reviews-section {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 38px; height: 38px;
  background: var(--orange-lt);
  border: 2px solid var(--orange-mid);
  color: var(--orange-dk);
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 700; color: var(--black); }
.review-location { font-size: 12px; color: var(--gray-600); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section { background: var(--black); }
.cta-inner { text-align: center; }

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-inner > p { font-size: 17px; color: var(--gray-400); margin-bottom: 32px; }
.cta-alt { margin-top: 16px !important; font-size: 14px !important; color: var(--gray-400) !important; margin-bottom: 0 !important; }
.cta-alt a { color: #fb923c; font-weight: 600; }
.cta-alt a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--white); border-top: 1px solid var(--gray-200); padding: 40px 24px; }

.footer-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand .logo { justify-content: center; margin-bottom: 8px; }
.footer-tagline-text { font-size: 13px; color: var(--gray-600); }

.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 14px; color: var(--gray-600); font-weight: 500; transition: color .15s; }
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 12px; color: var(--gray-600); }

/* ============================================
   SERVICE AREA
============================================ */
.area-section { background: var(--white); border-top: 1px solid var(--gray-200); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.area-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.area-tag:hover {
  border-color: var(--orange-mid);
  background: var(--orange-lt);
}

.area-hours {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--orange-lt);
  border: 1px solid var(--orange-mid);
  border-radius: var(--radius);
  padding: 18px 24px;
}

.area-hours-icon { display: flex; color: var(--orange); flex-shrink: 0; }
.area-hours-title { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.area-hours-text { font-size: 14px; color: var(--gray-600); }

/* ============================================
   FAQ
============================================ */
.faq-section { border-top: 1px solid var(--gray-200); }

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}

.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  padding: 20px 32px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; content: ''; }

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-600);
  transition: transform .2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  padding: 0 0 20px;
}

/* ============================================
   MOBILE STICKY BAR
============================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  padding: 12px 16px;
  gap: 10px;
}

.mobile-bar-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--gray-100);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-family: var(--font);
}

.mobile-bar-text {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: clamp(38px, 8vw, 56px); }
  .hero-card { max-width: 480px; }
  .roadside-inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 0; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); padding: 12px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section-wrap { padding: 56px 16px; }
  .hero { padding: 100px 16px 56px; }
  .hero-text h1 { font-size: clamp(36px, 10vw, 48px); letter-spacing: -1.5px; }
  .mobile-br { display: block; }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-wrap { flex-wrap: wrap; gap: 12px; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 calc(50% - 12px); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-footer-cta { flex-direction: column; text-align: center; }
  .services-footer-cta .btn { width: 100%; justify-content: center; }
  .footer-links { gap: 16px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .area-hours { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 400px) {
  .why-grid { grid-template-columns: 1fr; }
}
