/* ═══════════════════════════════════════════════
   MSB Junk Cars — Global Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --primary: #046bd2;
  --primary-hover: #045cb4;
  --navy: #1E3A5F;
  --text-dark: #1e293b;
  --text-body: #334155;
  --bg-warm: #FAFAF9;
  --bg-white: #FFFFFF;
  --bg-footer: #1C1917;
  --border-stone: #E7E5E4;
  --border-light: #F5F5F4;
  --border-gray: #D1D5DB;
  --red: #DC2626;
  --green: #22c55e;
  --radius-card: 18px;
  --radius-btn: 4px;
  --container: 1200px;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}
h1 { font-size: 2.25rem; line-height: 1.2; font-weight: 700; }
h2 { font-size: 1.875rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: #fff;
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-left span { opacity: 0.9; }
.top-bar a { color: #fff; font-weight: 600; }

/* ── Header ── */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-gray);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--primary); }
.main-nav a.active { color: var(--primary); font-weight: 600; }
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-call-btn {
  background: var(--red);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.header-call-btn:hover { background: #b91c1c; color: #fff; }

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle svg { width: 26px; height: 26px; fill: var(--navy); }

/* ── Nav Dropdown ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 2px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 220px;
  z-index: 101;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--text-body);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: #EFF6FF; color: var(--primary); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #162d4a; color: #fff; }
.btn-white { background: #fff; color: var(--navy); font-weight: 700; }
.btn-white:hover { background: #F1F5F9; color: var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #b91c1c; color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ── Hero Section ── */
.hero {
  background: var(--bg-warm);
  padding: 60px 0 40px;
}
.hero-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.hero-left { flex: 1 1 0; }
.hero-right { flex: 1 1 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  padding: 7px 16px;
  border-radius: 24px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #0f172a;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-truck {
  margin-bottom: 24px;
  max-width: 380px;
  border-radius: 8px;
}
.hero-pills {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
  justify-content: start;
}
.hero-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-white);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border-stone);
  white-space: nowrap;
}
.hero-pill svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.hero h1 .red { color: var(--red); }

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: var(--bg-warm);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-stone);
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 12px;
}
.page-hero .breadcrumb a { color: var(--primary); font-weight: 500; }
.page-hero .breadcrumb span { color: #9CA3AF; margin: 0 6px; }
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0f172a;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 680px;
  line-height: 1.6;
}

/* Hero with form side-by-side on inner pages */
.page-hero-split {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.page-hero-content { flex: 1 1 0; }
.page-hero-form { flex: 0 0 420px; }

/* ── Form Card ── */
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.form-header h2 { font-size: 1.25rem; font-weight: 700; }
.google-badge {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  row-gap: 2px;
  font-size: 12px;
  color: var(--text-body);
  background: #f8f9fa;
  border: 1px solid var(--border-stone);
  border-radius: 8px;
  padding: 6px 10px;
}
/* Make any wrapper div between badge and stars/text invisible to layout */
.google-badge > div:not(.google-stars) { display: contents; }
.google-badge > svg { grid-column: 1; grid-row: 1; width: 16px; height: 16px; flex-shrink: 0; }
.google-stars { grid-column: 2; grid-row: 1; display: flex; gap: 1px; }
.google-stars svg { width: 13px; height: 13px; color: #FBBC04; }
.google-badge-text { grid-column: 1 / -1; grid-row: 2; text-align: center; font-size: 11.5px; font-weight: 500; color: var(--text-body); white-space: nowrap; }
.form-card {
  background: var(--bg-white);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0px 0px 10px 4px rgba(220,38,38,0.12);
}
.form-card label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  margin-bottom: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.form-card textarea { min-height: 100px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: none;
  border-color: var(--primary);
}
.form-card input::placeholder, .form-card textarea::placeholder { color: #9CA3AF; }
.form-row { display: flex; gap: 12px; }
.form-row input, .form-row > div { flex: 1; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: #b91c1c; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-submit .btn-text { display: inline; }
.form-submit .btn-loading { display: none; }
.form-submit.is-loading .btn-text { display: none; }
.form-submit.is-loading .btn-loading { display: inline; }
.form-success-msg { text-align: center; padding: 24px 16px; }
.form-success-msg svg { margin-bottom: 12px; }
.form-success-msg h3 { font-size: 20px; margin-bottom: 6px; color: var(--text-dark); }
.form-success-msg p { font-size: 14px; color: #6B7280; }
.form-error-msg {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 12px;
  display: none;
}
.form-field-error { border-color: var(--red) !important; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.form-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.form-phone svg { width: 18px; height: 18px; color: var(--primary); }
.form-phone a { font-weight: 700; font-size: 1.15rem; color: var(--primary); }
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 2px;
  font-size: 12px;
  color: #9CA3AF;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gray);
}
.form-fine {
  text-align: center;
  font-size: 12px;
  color: #78716C;
  margin-top: 14px;
  line-height: 1.5;
}
.form-fine strong {
  display: block;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 2px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--bg-warm);
  padding: 0 0 52px;
}
.stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
}
.google-widget {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  flex: 1.4;
}
.google-widget-icon { width: 32px; height: 32px; flex-shrink: 0; }
.google-widget-rating {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}
.google-widget-stars { display: flex; gap: 2px; margin-top: 3px; }
.google-widget-stars svg { width: 18px; height: 18px; color: #FBBC04; }
.google-widget-text { font-size: 13px; color: var(--text-body); margin-top: 3px; }
.google-widget-text a { font-weight: 500; }
.stats-divider {
  width: 1px;
  background: var(--border-stone);
  flex-shrink: 0;
  align-self: stretch;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-item p { font-size: 13px; color: var(--text-body); font-weight: 500; }

/* ── Parts Banner ── */
.parts-banner {
  background: linear-gradient(135deg, #1a3356 0%, #0f2540 100%);
  padding: 18px 0;
}
.parts-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.parts-banner-icon { width: 22px; height: 22px; color: rgba(255,255,255,0.65); flex-shrink: 0; }
.parts-banner-text { color: rgba(255,255,255,0.88); font-size: 15px; }
.parts-banner-text strong { font-weight: 600; color: #fff; }
.parts-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.parts-banner-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); color: #fff; }

/* ── Section Common ── */
.section { padding: 88px 0; }
.section-warm { background: var(--bg-warm); }
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-body); line-height: 1.7; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Steps Grid ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.step-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 36px 28px 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.step-card:hover {
  box-shadow: 0 6px 24px rgba(4,107,210,0.09);
  border-color: #BFDBFE;
}
.step-num-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}
.step-icon { width: 26px; height: 26px; color: var(--text-body); opacity: 0.35; }
.step-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }

/* ── Yard Section ── */
.yard-row {
  display: flex;
  gap: 56px;
  align-items: stretch;
}
.yard-media {
  flex: 0 0 54%;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 420px;
  background: #302E2F;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.yard-media video, .yard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.yard-media-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 2;
}
.yard-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.yard-text h2 { margin-bottom: 12px; font-size: 1.9rem; }
.yard-text > p { margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.yard-features { list-style: none; margin-bottom: 32px; }
.yard-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}
.yard-features li:last-child { border-bottom: none; }
.yard-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yard-check svg { width: 13px; height: 13px; color: #16A34A; }
.yard-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.yard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  padding: 11px 22px;
  border-radius: 10px;
  transition: all 0.2s;
}
.yard-link:hover { background: #DBEAFE; border-color: var(--primary); color: var(--primary); }
.yard-hours { font-size: 13px; color: var(--text-body); display: flex; align-items: center; gap: 6px; }
.yard-hours svg { width: 14px; height: 14px; opacity: 0.55; }

/* ── Trust Cards ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.trust-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--primary); }
.trust-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.trust-card p { font-size: 14px; line-height: 1.65; color: var(--text-body); }

/* ── Reviews ── */
.reviews-header { text-align: center; margin-bottom: 44px; }
.reviews-header h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: 16px; }
.reviews-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  border-radius: 10px;
  padding: 8px 16px;
}
.reviews-google-badge .stars { display: flex; gap: 1px; }
.reviews-google-badge .stars svg { width: 16px; height: 16px; color: #FBBC04; }
.reviews-google-badge span { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.reviews-link { font-weight: 600; font-size: 14px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); border-color: #D1D5DB; }
.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.7;
  color: #E2E8F0;
  margin-bottom: 14px;
  display: block;
  font-weight: 700;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 18px; height: 18px; }
.review-google-icon { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.7; }
.review-text {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
  color: var(--text-body);
  flex: 1;
}
.review-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.review-author h4 { font-size: 0.95rem; font-weight: 700; }
.review-author span { font-size: 12px; color: #78716C; }

/* ── Service Area ── */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.area-link svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.area-link:hover { border-color: var(--primary); background: #EFF6FF; color: var(--primary); }

/* ── SEO Content Sections ── */
.seo-row { display: flex; gap: 64px; }
.seo-col { flex: 1; }
.seo-col h2 { margin-bottom: 16px; font-size: 1.75rem; line-height: 1.25; }
.seo-col h3 {
  margin-bottom: 8px;
  margin-top: 28px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-left: 14px;
  border-left: 3px solid var(--primary);
}
.seo-col p { margin-bottom: 14px; font-size: 15px; line-height: 1.75; color: var(--text-body); }
.seo-col .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
}
.seo-col .feature-item svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.seo-col .seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  padding: 11px 22px;
  border-radius: 10px;
  transition: all 0.2s;
}
.seo-col .seo-cta:hover { background: #DBEAFE; border-color: var(--primary); }

/* ── Content Page Styles ── */
.content-section { padding: 80px 0; }
.content-section h2 { margin-bottom: 16px; font-size: 1.75rem; }
.content-section h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}
.content-section p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}
.content-section ul, .content-section ol {
  margin: 0 0 16px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}
.content-section li { margin-bottom: 6px; }

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-main { }
.content-sidebar {
  position: sticky;
  top: 100px;
}

/* Sidebar CTA card */
.sidebar-cta {
  background: var(--bg-warm);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
}
.sidebar-cta h3 { font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-cta p { font-size: 14px; color: var(--text-body); margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; margin-bottom: 8px; }

/* ── Feature List (checkmarks) ── */
.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}
.check-list li:last-child { border-bottom: none; }
.check-list .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list .check-icon svg { width: 13px; height: 13px; color: #16A34A; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-stone); }
.faq-item:first-child { border-top: 1px solid var(--border-stone); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.faq-question svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s; color: var(--text-body); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-item.open .faq-icon-wrap { background: #EFF6FF; border-color: #BFDBFE; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 4px 22px; font-size: 15px; line-height: 1.75; color: var(--text-body); }
.faq-item.open .faq-answer { max-height: 500px; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #1E3A5F 0%, #0f2540 60%, #1a3356 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(4,107,210,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 14px; font-size: 2.2rem; }
.cta-section p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 32px; }
.cta-phone-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.cta-phone-hint .pulse-dot { background: #4ade80; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 0; color: rgba(255,255,255,0.5); }
.footer-col a {
  color: rgba(255,255,255,0.7);
  display: block;
  padding: 3px 0;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex; gap: 8px; margin-bottom: 10px; font-size: 14px; align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.footer-cta {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-cta-text { flex-shrink: 0; }
.footer-cta-text h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 18px;
  margin: 0 0 2px;
}
.footer-cta-text p { font-size: 13px; margin: 0; color: rgba(255,255,255,0.45); }
.footer-form { flex: 1; }
.footer-form .form-error-msg { margin-bottom: 8px; }
.footer-form .form-field-error { border-color: var(--red) !important; }
.footer-form-fields {
  display: flex;
  gap: 8px;
  align-items: center;
}
.footer-form input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus { outline: none; border-color: var(--primary); }
.footer-form button {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-form button:hover { background: var(--primary-hover); }
.footer-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.footer-form button .btn-text { display: inline; }
.footer-form button .btn-loading { display: none; }
.footer-form button.is-loading .btn-text { display: none; }
.footer-form button.is-loading .btn-loading { display: inline; }
.footer-form .form-success-msg h3 { color: #fff; }
.footer-form .form-success-msg p { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* ── Mobile Sticky Bar ── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0px -2px 10px rgba(0,0,0,0.15);
  border-radius: 16px 16px 0 0;
  padding: 12px 20px 8px;
  z-index: 200;
}
.mobile-sticky-row {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1.5px solid var(--border-stone);
  background: var(--bg-white);
  transition: all 0.2s;
}
.mobile-sticky-btn:hover { border-color: var(--primary); color: var(--primary); }
.mobile-sticky-btn svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 300;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu-header img {
  height: 40px;
  width: auto;
}
.mobile-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-close svg { width: 24px; height: 24px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-stone);
}
.mobile-menu-cta { margin-top: 24px; }

/* ── Photo Grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.photo-grid img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ── Inline CTA Banner ── */
.inline-cta {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 40px 0;
}
.inline-cta-content { flex: 1; }
.inline-cta-content h3 { font-size: 1.2rem; margin-bottom: 6px; }
.inline-cta-content p { font-size: 14px; margin: 0; color: var(--text-body); }
.inline-cta .btn { flex-shrink: 0; }

/* ── Contact Form (full width) ── */
.contact-form-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 40px;
  max-width: 640px;
}
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  margin-bottom: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
}
.contact-form-card textarea { min-height: 120px; resize: vertical; }
.contact-form-card input:focus,
.contact-form-card textarea:focus { outline: none; border-color: var(--primary); }
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: #9CA3AF; }
.contact-form-card label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* ── Blog Grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.blog-card-body { padding: 24px; }
.blog-card-body .blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  background: #EFF6FF;
  padding: 3px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--text-dark); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 12px; }
.blog-card-body .blog-meta,
.blog-card-body .blog-date {
  font-size: 12px;
  color: #78716C;
  font-weight: 500;
}

/* ── Blog Post Article ── */
.article-header {
  background: var(--bg-warm);
  padding: 40px 0 44px;
  border-bottom: 1px solid var(--border-stone);
}
.article-header .breadcrumb {
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 16px;
}
.article-header .breadcrumb a { color: var(--primary); font-weight: 500; }
.article-header .breadcrumb span { color: #9CA3AF; margin: 0 6px; }
.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary);
  background: #EFF6FF;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #0f172a;
  max-width: 780px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #78716C;
}
.article-meta svg { width: 15px; height: 15px; color: #9CA3AF; flex-shrink: 0; }
.article-meta-item { display: flex; align-items: center; gap: 5px; }
.article-meta-divider { width: 4px; height: 4px; border-radius: 50%; background: #D1D5DB; }

/* Article layout */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.article-sidebar {
  position: sticky;
  top: 90px;
}

/* Article body typography */
.article-body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text-dark);
  line-height: 1.3;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--text-dark);
  line-height: 1.35;
}
.article-body p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.article-body a { color: var(--primary); font-weight: 500; text-decoration: underline; text-decoration-color: #BFDBFE; text-underline-offset: 2px; }
.article-body a:hover { text-decoration-color: var(--primary); }
.article-body a.btn { text-decoration: none; }
.article-body a.btn-primary { color: #fff; }
.article-body a.btn-outline { color: var(--primary); }
.article-body a.btn-red { color: #fff; }
.article-body ul, .article-body ol {
  margin: 0 0 20px 8px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}
.article-body li { margin-bottom: 8px; }
.article-body li::marker { color: var(--primary); }
.article-body strong { color: var(--text-dark); font-weight: 600; }
.article-body img {
  border-radius: 12px;
  margin: 28px 0;
  width: 100%;
  height: auto;
}
.article-body figure { margin: 28px 0; }
.article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: #78716C;
  margin-top: 8px;
}
.article-body iframe {
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  border: 0;
  border-radius: 12px;
}
.article-body .wp-block-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.article-body .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.article-body .wp-block-button__link:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Blockquote */
.article-body blockquote {
  border-left: 3px solid var(--primary);
  background: #F8FAFC;
  margin: 28px 0;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
}
.article-body blockquote p { margin-bottom: 0; }

/* Key takeaway box */
.article-callout {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 14px;
  padding: 24px 28px;
  margin: 28px 0;
}
.article-callout-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 10px;
}
.article-callout-title svg { width: 18px; height: 18px; }
.article-callout p { margin-bottom: 0; font-size: 15px; line-height: 1.7; }
.article-callout ul { margin-bottom: 0; }

/* In-article CTA box */
.article-cta-box {
  background: var(--bg-warm);
  border: 1.5px solid var(--border-stone);
  border-radius: 16px;
  padding: 32px;
  margin: 36px 0;
  text-align: center;
}
.article-cta-box h3 { font-size: 1.2rem; margin-bottom: 8px; }
.article-cta-box p { font-size: 15px; color: var(--text-body); margin-bottom: 18px; line-height: 1.6; }
.article-cta-box .btn { font-size: 16px; padding: 14px 32px; }

/* Sidebar card */
.sidebar-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}
.sidebar-card-cta {
  background: var(--bg-warm);
  border: 1.5px solid var(--border-stone);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-card-cta h4 { font-size: 1.1rem; margin-bottom: 8px; }
.sidebar-card-cta p { font-size: 14px; color: var(--text-body); margin-bottom: 16px; line-height: 1.6; }
.sidebar-card-cta .btn { width: 100%; margin-bottom: 10px; }
.sidebar-card-cta .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  margin-top: 4px;
}
.sidebar-card-cta .phone-link svg { width: 16px; height: 16px; }

/* Related posts in sidebar */
.sidebar-related-item {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s;
}
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-item:hover { color: var(--primary); }
.sidebar-related-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background: #EFF6FF;
  padding: 2px 8px;
  border-radius: 8px;
  margin-bottom: 4px;
}

/* Bottom related posts (full width) */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Pagination style for blog */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-stone);
}
.pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-stone);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
  text-decoration: none;
}
.pagination-btn:hover { border-color: var(--primary); color: var(--primary); }
.pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination-btn:disabled:hover { border-color: var(--border-stone); color: var(--text-dark); }
.pagination-btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; }
.pagination-btn[aria-disabled="true"]:hover { border-color: var(--border-stone); color: var(--text-dark); }
.pagination-btn-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-btn-active:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-hover); }
.pagination-info { font-size: 14px; color: #78716C; font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 40px; }
  .hero-row { flex-direction: column; gap: 28px; }
  .hero-left, .hero-right { flex: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { display: block; margin-bottom: 16px; }
  .hero-truck { display: none; }
  .hero-pills { grid-template-columns: repeat(2, 1fr); }
  .hero-pill { white-space: normal; }
  .form-row { flex-direction: column; gap: 0; }
  .stats-divider { display: none; }
  .parts-banner-icon { display: none; }
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .mobile-sticky { display: block; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .yard-row { flex-direction: column; gap: 28px; }
  .yard-media { min-height: 280px; flex: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .seo-row { flex-direction: column; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .footer-form-fields { flex-wrap: wrap; }
  .footer-form-fields input { flex: 1 1 45%; }
  .footer-form-fields button { width: 100%; }
  .cta-section { padding: 60px 0; }
  .stats-row { border-radius: 12px; flex-wrap: wrap; }
  .stat-item { padding: 16px 20px; min-width: 120px; }
  .google-widget { padding: 16px 20px; }
  .page-hero-split { flex-direction: column; gap: 28px; }
  .page-hero-form { flex: none; width: 100%; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-sidebar { position: static; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .inline-cta { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; }
  .article-header h1 { font-size: 2rem; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 44px 0; }
  .top-bar { display: none; }
  .hero { padding: 16px 0 12px; }
  .hero-badge { display: none; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 10px; }
  .hero-sub { font-size: 0.92rem; margin-bottom: 14px; }
  .hero-pills { grid-template-columns: repeat(2, 1fr); gap: 6px; margin-bottom: 4px; }
  .hero-pill { padding: 5px 8px; font-size: 11px; white-space: normal; }
  .header-call-btn { padding: 8px 14px !important; font-size: 13px !important; border-radius: 6px !important; }
  .header-call-btn svg { width: 14px; height: 14px; }
  .trust-grid { grid-template-columns: 1fr; }
  .area-grid { flex-direction: column; align-items: stretch; }
  .stats-row { flex-direction: column; }
  .seo-col h3 { margin-top: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-form-fields { flex-direction: column; }
  .footer-form-fields input { flex: none; width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 300px; }
  .form-header h2 { font-size: 1.1rem; }
  .form-header { gap: 8px; }
  .form-card { padding: 20px 18px; }
  .form-card input { padding: 10px 12px; margin-bottom: 10px; font-size: 14px; }
  .form-submit { padding: 14px; font-size: 15px; }
  .google-badge { padding: 4px 8px; }
  .google-badge-text { font-size: 10.5px; }
  .google-stars svg { width: 11px; height: 11px; }
  .google-badge svg { width: 14px; height: 14px; }
  body { padding-bottom: 70px; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero p { font-size: 0.95rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }
  .article-header h1 { font-size: 1.65rem; }
  .article-header { padding: 28px 0 32px; }
  .article-body h2 { font-size: 1.35rem; margin-top: 32px; }
  .article-body h3 { font-size: 1.1rem; }
  .article-cta-box { padding: 24px 20px; }
  .article-callout { padding: 20px; }
  .article-meta { gap: 10px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════
   DESIGN POLISH PASS — April 2026
   Improvements to inner pages, heroes, spacing,
   typography hierarchy, and CTA consistency.
   Homepage (index.html) is NOT affected.
   ═══════════════════════════════════════════════ */

/* ── Enhanced Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, #f8f9fb 0%, var(--bg-warm) 100%);
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border-stone);
}
.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
  color: #0f172a;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 700px;
  line-height: 1.65;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: #78716C;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}
.page-hero .breadcrumb span {
  color: #CBD5E1;
  margin: 0 2px;
}

/* Hero badge for inner pages (mirrors homepage) */
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-stone);
  padding: 6px 14px;
  border-radius: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

/* Page hero split — tighter vertical rhythm */
.page-hero-split {
  gap: 48px;
  align-items: flex-start;
}
.page-hero-content {
  padding-top: 4px;
}
.page-hero-content h1 {
  margin-top: 0;
}

/* ── Stronger form card on split heroes ── */
.page-hero-form .form-card {
  box-shadow: 0 4px 24px rgba(220,38,38,0.10), 0 1px 4px rgba(0,0,0,0.06);
}

/* ── Section rhythm improvements ── */
.section-header {
  max-width: 700px;
}
.section-header h2 {
  font-size: 2rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
}

/* ── Step cards — slightly elevated ── */
.step-card {
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.step-card:hover {
  box-shadow: 0 8px 28px rgba(4,107,210,0.10);
  border-color: #BFDBFE;
  transform: translateY(-2px);
}
.step-card { transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s; }

/* ── Trust cards — consistent hover ── */
.trust-card {
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── SEO col h3 — slightly more breathing room ── */
.seo-col h3 {
  margin-top: 32px;
  font-size: 1.08rem;
}
.seo-col h2 {
  font-size: 1.85rem;
  line-height: 1.2;
}

/* ── Contact form card — polished ── */
.contact-form-card {
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1.5px solid var(--border-stone);
}
.contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* ── Reviews section ── */
.review-card {
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* ── Inline CTA banner — stronger ── */
.inline-cta {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: #93C5FD;
}

/* ── Parts page hero — no form, wider content ── */
.page-hero.page-hero--parts h1 {
  max-width: 780px;
}
.page-hero.page-hero--parts p {
  max-width: 760px;
}

/* ── Thank-you page ── */
.thankyou-hero {
  background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #bbf7d0;
}
.thankyou-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #14532d;
  margin-bottom: 14px;
}
.thankyou-hero p {
  font-size: 1.1rem;
  color: #166534;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
}
.thankyou-icon svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

/* ── FAQ page hero ── */
.faq-list {
  max-width: 860px;
}

/* ── About page hero image ── */
.about-hero-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Location page hero enhancements ── */
.location-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.location-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
}
.location-hero-meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--green);
  flex-shrink: 0;
}

/* ── Responsive: page-hero ── */
@media (max-width: 960px) {
  .page-hero {
    padding: 40px 0 36px;
  }
  .page-hero h1 {
    font-size: 2.1rem;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 28px 0 24px;
  }
  .page-hero h1 {
    font-size: 1.75rem;
  }
  .page-hero p {
    font-size: 0.97rem;
  }
  .thankyou-hero {
    padding: 52px 0;
  }
  .thankyou-hero h1 {
    font-size: 1.8rem;
  }
}
