/* ============================================================
   WarrantyMatchPro — Professional Comparison Site Stylesheet
   Design: Clean, NerdWallet/ValuePenguin-style finance site
   ============================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #0056b3; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; color: #1a1a2e; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === UTILITY === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.bg-white { background: #fff; }
.bg-light { background: #f8f9fa; }
.bg-blue { background: #0056b3; }
.text-center { text-align: center; }
.text-muted { color: #6c757d; font-size: 0.875rem; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-green { background: #d4edda; color: #155724; }
.badge-blue { background: #cce5ff; color: #004085; }
.badge-orange { background: #ffe8d6; color: #b94a00; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0056b3; margin-bottom: 12px; }
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: #555; max-width: 640px; margin: 0 auto 40px; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
}
.btn-primary { background: #0056b3; color: #fff; }
.btn-primary:hover { background: #004494; color: #fff; text-decoration: none; }
.btn-orange { background: #ff6b35; color: #fff; }
.btn-orange:hover { background: #e85d2a; color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: #fff; color: #0056b3; text-decoration: none; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* === NAVIGATION === */
.site-nav {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: #0056b3; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: #444;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: #0056b3; text-decoration: none; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #1a1a2e; border-radius: 2px; transition: 0.3s; }

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 16px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid #f0f0f0; }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a { display: block; padding: 14px 0; color: #1a1a2e; font-weight: 500; }
.mobile-menu .btn { margin-top: 12px; width: 100%; text-align: center; }

/* === HERO === */
.hero {
  background: #f8f9fa;
  padding: 72px 0 64px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: #e8f0fe;
  color: #0056b3;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; color: #1a1a2e; }
.hero-sub {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #555;
  font-weight: 500;
}
.hero-trust-item .check { color: #28a745; font-size: 0.9rem; }

/* === QUOTE FORM CARD === */
.quote-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,86,179,0.12);
  padding: 36px 32px;
  border: 1px solid #e8effd;
}
.quote-card-header {
  text-align: center;
  margin-bottom: 24px;
}
.quote-card-header h3 { font-size: 1.35rem; color: #1a1a2e; margin-bottom: 6px; }
.quote-card-header p { color: #666; font-size: 0.9rem; margin: 0; }
.step-indicator {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.step-dot::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #dee2e6;
  z-index: 0;
}
.step-dot:last-child::before { display: none; }
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #dee2e6;
  color: #666;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.step-dot.active .step-num { background: #0056b3; color: #fff; }
.step-dot.done .step-num { background: #28a745; color: #fff; }
.step-label { font-size: 0.7rem; color: #888; margin-top: 4px; text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #fff;
  transition: border-color 0.2s;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-control:focus { border-color: #0056b3; outline: none; box-shadow: 0 0 0 3px rgba(0,86,179,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-privacy { font-size: 0.75rem; color: #888; text-align: center; margin-top: 10px; }
.form-privacy a { color: #0056b3; }

/* As Seen In */
.as-seen-in {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}
.as-seen-in-label { font-size: 0.72rem; font-weight: 600; color: #aaa; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.as-seen-in-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.press-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: #aaa;
  border: 1px solid #e0e0e0;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* === TRUST BAR === */
.trust-bar { background: #f8f9fa; border-top: 1px solid #e9ecef; border-bottom: 1px solid #e9ecef; }
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 36px 0;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-stat { text-align: center; flex: 1; min-width: 140px; }
.trust-stat-number { font-size: 2rem; font-weight: 800; color: #0056b3; line-height: 1; }
.trust-stat-label { font-size: 0.82rem; color: #666; margin-top: 4px; font-weight: 500; }
.trust-divider { width: 1px; height: 48px; background: #dee2e6; }

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.step-card { text-align: center; }
.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #0056b3;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0056b3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step-card p { color: #666; font-size: 0.93rem; }

/* === REPAIR COSTS === */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.repair-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.repair-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.repair-icon { font-size: 2rem; margin-bottom: 10px; }
.repair-name { font-size: 0.9rem; font-weight: 600; color: #444; margin-bottom: 8px; }
.repair-cost { font-size: 1.5rem; font-weight: 800; color: #dc3545; }
.repair-range { font-size: 0.75rem; color: #888; margin-top: 4px; }

/* === WHY SECTION === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.why-list { list-style: none; }
.why-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.why-list li:last-child { border-bottom: none; }
.why-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #d4edda;
  color: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-text strong { display: block; font-weight: 600; margin-bottom: 3px; }
.why-text span { font-size: 0.88rem; color: #666; }
.coverage-grid-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.coverage-grid-table th {
  background: #0056b3;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-weight: 600;
}
.coverage-grid-table th:first-child { text-align: left; border-radius: 8px 0 0 0; }
.coverage-grid-table th:last-child { border-radius: 0 8px 0 0; }
.coverage-grid-table td { padding: 11px 12px; border-bottom: 1px solid #f0f0f0; }
.coverage-grid-table td:not(:first-child) { text-align: center; }
.coverage-grid-table tr:hover td { background: #f8f9fa; }
.cov-yes { color: #28a745; font-size: 1rem; }
.cov-no { color: #aaa; font-size: 1rem; }

/* === PROVIDER COMPARISON === */
.provider-table-wrap { overflow-x: auto; margin-top: 40px; }
.provider-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.provider-table thead th {
  background: #0056b3;
  color: #fff;
  padding: 14px 16px;
  font-weight: 600;
  text-align: left;
}
.provider-table thead th:first-child { border-radius: 10px 0 0 0; }
.provider-table thead th:last-child { border-radius: 0 10px 0 0; text-align: center; }
.provider-table tbody tr { border-bottom: 1px solid #e9ecef; transition: background 0.15s; }
.provider-table tbody tr:hover { background: #f8f9fa; }
.provider-table tbody tr.top-pick { background: #fff8f0; border-left: 4px solid #ff6b35; }
.provider-table td { padding: 16px; vertical-align: middle; }
.provider-table td:last-child { text-align: center; }
.provider-name { font-weight: 700; font-size: 1rem; }
.provider-pick-badge { display: inline-block; background: #ff6b35; color: #fff; font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; text-transform: uppercase; letter-spacing: 0.04em; }
.star-rating { color: #f5a623; font-size: 1.05rem; letter-spacing: 0.05em; }
.star-rating .half { opacity: 0.5; }
.rating-num { font-size: 0.8rem; color: #666; margin-left: 4px; }
.provider-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.provider-tag { font-size: 0.72rem; background: #f0f4ff; color: #0056b3; padding: 2px 8px; border-radius: 10px; font-weight: 500; }
.provider-cta-row { margin-top: 28px; text-align: center; }
.provider-disclaimer { font-size: 0.75rem; color: #999; margin-top: 14px; text-align: center; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial-stars { color: #f5a623; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.93rem; color: #444; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: #1a1a2e; }
.testimonial-meta { font-size: 0.78rem; color: #888; margin-top: 2px; }
.verified-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; color: #28a745; font-weight: 600; margin-top: 6px; }

/* === SEO CONTENT SECTION === */
.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
.seo-block h3 { font-size: 1.15rem; margin-bottom: 14px; color: #1a1a2e; }
.seo-block p { color: #555; font-size: 0.93rem; line-height: 1.8; }

/* === FAQ === */
.faq-list { margin-top: 40px; max-width: 780px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
  font-family: inherit;
}
.faq-question:hover { background: #f8f9fa; }
.faq-icon { font-size: 1.4rem; color: #0056b3; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.93rem;
  line-height: 1.8;
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* === BOTTOM CTA === */
.bottom-cta {
  background: #0056b3;
  padding: 80px 0;
  text-align: center;
}
.bottom-cta h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.bottom-cta p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; }
.bottom-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.bottom-cta-trust { margin-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* === FOOTER === */
.site-footer {
  background: #fff;
  border-top: 1px solid #e9ecef;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo { font-size: 1.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.footer-brand-logo span { color: #0056b3; }
.footer-desc { font-size: 0.88rem; color: #666; line-height: 1.7; margin-bottom: 16px; }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #666; font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul a:hover { color: #0056b3; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #e9ecef;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.78rem; color: #aaa; line-height: 1.7; max-width: 680px; }
.footer-links-bottom { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links-bottom a { font-size: 0.78rem; color: #888; }

/* === BLOG STYLES === */
.blog-hero {
  background: #f8f9fa;
  padding: 56px 0 48px;
  border-bottom: 1px solid #e9ecef;
}
.blog-hero h1 { margin-bottom: 12px; }
.blog-hero p { color: #666; font-size: 1.05rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.blog-card-body { padding: 24px; }
.blog-card-tag { font-size: 0.72rem; font-weight: 700; color: #0056b3; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: #1a1a2e; }
.blog-card h3 a:hover { color: #0056b3; text-decoration: none; }
.blog-card p { font-size: 0.88rem; color: #666; line-height: 1.6; margin-bottom: 16px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: #aaa; }
.read-more { color: #0056b3; font-weight: 600; font-size: 0.88rem; }

/* Blog Post Layout */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
}
.blog-post-header { margin-bottom: 32px; }
.blog-post-header .blog-tag { font-size: 0.8rem; font-weight: 700; color: #0056b3; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.blog-post-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.blog-post-meta { font-size: 0.85rem; color: #888; }
.blog-post-meta span { margin-right: 16px; }
.blog-content h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.blog-content h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-content p { color: #444; line-height: 1.85; margin-bottom: 18px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 18px; }
.blog-content li { color: #444; line-height: 1.7; margin-bottom: 6px; }
.blog-content table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.blog-content th { background: #0056b3; color: #fff; padding: 12px; text-align: left; }
.blog-content td { padding: 12px; border-bottom: 1px solid #e9ecef; }
.blog-content tr:hover td { background: #f8f9fa; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h4 { font-size: 0.95rem; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { border-bottom: 1px solid #e9ecef; padding: 10px 0; }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul a { font-size: 0.88rem; color: #444; }
.sidebar-card ul a:hover { color: #0056b3; }
.sidebar-cta-card {
  background: #0056b3;
  border-radius: 12px;
  padding: 28px;
  color: #fff;
  text-align: center;
}
.sidebar-cta-card h4 { color: #fff; margin-bottom: 10px; }
.sidebar-cta-card p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 18px; }

/* CTA Box in Blog Posts */
.post-cta-box {
  background: linear-gradient(135deg, #0056b3, #003d80);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
  color: #fff;
}
.post-cta-box h3 { color: #fff; margin-bottom: 12px; font-size: 1.35rem; }
.post-cta-box p { color: rgba(255,255,255,0.88); margin-bottom: 20px; font-size: 0.95rem; }

/* Internal Links Section */
.internal-links { background: #f8f9fa; border-radius: 12px; padding: 24px; margin-top: 32px; }
.internal-links h4 { margin-bottom: 14px; font-size: 1rem; }
.internal-links ul { list-style: none; }
.internal-links li { padding: 6px 0; }
.internal-links li::before { content: '→ '; color: #0056b3; font-weight: 700; }
.internal-links a { color: #0056b3; font-size: 0.9rem; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .seo-content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .trust-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 48px 0 40px; }
  .section-pad { padding: 56px 0; }
  .quote-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .repair-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .trust-bar-inner { gap: 16px; }
  .trust-stat-number { font-size: 1.6rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .bottom-cta-buttons { flex-direction: column; align-items: center; }
  .provider-table { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .repair-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 40px 0; }
}
