/* Superior Auto Equipment LLC — saesupply.com */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; color: #1a1a1a; background: #fff; line-height: 1.65; }
img { display: block; }
a { color: inherit; text-decoration: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Type ── */
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section--gray { background: #f7f7f7; }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 32px;
  font-size: 0.92rem; font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  border: none; border-radius: 2px; cursor: pointer;
  transition: all 0.2s; text-align: center;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn--red { background: #DA0001; color: #fff; }
.btn--red:hover { background: #b80001; }
.btn--black { background: #2c2c2c; color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn--sm { padding: 10px 22px; font-size: 0.82rem; }
.link-red { color: #DA0001; font-weight: 600; }

/* ══════════════════════════════════════
   HEADER — white background, single
   red bottom border only, no other
   borders or stripes on the header
   ══════════════════════════════════════ */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid #DA0001;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 24px;
}
/* Left side: logo image + business name text, side by side */
.header-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-logo-link {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.header-logo-link img {
  height: 72px;
  width: auto;
}
.header-business-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}
/* Right side: nav links + phone + email, all on one row */
.header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}
.site-nav a {
  display: inline-block;
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 2px;
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
  background: #DA0001;
}
/* Phone and email styled differently from nav tabs */
.site-nav a.nav-phone {
  color: #DA0001;
  font-weight: 700;
  font-size: 0.8rem;
  border-left: 1px solid #e0e0e0;
  margin-left: 8px;
  padding-left: 16px;
  border-radius: 0;
}
.site-nav a.nav-phone:hover {
  background: transparent;
  color: #b80001;
}
.site-nav a.nav-email {
  color: #666;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}
.site-nav a.nav-email:hover {
  background: transparent;
  color: #333;
}

/* ══════════════════════════════════════
   HERO — dark charcoal, NO left stripe,
   NO top stripe, clean section start
   ══════════════════════════════════════ */
.hero {
  background: #2c2c2c;
  padding: 100px 32px 96px;
  position: relative;
  overflow: hidden;
}
/* Subtle red gradient wash — right side only, no stripes */
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(218,0,1,0.05) 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(218,0,1,0.35);
  border-radius: 2px;
}
.hero h1 { color: #fff; margin-bottom: 6px; }
.hero h1 .accent { color: #DA0001; }
.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #aaa; margin-bottom: 36px;
  font-weight: 400; max-width: 560px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-divider { width: 60px; height: 4px; background: #DA0001; margin: 24px 0; }

/* ── Intro Split ── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.intro-col {
  padding: 56px 48px;
  border-right: 1px solid #e8e8e8;
  position: relative;
}
.intro-col:last-child { border-right: none; }
.intro-col::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: #DA0001;
}
.intro-col .eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; margin-bottom: 14px; display: block;
}
.intro-col h3 { margin-bottom: 14px; font-size: 1.3rem; color: #111; }
.intro-col p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.tech-badge {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.tech-badge img { height: 48px; width: auto; flex-shrink: 0; }
.tech-badge span {
  font-size: 0.72rem; font-weight: 700;
  color: #DA0001; text-transform: uppercase;
  letter-spacing: 0.08em; line-height: 1.5;
}

/* ── Why Section ── */
.why-section { background: #f7f7f7; padding: 80px 0; }
.why-header { margin-bottom: 48px; }
.why-header .eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; display: block; margin-bottom: 10px;
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e0e0e0; border-radius: 4px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.why-card {
  background: #fff; padding: 40px 36px;
  border-right: 1px solid #e0e0e0; position: relative;
}
.why-card:last-child { border-right: none; }
.why-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px; background: #DA0001;
}
.why-number { font-size: 3rem; font-weight: 800; color: #f0f0f0; line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: #111; }
.why-card p { color: #666; font-size: 0.92rem; margin: 0; line-height: 1.65; }

/* ── Tile Section ── */
.tile-section { padding: 80px 0; background: #fff; }
.section-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; display: block; margin-bottom: 10px;
}
.tile-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 40px;
}
.tile {
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 3px; padding: 32px 24px 28px;
  text-align: center; transition: all 0.22s;
  display: block; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.tile::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: #DA0001; transform: scaleX(0);
  transform-origin: left; transition: transform 0.22s;
}
.tile:hover { border-color: #DA0001; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(218,0,1,0.12); }
.tile:hover::after { transform: scaleX(1); }
.tile-icon {
  width: 64px; height: 64px; background: #DA0001;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(218,0,1,0.3);
}
.tile h4 { font-size: 0.88rem; color: #111; margin-bottom: 6px; }
.tile p { font-size: 0.8rem; color: #888; margin: 0; line-height: 1.5; }

/* ── CTA Banner ── */
.cta-banner { background: #2c2c2c; padding: 72px 32px; }
.cta-banner-inner { max-width: 1120px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: #aaa; max-width: 520px; margin-bottom: 32px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Page Header (inner pages) ── */
.page-header {
  background: #2c2c2c; padding: 64px 32px;
  border-bottom: 4px solid #DA0001;
}
.page-header .eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; display: block; margin-bottom: 14px;
}
.page-header h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-header p { color: #bbb; max-width: 620px; font-size: 1.05rem; margin: 0; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 0.78rem; color: #aaa; margin-bottom: 16px; }
.breadcrumb a { color: #DA0001; }

/* ── Product Tile Grid ── */
.product-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-tile {
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 3px; padding: 32px 24px 28px;
  text-align: center; transition: all 0.22s;
  display: block; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.product-tile:hover { border-color: #DA0001; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(218,0,1,0.12); }
.product-tile .tile-icon {
  width: 64px; height: 64px; background: #DA0001;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(218,0,1,0.3);
}
.product-tile h4 { font-size: 0.88rem; color: #111; margin-bottom: 6px; }
.product-tile p { font-size: 0.8rem; color: #888; margin: 0; }

/* ── Territory Note ── */
.territory-note {
  background: #fff8f8; border: 1px solid rgba(218,0,1,0.2);
  border-left: 4px solid #DA0001; padding: 18px 24px;
  border-radius: 0 3px 3px 0; font-size: 0.92rem; color: #444;
}
.territory-note a { color: #DA0001; font-weight: 600; }

/* ── Contact Strip ── */
.contact-strip {
  background: #2c2c2c; color: #fff; padding: 28px 36px;
  border-radius: 3px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-left: 4px solid #DA0001;
}
.contact-strip p { margin: 0; font-size: 1rem; color: #ccc; }
.contact-strip strong { color: #fff; }

/* ── Category Pages ── */
.category-body { padding: 64px 0; }
.tech-category-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0;
}
.tech-category-list li {
  padding: 14px 20px; background: #f7f7f7;
  border-left: 4px solid #DA0001; font-size: 0.95rem;
  font-weight: 600; border-radius: 0 3px 3px 0;
}
.coming-soon-box {
  background: #f7f7f7; border-left: 4px solid #DA0001;
  padding: 32px 36px; margin: 36px 0; border-radius: 0 3px 3px 0;
}
.coming-soon-box h3 { margin-bottom: 10px; font-size: 1.1rem; }
.coming-soon-box p { color: #555; margin-bottom: 20px; }

/* ── Equipment Cards ── */
.equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.equip-card {
  background: #fff; border: 1px solid #e5e5e5;
  border-top: 4px solid #DA0001; border-radius: 0 0 3px 3px;
  padding: 36px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.equip-card .eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #DA0001; display: block; margin-bottom: 10px;
}
.equip-card h3 { margin-bottom: 12px; }
.equip-card p { color: #555; font-size: 0.95rem; margin-bottom: 24px; }

/* ── Includes List ── */
.includes-list {
  list-style: none; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px;
}
.includes-list li {
  background: #f7f7f7; padding: 24px 20px;
  border-radius: 3px; border-top: 3px solid #DA0001;
  font-size: 0.92rem; font-weight: 600; color: #333;
}
.includes-list li span { display: block; font-weight: 400; color: #666; margin-top: 4px; font-size: 0.85rem; }

/* ── Contact Page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-block {
  background: #2c2c2c; padding: 48px 40px;
  border-top: 4px solid #DA0001; border-radius: 0 0 3px 3px;
}
.contact-info-block h3 { color: #fff; margin-bottom: 32px; font-size: 1.1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-item:last-of-type { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(218,0,1,0.15);
  border: 1px solid rgba(218,0,1,0.3);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item-text h4 {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #888; margin-bottom: 4px;
}
.contact-item-text p { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
.contact-item-text a { color: #DA0001; }
.contact-item-text .sub { font-weight: 400; color: #888; font-size: 0.85rem; margin-top: 3px; display: block; }
.contact-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid #3f3f3f; font-size: 0.88rem; color: #888; line-height: 1.7; }

/* ── Form ── */
.form-panel h3 { margin-bottom: 28px; font-size: 1.2rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #555; margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid #ddd; border-radius: 2px;
  font-size: 0.95rem; font-family: 'Open Sans', sans-serif;
  color: #1a1a1a; background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: #DA0001;
  box-shadow: 0 0 0 3px rgba(218,0,1,0.08); background: #fff;
}
.form-group textarea { height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: #999; margin-bottom: 22px; font-style: italic; line-height: 1.6; }

/* ── Territory Section ── */
.territory-section { background: #f7f7f7; padding: 80px 0; }
.territory-map-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start; margin-top: 40px; }
.territory-map-wrap img { border: 3px solid #DA0001; border-radius: 3px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); width: 100%; height: auto; }
.county-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.county-tag {
  background: #fff; border: 1px solid #e5e5e5;
  border-left: 3px solid #DA0001; padding: 10px 14px;
  font-size: 0.88rem; font-weight: 600; border-radius: 0 2px 2px 0; color: #333;
}

/* ── Footer ── */
.site-footer { background: #2c2c2c; border-top: 4px solid #DA0001; padding: 60px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; max-width: 1120px; margin: 0 auto;
  padding: 0 32px; margin-bottom: 48px;
}
.footer-logo {
  background: #fff; display: inline-block;
  padding: 10px 12px; border-radius: 4px; margin-bottom: 16px;
}
.footer-logo img { height: 64px; width: auto; display: block; }
.footer-tagline { font-size: 0.88rem; color: #888; margin-bottom: 20px; }
.footer-phone a { display: block; color: #DA0001; font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.footer-phone span { font-size: 0.85rem; color: #666; }
.footer-col h4 {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: #DA0001; margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-hours p { color: #888; font-size: 0.88rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid #3a3a3a; padding: 24px 32px 0;
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-bottom p { color: #666; font-size: 0.8rem; margin: 0; }

/* ── Utility ── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #DA0001;
}

/* ── Responsive — desktop tweak only ── */
@media (max-width: 1024px) {
  .site-nav a.nav-email { display: none; }
}

/* ── Tablet: stack content grids, header stays desktop ── */
@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-col { border-right: none; border-bottom: 1px solid #e8e8e8; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid #f0f0f0; }
  .tile-grid, .product-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .territory-map-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .tech-category-list { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════
   HAMBURGER MENU
   ══════════════════════════════════════ */

/* ── Mobile menu: hidden by default, shown only on mobile ── */
.mobile-menu {
  display: none !important;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: block !important; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: #f7f7f7; color: #DA0001; }
.mobile-nav a.mobile-phone {
  color: #DA0001;
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  border-top: 2px solid #DA0001;
  margin-top: 4px;
  padding-top: 16px;
}
.mobile-nav a.mobile-email {
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

/* Hamburger button — hidden on desktop, shown on mobile via media query */
.hamburger {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 32px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
/* Animate to X when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ══════════════════════════════════════
   MOBILE BREAKPOINTS
   ══════════════════════════════════════ */
@media (max-width: 860px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex !important; }
  .header-right { display: none !important; }

  /* Compact header */
  .header-inner {
    padding: 10px 20px;
    gap: 12px;
  }
  .header-logo-link img { height: 56px; }
  .header-business-name { font-size: 0.82rem; }

  /* Stack intro columns */
  .intro-split { grid-template-columns: 1fr; }
  .intro-col { border-right: none; border-bottom: 1px solid #e8e8e8; padding: 40px 24px; }

  /* Stack why cards */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid #f0f0f0; }

  /* 2-col tiles on tablet */
  .tile-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stack equipment cards */
  .equip-grid { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr 1fr; }

  /* Stack contact grid */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Stack territory map */
  .territory-map-wrap { grid-template-columns: 1fr; }

  /* Stack footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Smaller hero padding */
  .hero { padding: 64px 24px 56px; }
  .cta-banner { padding: 48px 24px; }
}

@media (max-width: 480px) {
  /* Single column tiles on phone */
  .tile-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tile { padding: 24px 16px 20px; }
  .tile-icon { width: 52px; height: 52px; }

  /* Hero adjustments */
  .hero { padding: 48px 20px 44px; }
  .hero-eyebrow { font-size: 0.65rem; padding: 5px 10px; }
  .hero-tagline { font-size: 1rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; text-align: center; }

  /* CTA banner */
  .cta-banner { padding: 40px 20px; }
  .cta-banner .btn-group { flex-direction: column; gap: 10px; }
  .cta-banner .btn-group .btn { width: 100%; text-align: center; }

  /* Why section */
  .why-section { padding: 56px 0; }
  .why-card { padding: 28px 24px; }
  .why-number { font-size: 2.2rem; }

  /* Intro col */
  .intro-col { padding: 36px 20px; }

  /* Tech badge */
  .tech-badge { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Includes list */
  .includes-list { grid-template-columns: 1fr; }

  /* County grid */
  .county-grid { grid-template-columns: 1fr 1fr; }

  /* Contact strip */
  .contact-strip { flex-direction: column; align-items: flex-start; }

  /* Tile section */
  .tile-section { padding: 56px 0; }
  .container { padding: 0 20px; }
}

/* ══════════════════════════════════════
   HERO IMAGE SLIDER
   ══════════════════════════════════════ */

/* Split hero layout: content left, slider right */
.hero--split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-content { position: relative; z-index: 1; }

/* Slider container */
.hero-slider {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  align-self: center;
  width: 100%;
  max-width: 480px;
}

/* Slides wrapper — explicit height so absolutely positioned children are contained */
.hero-slides {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  background: #fff;
}

/* Individual slide — all stacked on top of each other, only active visible */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.hero-slide.active { opacity: 1; }

/* object-fit: contain keeps full image visible without cropping */
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 16px;
}

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}
.slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}
.slider-dot:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.5);
}

/* Mobile: stack slider below content */
@media (max-width: 860px) {
  .hero--split .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-slider {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-slides {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-slides {
    height: 220px;
  }
}

/* Van/photo slides use cover to fill the frame edge to edge */
.hero-slide--cover img {
  object-fit: cover;
  padding: 0;
}
