/* ============================================================
   HEARTLAND AUTO TRANSPORT — HOMEPAGE REDESIGN "Trusted Route"
   Scoped with hx- prefix. Header/footer keep site styles.
   ============================================================ */

:root {
  --hx-maroon: #7a1f2b;
  --hx-maroon-deep: #5a1520;
  --hx-maroon-ink: #370c12;
  --hx-gold: #c8901f;
  --hx-gold-bright: #f4c430;
  --hx-cream: #faf8f4;
  --hx-sand: #f3ede4;
  --hx-ink: #1b1613;
  --hx-slate: #675f58;
  --hx-line: #e9e3da;
  --hx-white: #ffffff;
  --hx-success: #2f9e6f;
  --hx-shadow-sm: 0 2px 8px rgba(40, 20, 15, 0.06);
  --hx-shadow: 0 10px 30px rgba(40, 20, 15, 0.10);
  --hx-shadow-lg: 0 24px 60px rgba(40, 20, 15, 0.16);
  --hx-radius: 18px;
  --hx-radius-sm: 12px;
}

/* ---- Fonts + base ---- */
.hx-main {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--hx-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
.hx-main * { box-sizing: border-box; }
.hx-wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.hx-wrap-narrow { max-width: 940px; margin: 0 auto; padding: 0 28px; }

.hx-main h1, .hx-main h2, .hx-main h3, .hx-main h4 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--hx-ink);
  margin: 0;
}

/* ---- Section rhythm ---- */
.hx-section { padding: 92px 0; position: relative; }
.hx-section--cream { background: var(--hx-cream); }
.hx-section--sand { background: var(--hx-sand); }
.hx-section--tight { padding: 64px 0; }

/* ---- Eyebrow ---- */
.hx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hx-maroon);
  margin-bottom: 16px;
}
.hx-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--hx-gold);
}

/* ---- Section heading block ---- */
.hx-head { max-width: 680px; }
.hx-head--center { max-width: 720px; margin: 0 auto; text-align: center; }
.hx-head--center .hx-eyebrow::before { display: none; }
.hx-head--center .hx-eyebrow { justify-content: center; }
.hx-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}
.hx-head p {
  font-size: 18px;
  color: var(--hx-slate);
  line-height: 1.65;
  margin: 0;
}

/* ---- Buttons ---- */
.hx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.hx-btn--gold {
  background: var(--hx-gold-bright);
  color: var(--hx-maroon-ink);
  box-shadow: 0 8px 22px rgba(244, 196, 48, 0.34);
}
.hx-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(244, 196, 48, 0.44); }
.hx-btn--maroon {
  background: var(--hx-maroon);
  color: #fff;
  box-shadow: 0 8px 22px rgba(122, 31, 43, 0.28);
}
.hx-btn--maroon:hover { transform: translateY(-2px); background: var(--hx-maroon-deep); }
.hx-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.hx-btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.hx-btn--outline {
  background: #fff;
  color: var(--hx-maroon);
  border: 1.5px solid var(--hx-line);
}
.hx-btn--outline:hover { border-color: var(--hx-maroon); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hx-hero {
  position: relative;
  padding: 0;
  background:
    linear-gradient(104deg, rgba(23,10,8,0.94) 0%, rgba(58,16,20,0.88) 34%, rgba(90,21,32,0.62) 58%, rgba(58,16,20,0.28) 78%, rgba(23,10,8,0.15) 100%),
    url('/images/hero-truck.jpg');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}
.hx-hero-inner {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 56px;
  align-items: center;
  padding: 14px 0 18px;
}
.hx-hero-copy { color: #fff; }
.hx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hx-gold-bright);
  margin-bottom: 24px;
}
.hx-hero-badge svg { width: 15px; height: 15px; }
.hx-hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.02;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hx-hero h1 .accent { color: var(--hx-gold-bright); }
.hx-hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 30px;
}
.hx-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.hx-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.hx-chip svg { width: 17px; height: 17px; color: var(--hx-gold-bright); flex-shrink: 0; }
.hx-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hx-hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
}
.hx-hero-phone svg { width: 20px; height: 20px; color: var(--hx-gold-bright); }
.hx-hero-phone span small { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; }

/* Quote widget — bare iframe, no wrapper */
#quote {
  width: 100%;
  height: 590px;
  border: 0;
  display: block;
  border-radius: var(--hx-radius);
  box-shadow: var(--hx-shadow-lg);
  background: #fff;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.hx-trust {
  background: var(--hx-maroon-ink);
  padding: 0;
}
.hx-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hx-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hx-trust-item:last-child { border-right: none; }
.hx-trust-item svg { width: 30px; height: 30px; color: var(--hx-gold-bright); flex-shrink: 0; }
.hx-trust-item strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hx-trust-item span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ============================================================
   HOW IT WORKS (signature route motif)
   ============================================================ */
.hx-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.hx-step { position: relative; padding: 0 20px; text-align: center; }
/* route connector line */
.hx-step::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--hx-gold) 45%, transparent 45%);
  background-size: 12px 2px;
  z-index: 0;
}
.hx-step:last-child::before { display: none; }
.hx-step-dot {
  position: relative;
  z-index: 1;
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--hx-line);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--hx-shadow-sm);
}
.hx-step-dot svg { width: 30px; height: 30px; color: var(--hx-maroon); }
.hx-step-num {
  position: absolute;
  top: -8px; right: 50%;
  transform: translateX(34px);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--hx-gold-bright);
  color: var(--hx-maroon-ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hx-step h3 { font-size: 20px; margin-bottom: 10px; }
.hx-step p { font-size: 15px; color: var(--hx-slate); line-height: 1.6; margin: 0; }

/* ============================================================
   WHAT WE SHIP
   ============================================================ */
.hx-ship-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.hx-ship-card {
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius-sm);
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hx-ship-card:hover { transform: translateY(-5px); box-shadow: var(--hx-shadow); border-color: transparent; }
.hx-ship-card svg { width: 44px; height: 44px; color: var(--hx-maroon); margin-bottom: 12px; }
.hx-ship-card span { display: block; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; color: var(--hx-ink); }

/* ============================================================
   SERVICES (3 image cards)
   ============================================================ */
.hx-serv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.hx-serv-card {
  background: #fff;
  border-radius: var(--hx-radius);
  overflow: hidden;
  box-shadow: var(--hx-shadow-sm);
  border: 1px solid var(--hx-line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.hx-serv-card:hover { transform: translateY(-6px); box-shadow: var(--hx-shadow-lg); }
.hx-serv-img { height: 210px; overflow: hidden; position: relative; }
.hx-serv-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hx-serv-card:hover .hx-serv-img img { transform: scale(1.05); }
.hx-serv-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--hx-gold-bright);
  color: var(--hx-maroon-ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.hx-serv-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.hx-serv-body h3 { font-size: 22px; margin-bottom: 10px; color: var(--hx-maroon); }
.hx-serv-body p { font-size: 15px; color: var(--hx-slate); line-height: 1.62; margin: 0 0 18px; flex: 1; }
.hx-serv-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14.5px;
  color: var(--hx-maroon); text-decoration: none;
}
.hx-serv-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.hx-serv-link:hover svg { transform: translateX(4px); }

/* ============================================================
   COVERAGE (map + stats)
   ============================================================ */
.hx-cov-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hx-cov-map img { width: 100%; height: auto; display: block; }
.hx-cov-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 34px;
}
.hx-stat {
  background: #fff;
  border: 1px solid var(--hx-line);
  border-left: 4px solid var(--hx-gold);
  border-radius: var(--hx-radius-sm);
  padding: 22px 24px;
}
.hx-stat strong {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--hx-maroon);
  line-height: 1;
  margin-bottom: 6px;
}
.hx-stat span { font-size: 14px; color: var(--hx-slate); }

/* ============================================================
   CITIES GRID
   ============================================================ */
.hx-cities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.hx-city {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: all 0.18s ease;
}
.hx-city:hover { border-color: var(--hx-maroon); background: var(--hx-maroon); transform: translateY(-3px); }
.hx-city-name { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px; color: var(--hx-ink); }
.hx-city-pop { font-size: 12px; color: var(--hx-slate); }
.hx-city:hover .hx-city-name, .hx-city:hover .hx-city-pop { color: #fff; }
.hx-cities-more { text-align: center; margin-top: 32px; font-size: 15px; color: var(--hx-slate); }
.hx-cities-more a { color: var(--hx-maroon); font-weight: 700; text-decoration: none; }

/* ============================================================
   WHY US (dark moment)
   ============================================================ */
.hx-why {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(200,144,31,0.14), transparent 60%),
    linear-gradient(150deg, var(--hx-maroon) 0%, var(--hx-maroon-ink) 100%);
  color: #fff;
}
.hx-why .hx-head h2 { color: #fff; }
.hx-why .hx-head p { color: rgba(255,255,255,0.82); }
.hx-why .hx-eyebrow { color: var(--hx-gold-bright); }
.hx-why .hx-eyebrow::before { background: var(--hx-gold-bright); }
.hx-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.hx-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--hx-radius);
  padding: 30px 28px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hx-why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.hx-why-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(244,196,48,0.16);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hx-why-icon svg { width: 26px; height: 26px; color: var(--hx-gold-bright); }
.hx-why-card h3 { color: #fff; font-size: 19px; margin-bottom: 10px; }
.hx-why-card p { font-size: 14.5px; color: rgba(255,255,255,0.78); line-height: 1.6; margin: 0; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.hx-price-card {
  background: #fff;
  border-radius: var(--hx-radius);
  box-shadow: var(--hx-shadow);
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--hx-line);
}
.hx-price-table { width: 100%; border-collapse: collapse; }
.hx-price-table thead {
  background: linear-gradient(135deg, var(--hx-maroon) 0%, var(--hx-maroon-deep) 100%);
}
.hx-price-table th {
  padding: 18px 24px;
  text-align: left;
  font-family: 'Archivo', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.hx-price-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--hx-line);
  font-size: 15.5px;
  color: var(--hx-ink);
}
.hx-price-table tbody tr:last-child td { border-bottom: none; }
.hx-price-table tbody tr:nth-child(even) { background: var(--hx-cream); }
.hx-price-table td:first-child { font-family: 'Archivo', sans-serif; font-weight: 700; color: var(--hx-maroon); }
.hx-price-table td:nth-child(3) { font-weight: 700; }
.hx-price-note { text-align: center; margin-top: 22px; font-size: 14px; color: var(--hx-slate); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.hx-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.hx-test-card {
  background: #fff;
  border-radius: var(--hx-radius);
  padding: 32px 30px;
  box-shadow: var(--hx-shadow-sm);
  border: 1px solid var(--hx-line);
  position: relative;
}
.hx-test-quote {
  position: absolute; top: 22px; right: 26px;
  font-family: 'Archivo', sans-serif; font-size: 64px; font-weight: 800;
  color: var(--hx-sand); line-height: 1;
}
.hx-test-stars { color: var(--hx-gold-bright); font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.hx-test-card blockquote {
  font-size: 16px; line-height: 1.65; color: var(--hx-ink);
  margin: 0 0 22px; position: relative; z-index: 1;
}
.hx-test-who { display: flex; align-items: center; gap: 13px; }
.hx-test-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--hx-maroon), var(--hx-maroon-deep));
  color: #fff; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hx-test-who strong { display: block; font-family: 'Archivo', sans-serif; font-size: 15px; color: var(--hx-ink); }
.hx-test-who span { font-size: 13px; color: var(--hx-slate); }

/* ============================================================
   FAQ
   ============================================================ */
.hx-faq-list { max-width: 820px; margin: 48px auto 0; }
.hx-faq-item {
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.hx-faq-item[open] { box-shadow: var(--hx-shadow-sm); border-color: rgba(122,31,43,0.3); }
.hx-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--hx-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hx-faq-item summary::-webkit-details-marker { display: none; }
.hx-faq-item summary::after {
  content: "";
  width: 20px; height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a1f2b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.25s ease;
}
.hx-faq-item[open] summary::after { transform: rotate(180deg); }
.hx-faq-item .hx-faq-a { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.68; color: var(--hx-slate); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.hx-cta {
  background:
    radial-gradient(800px 400px at 20% 120%, rgba(200,144,31,0.16), transparent 60%),
    linear-gradient(135deg, var(--hx-maroon-deep) 0%, var(--hx-maroon-ink) 100%);
  color: #fff;
  text-align: center;
}
.hx-cta h2 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.hx-cta p { font-size: 19px; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 34px; }
.hx-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hx-cta-phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; }
.hx-cta-phone svg { width: 22px; height: 22px; color: var(--hx-gold-bright); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hx-hero-inner { grid-template-columns: 54fr 46fr; gap: 40px; }
  .hx-ship-grid { grid-template-columns: repeat(3, 1fr); }
  .hx-cities-grid { grid-template-columns: repeat(4, 1fr); }
  .hx-serv-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hx-why-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-test-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 860px) {
  .hx-section { padding: 60px 0; }
  .hx-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 44px;
  }
  /* Flatten hero-copy so widget slots RIGHT after the headline */
  .hx-hero-copy { display: contents; }
  .hx-hero-badge { order: 1; }
  .hx-hero h1 { order: 2; font-size: clamp(30px, 8vw, 42px); margin-bottom: 0; }
  #quote { order: 3; max-width: 460px; margin: 0 auto; width: 100%; height: 590px; }
  .hx-hero-sub { order: 4; margin-bottom: 0; }
  .hx-hero-chips { order: 5; margin-bottom: 0; }
  .hx-hero-cta { order: 6; }
  .hx-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .hx-trust-item:nth-child(2) { border-right: none; }
  .hx-trust-item:nth-child(1), .hx-trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  /* Steps stack vertically with a vertical route line */
  .hx-steps { grid-template-columns: 1fr; gap: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
  .hx-step { text-align: left; display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: start; padding: 0; }
  .hx-step::before { display: none; }
  .hx-step-dot { margin: 0; }
  .hx-step-num { right: auto; left: 42px; transform: none; }
  .hx-ship-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-cov-inner { grid-template-columns: 1fr; gap: 36px; }
  .hx-why-grid { grid-template-columns: 1fr; }
  .hx-cities-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-price-table { font-size: 13px; }
  .hx-price-table th, .hx-price-table td { padding: 13px 14px; }
}

@media (max-width: 480px) {
  .hx-wrap, .hx-wrap-narrow { padding: 0 18px; }
  #quote { height: 590px; }
  .hx-ship-grid { grid-template-columns: repeat(2, 1fr); }
  .hx-price-table th:nth-child(2), .hx-price-table td:nth-child(2) { display: none; }
}

/* ============================================================
   SERVICE PAGE ADDITIONS (Open Auto Transport, etc.)
   ============================================================ */

/* Icon service cards (no image) */
.hx-icards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 52px;
}
.hx-icard {
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius);
  padding: 34px 30px;
  box-shadow: var(--hx-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.hx-icard:hover { transform: translateY(-6px); box-shadow: var(--hx-shadow-lg); }
.hx-icard-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hx-maroon) 0%, var(--hx-maroon-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hx-icard-icon svg { width: 28px; height: 28px; color: var(--hx-gold-bright); }
.hx-icard h3 { font-size: 21px; color: var(--hx-maroon); margin-bottom: 12px; }
.hx-icard p { font-size: 15px; color: var(--hx-slate); line-height: 1.65; margin: 0; }

/* Benefit checklist */
.hx-benefits {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}
.hx-benefits li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.6;
  color: #374151;
}
.hx-benefits li svg {
  width: 24px; height: 24px;
  color: var(--hx-success);
  flex-shrink: 0;
  margin-top: 1px;
}
.hx-benefits li strong { color: var(--hx-maroon); }

/* Areas served */
.hx-areas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.hx-area-card {
  background: #fff;
  border: 1px solid var(--hx-line);
  border-left: 4px solid var(--hx-gold);
  border-radius: var(--hx-radius-sm);
  padding: 22px 26px;
}
.hx-area-card h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--hx-maroon);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hx-area-card p { font-size: 15px; color: var(--hx-slate); line-height: 1.55; margin: 0; }
.hx-areas-note {
  text-align: center;
  margin-top: 28px;
  font-size: 16px;
  color: var(--hx-slate);
}
.hx-areas-note strong { color: var(--hx-maroon); }

/* Service hero — a touch more top padding since no big header overlap issue */
/* service heroes inherit homepage hero spacing */

/* Prose lead paragraph under section heads */
.hx-lead { font-size: 17px; color: var(--hx-slate); line-height: 1.7; max-width: 820px; margin: 0 auto 8px; }

@media (max-width: 860px) {
  .hx-icards { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hx-benefits { grid-template-columns: 1fr; }
  .hx-areas { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTENT-RICH SERVICE PAGE LAYOUTS (full verbatim text)
   ============================================================ */

/* Bullet list for long trust/benefit items */
.hx-bullets {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 16px;
  max-width: 860px;
}
.hx-bullets.two-col {
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  max-width: none;
}
.hx-bullets li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius-sm);
  padding: 18px 22px;
  font-size: 15.5px;
  line-height: 1.62;
  color: #374151;
}
.hx-bullets li svg {
  width: 22px; height: 22px;
  color: var(--hx-success);
  flex-shrink: 0;
  margin-top: 2px;
}
.hx-bullets li strong { color: var(--hx-maroon); }

/* Feature rows — icon + title + full paragraph (for services) */
.hx-frows { margin-top: 48px; display: grid; gap: 22px; }
.hx-frow {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius);
  padding: 30px 32px;
  box-shadow: var(--hx-shadow-sm);
}
.hx-frow-icon {
  width: 64px; height: 64px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--hx-maroon) 0%, var(--hx-maroon-deep) 100%);
  display: flex; align-items: center; justify-content: center;
}
.hx-frow-icon svg { width: 30px; height: 30px; color: var(--hx-gold-bright); }
.hx-frow h3 { font-size: 21px; color: var(--hx-maroon); margin-bottom: 10px; }
.hx-frow p { font-size: 15.5px; line-height: 1.7; color: #374151; margin: 0; }

/* Numbered process steps with full text */
.hx-process { margin-top: 48px; display: grid; gap: 20px; max-width: 900px; }
.hx-pstep {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--hx-line);
  border-radius: var(--hx-radius);
  padding: 28px 32px;
  box-shadow: var(--hx-shadow-sm);
}
.hx-pnum {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--hx-gold-bright);
  color: var(--hx-maroon-ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.hx-pstep h3 { font-size: 20px; color: var(--hx-maroon); margin-bottom: 10px; }
.hx-pstep p { font-size: 15.5px; line-height: 1.7; color: #374151; margin: 0; }

/* Generic prose paragraphs in a section */
.hx-prose { max-width: 860px; }
.hx-prose p { font-size: 16px; line-height: 1.75; color: #374151; margin: 0 0 16px; }
.hx-prose p:last-child { margin-bottom: 0; }
.hx-prose.center { margin: 0 auto; text-align: center; }

/* Areas note line */
.hx-areas-closing { margin-top: 24px; font-size: 16px; line-height: 1.7; color: #374151; text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }

@media (max-width: 860px) {
  .hx-bullets.two-col { grid-template-columns: 1fr; }
  .hx-frow { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .hx-frow-icon { width: 52px; height: 52px; }
  .hx-frow-icon svg { width: 26px; height: 26px; }
  .hx-pstep { grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 24px; }
  .hx-pnum { width: 44px; height: 44px; font-size: 20px; }
}
