/* ============================================================
   MR. DIRTY DUCTS — LANDING PAGE STYLES
   Brand: Navy #0F2A4F · Orange #F05A22 · Yellow #FFC107 · Light Blue #97C0E6
   Fonts: Poppins (headlines), Open Sans (body)
   Built mobile-first — desktop styles inside min-width media queries
   ============================================================ */

/* Fonts loaded via <link> in index.html (faster: parallel with CSS download) */

:root {
  --navy:        #0F2A4F;
  --navy-dark:   #081A33;
  --navy-mid:    #1a3b66;
  --orange:      #F05A22;
  --orange-dark: #D44812;
  --yellow:      #FFC107;
  --light-blue:  #97C0E6;
  --gray-bg:     #F5F7FA;
  --gray-line:   #E3E7ED;
  --text:        #1A2435;
  --muted:       #5A6473;
  --white:       #ffffff;
  --shadow-sm:   0 2px 6px rgba(10,30,60,.06);
  --shadow-md:   0 8px 24px rgba(10,30,60,.1);
  --shadow-lg:   0 20px 50px rgba(10,30,60,.15);
  --radius:      10px;
  --transition:  .25s ease;
}

/* ============ RESET / BASE ============ */
*,*::before,*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: #fff;
  overflow-x: hidden;
  min-width: 320px;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
svg { flex-shrink: 0; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ============ HEADER (mobile-first) ============ */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo-wrap:hover { transform: scale(1.03); }
.logo-img { width: 44px; height: auto; }
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: .95;
  color: var(--yellow);
  text-shadow: 1px 1px 0 var(--navy), -1px -1px 0 var(--navy), 1px -1px 0 var(--navy), -1px 1px 0 var(--navy);
  letter-spacing: .3px;
  white-space: nowrap;
}

.main-nav { display: none; }

.header-phone {
  margin-left: auto;
  flex-shrink: 0;
}
.phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.phone-pill:hover { transform: translateY(-1px); }
.phone-icon {
  width: 36px; height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.phone-pill:hover .phone-icon { background: var(--orange); }
.phone-text { line-height: 1.1; }
.phone-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}
.phone-text small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  flex-shrink: 0;
}
.mobile-menu-toggle span {
  width: 22px; height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(180deg, #fff 0%, #f2f6fb 100%);
  padding: 30px 0 24px;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -.4px;
}
.h1-dark { display: block; color: var(--navy); font-weight: 800; }
.h1-accent { display: block; color: var(--orange); font-weight: 800; margin-top: 6px; }
.hero-lede {
  font-size: 15px;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 22px;
  padding: 0 4px;
}
.hero-lede .accent { color: var(--orange); font-weight: 700; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
  width: 100%;
}
.btn span { display: inline-block; }
.btn small {
  display: block;
  font-weight: 500;
  font-size: 12px;
  opacity: .92;
  margin-top: 2px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(240,90,34,.35);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(240,90,34,.45);
}
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15,42,79,.3);
}
.btn-dark { background: var(--navy); color: #fff; padding: 12px 20px; width: auto; }
.btn-dark:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-dark.small { padding: 10px 18px; font-size: 12px; }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: #fff2eb; transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-full { width: 100%; padding: 16px; font-size: 14px; }

/* Hero image */
.hero-image { width: 100%; }
.hero-img-placeholder {
  background: linear-gradient(135deg, #c9deef, #97c0e6);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============ BENEFITS STRIP ============ */
.benefits-strip {
  background: #fff;
  padding: 22px 0;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 1.35;
  width: 100%;
  max-width: 340px;
}
.benefit p { margin: 0; flex: 1; }
.benefit strong { color: var(--navy); }
.benefit .accent { color: var(--orange); font-weight: 700; }
.benefit-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.benefit:hover .benefit-icon { background: var(--orange); transform: rotate(-5deg) scale(1.05); }
.benefit-divider { display: none; }

/* ============ SERVICES ============ */
.services-section {
  background: var(--navy);
  padding: 44px 0;
  color: #fff;
}
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 6px;
  color: var(--navy);
  letter-spacing: -.2px;
  line-height: 1.2;
}
.section-heading.light { color: #fff; }
.section-heading .accent-yellow { color: var(--yellow); }
.section-heading .accent { color: var(--orange); }
.section-sub {
  text-align: center;
  margin: 0 0 26px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.section-sub.light { color: rgba(255,255,255,.85); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
/* Card is a flex column; no horizontal padding so the media wrapper fills edge-to-edge */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  color: var(--text);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
/* Yellow accent bar that slides in on hover */
.service-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease;
}
.service-card:hover::after { transform: scaleX(1); }

/* Image wrapper: fixed aspect ratio, clips the image cleanly to card edges */
.service-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #d1e2f2, #97c0e6);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-media img { transform: scale(1.05); }

/* Body (title + copy) */
.service-body {
  padding: 22px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  color: var(--navy);
  letter-spacing: .3px;
}
.service-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ============ WHY CHOOSE ============ */
.why-section { background: var(--gray-bg); padding: 44px 0; }
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.why-copy { text-align: center; width: 100%; }
.why-copy .section-heading { text-align: center; font-size: 24px; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 18px auto 22px;
  text-align: left;
  max-width: 340px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  transition: var(--transition);
}
.why-list li:hover { transform: translateX(4px); }
.check {
  width: 22px; height: 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-truck { width: 100%; max-width: 440px; }
.truck-placeholder {
  background: linear-gradient(135deg, #c9deef, #97c0e6);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transition: var(--transition);
}
.truck-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}
.why-badges hr { width: 100%; border: 0; border-top: 1px solid var(--gray-line); margin: 0; }
.badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  transition: var(--transition);
}
.badge-card:hover { transform: translateX(4px); }
.badge-card strong { display: block; font-size: 14px; line-height: 1.2; }
.badge-card small { display: block; font-size: 9px; font-weight: 600; letter-spacing: .5px; color: var(--muted); margin-top: 4px; }
.nadca-shield, .home-icon { color: var(--navy); flex-shrink: 0; }

/* ============ REVIEWS / BEFORE-AFTER ============ */
.reviews-section { padding: 36px 0; background: #fff; }
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.before-after {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}
.ba-card { position: relative; flex: 1; min-width: 0; }
.ba-label {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: .3px;
}
.ba-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #8b6f4a, #5a4632);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  transition: var(--transition);
  width: 100%;
}
.ba-img.clean { background: linear-gradient(135deg, #d4dae0, #9aa3ac); color: rgba(0,0,0,.5); }
.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-card:hover .ba-img { transform: scale(1.02); }
.ba-arrow { font-size: 28px; color: var(--orange); font-weight: 700; flex-shrink: 0; }

.reviews-content .section-heading { text-align: center; font-size: 22px; }
.reviews-row { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.review {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 0;
  transition: var(--transition);
}
.review:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 6px; }
.review p { font-size: 13px; color: var(--text); margin: 0 0 8px; line-height: 1.5; }
.review cite { font-style: normal; font-weight: 700; font-size: 13px; color: var(--navy); }

.reviews-cta { text-align: center; margin-top: 18px; }

/* ============ FAQ + SERVICE AREA ============ */
.faq-section { background: var(--gray-bg); padding: 40px 0; }
.faq-grid { display: flex; flex-direction: column; gap: 28px; }

.faq-col .section-heading {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: 0;
  line-height: 1.3;
}
.faq-list {
  background: var(--navy);
  padding: 0 14px 14px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.faq-item {
  background: var(--navy-mid);
  border-radius: 6px;
  margin-bottom: 8px;
  transition: var(--transition);
}
.faq-item:hover { background: #234a7f; }
.faq-item summary {
  list-style: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chev { transition: var(--transition); color: var(--orange); font-size: 13px; flex-shrink: 0; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item p {
  padding: 0 14px 14px;
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  line-height: 1.55;
}

.service-area-col { width: 100%; }
.service-area-col .area-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}
.service-area-col .area-heading .accent { color: var(--orange); }
.service-area-col > p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin: 0 0 18px;
  color: var(--navy);
}
.area-list ul { list-style: none; padding: 0; margin: 0; }
.area-list li {
  padding: 4px 0;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.area-list li:hover { color: var(--orange); transform: translateX(3px); }

/* ============ BOTTOM CTA ============ */
.bottom-cta { background: var(--orange); padding: 24px 0; color: #fff; }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  text-align: center;
}
.cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cta-text > svg { flex-shrink: 0; }
.cta-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 18px; line-height: 1.2; }
.cta-text small { display: block; font-size: 13px; opacity: .95; }
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: #fff; padding: 28px 0; font-size: 13px; }
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 42px; height: auto; }
.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 1px 1px 0 var(--navy), -1px -1px 0 var(--navy), 1px -1px 0 var(--navy), -1px 1px 0 var(--navy);
  text-align: left;
}
.footer-nav strong,
.footer-social strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.footer-nav > div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a { transition: var(--transition); }
.footer-nav a:hover { color: var(--orange); }
.social-icons { display: flex; gap: 10px; justify-content: center; }
.social {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social:hover { background: var(--orange); transform: translateY(-2px); }
.footer-copy {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 18px;
  width: 100%;
}
.footer-copy p { margin: 0; }

/* ============ MODAL ============ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.modal.open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,.7);
  backdrop-filter: blur(3px);
}
.modal-box {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
  width: 100%;
  max-height: calc(100vh - 24px);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 8px; right: 10px;
  font-size: 30px;
  color: var(--muted);
  width: 36px; height: 36px;
  line-height: 1;
  transition: var(--transition);
  z-index: 2;
}
.modal-close:hover { color: var(--orange); transform: rotate(90deg); }
.modal-header {
  text-align: center;
  padding: 22px 22px 14px;
  border-bottom: 1px solid var(--gray-line);
}
.modal-header img { margin: 0 auto 8px; width: 44px; height: auto; }
.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.2;
}
.modal-header p { color: var(--muted); font-size: 13px; margin: 0; }

.booking-form { padding: 18px 20px 22px; }
.form-row { margin-bottom: 12px; }
.form-row.two-col { display: grid; grid-template-columns: 1fr; gap: 12px; }
.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 11px 12px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: #fafbfd;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.booking-form select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235A6473'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 36px;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(240,90,34,.15);
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0;
  pointer-events: none;
}
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin: 10px 0 0; }
.form-error { color: #c0392b; font-size: 13px; text-align: center; margin: 10px 0 0; min-height: 18px; }
.btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.is-submitting .btn-label { opacity: .6; }
.is-submitting .btn-spinner { display: inline-block; }

/* ============================================================
   SMALL PHONE (up to 374px)
   ============================================================ */
@media (max-width: 374px) {
  .header-inner { gap: 6px; padding: 10px 12px; }
  .logo-img { width: 40px; }
  .logo-text { font-size: 12px; }
  .phone-icon { width: 32px; height: 32px; }
  .phone-text strong { font-size: 13px; }
  .phone-text small { font-size: 9px; }
  .hero-copy h1 { font-size: 26px; }
  .section-heading { font-size: 20px; }
  .area-list { grid-template-columns: 1fr; }
}

/* ============================================================
   LARGE PHONE / PHABLET (480px+)
   ============================================================ */
@media (min-width: 480px) {
  .hero-copy h1 { font-size: 34px; }
  .section-heading { font-size: 26px; }
  .hero-ctas { flex-direction: row; max-width: 480px; }
  .hero-ctas .btn { width: auto; flex: 1; }
  .cta-buttons { flex-direction: row; max-width: 520px; }
  .cta-buttons .btn { flex: 1; }
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 12px 24px; gap: 14px; }
  .logo-img { width: 50px; }
  .logo-text { font-size: 16px; }
  .phone-icon { width: 40px; height: 40px; }
  .phone-text strong { font-size: 16px; }
  .phone-text small { font-size: 11px; }

  .hero { padding: 40px 0 30px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-lede { font-size: 16px; }

  .benefits-grid { flex-direction: row; justify-content: space-around; gap: 20px; }
  .benefit { max-width: 280px; }

  .services-section { padding: 56px 0; }
  .section-heading { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .why-section { padding: 56px 0; }
  .why-badges { flex-direction: row; max-width: 100%; justify-content: center; gap: 20px; }
  .why-badges hr { display: none; }

  .reviews-row { flex-direction: row; }
  .review { flex: 1; }

  .faq-section { padding: 56px 0; }
  .faq-col .section-heading { font-size: 18px; }

  .cta-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .cta-text { flex-direction: row; text-align: left; align-items: center; gap: 14px; }
  .cta-buttons { width: auto; flex-shrink: 0; margin: 0; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-nav > div { justify-content: flex-start; }
  .footer-copy { text-align: right; border: 0; padding: 0; width: auto; }
}

/* ============================================================
   DESKTOP (960px+)
   ============================================================ */
@media (min-width: 960px) {
  .mobile-menu-toggle { display: none; }

  .main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    margin-right: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
  }
  .main-nav a {
    position: relative;
    padding: 6px 0;
    color: var(--navy);
    transition: color var(--transition);
  }
  .main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
  }
  .main-nav a:hover, .main-nav a.active { color: var(--orange); }
  .main-nav a.active::after,
  .main-nav a:hover::after { transform: scaleX(1); }
  .header-phone { margin-left: 0; }

  .hero { padding: 50px 0 40px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }
  .hero-copy { text-align: left; }
  .hero-copy h1 { font-size: 52px; }
  .hero-lede { margin: 0 0 28px; padding: 0; }
  .hero-ctas { flex-direction: row; max-width: 100%; margin: 0; justify-content: flex-start; }
  .hero-ctas .btn { width: auto; flex: 0 1 auto; text-align: left; }
  .hero-img-placeholder { aspect-ratio: 16 / 10; font-size: 18px; }

  .benefits-strip { padding: 26px 0; }
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
  }
  .benefit { max-width: 100%; font-size: 13px; }
  .benefit-icon { width: 52px; height: 52px; }
  .benefit-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--gray-line);
  }

  .services-section { padding: 60px 0; }
  .section-heading { font-size: 34px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .service-media { aspect-ratio: 4 / 3; }

  .why-section { padding: 60px 0; }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    flex-direction: initial;
  }
  .why-copy { text-align: left; }
  .why-copy .section-heading { text-align: left; font-size: 28px; }
  .why-list { margin: 22px 0 26px; max-width: 100%; }
  .why-truck { max-width: 100%; }
  .why-badges { flex-direction: column; max-width: 100%; gap: 14px; }
  .why-badges hr { display: block; }

  .reviews-section { padding: 50px 0; }
  .reviews-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
    flex-direction: initial;
  }
  .before-after { max-width: 100%; }
  .reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .reviews-content .section-heading { font-size: 26px; }

  .faq-section { padding: 50px 0; }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: start;
    flex-direction: initial;
  }

  .bottom-cta { padding: 22px 0; }

  .site-footer { padding: 22px 0; }
  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 30px;
    align-items: center;
    flex-direction: initial;
    flex-wrap: nowrap;
  }
  .footer-logo img { width: 48px; }
  .footer-copy { text-align: right; }
}

/* ============ PERFORMANCE ============ */
/* Skip rendering of deep below-fold sections until they're near the viewport.
   The reserved intrinsic size prevents scrollbar/layout shift. */
.reviews-section,
.faq-section,
.bottom-cta,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ============ A11Y ============ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* Mobile nav drawer (hamburger toggle) */
.main-nav.open {
  display: flex !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  gap: 0;
  padding: 8px 20px 16px;
  box-shadow: var(--shadow-md);
  z-index: 99;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.main-nav.open a {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-line);
  color: var(--navy);
  letter-spacing: .5px;
}
.main-nav.open a:last-child { border-bottom: 0; }
.main-nav.open a:hover, .main-nav.open a.active { color: var(--orange); }
