/* ============================================================
   AUTO AC REPAIR - STYLESHEET
   Palette: Midnight Graphite
   Primary: #141414 | Accent: #8E9EAB | CTA: #0070F3
   Typography: Rajdhani (headings) + Source Sans 3 (body)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --navy:       #141414;
  --navy-mid:   #222222;
  --navy-lite:  #333333;
  --blue:       #8E9EAB;
  --blue-dark:  #6A7A87;
  --blue-lite:  #F0F4F8;
  --amber:      #0070F3;
  --amber-dark: #0050C0;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --gray-lite:  #edf2f7;
  --gray-mid:   #cbd5e0;
  --gray:       #718096;
  --text:       #1a202c;
  --text-mid:   #4a5568;
  --radius:     8px;
  --radius-lg:  14px;
  --shadow:     0 2px 12px rgba(20,20,20,0.10);
  --shadow-lg:  0 8px 32px rgba(20,20,20,0.16);
  --max-w:      1140px;
}

/* Override font families for chosen palette */
body {
  font-family: 'Source Sans 3', sans-serif;
}
h1, h2, h3, h4,
.section-label,
.btn,
.logo-text,
.main-nav a,
.mobile-nav a,
.footer-col h4,
.faq-q,
.trust-item,
.stat-item .num,
.step-num,
.process-step h3,
.problem-card h3,
.hero-form-box h3,
.hero-form-title,
.hero-form-box .form-submit,
.form-submit,
.sticky-cta a {
  font-family: 'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

/* ---- UTILITY ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--off-white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---- HEADINGS ---- */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.2px;
  color: var(--navy);
}
h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(20px, 3vw, 28px); }
h4 { font-size: 20px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1557b0;
  margin-bottom: 10px;
  display: block;
}
.section-label.light { color: var(--amber); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  text-decoration: none;
  color: var(--white);
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  text-decoration: none;
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
}
.btn-lg { padding: 17px 36px; font-size: 21px; }
.btn-sm { padding: 10px 20px; font-size: 15px; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--gray-mid);
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--navy-mid);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--white); font-weight: 600; }
.top-bar a:hover { color: var(--amber); text-decoration: none; }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--gray-lite);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 11px;
  color: #4a5568;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.logo:hover { text-decoration: none; }

/* ---- NAV ---- */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: all 0.15s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--blue);
  background: var(--blue-lite);
}
.nav-cta {
  background: var(--amber) !important;
  color: var(--navy) !important;
  padding: 9px 18px !important;
}
.nav-cta:hover { background: var(--amber-dark) !important; }

/* ---- MOBILE MENU ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-lite);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 10px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  text-decoration: none;
}
.mobile-nav a:hover { background: var(--blue-lite); color: var(--blue); }
.mobile-nav.open { display: flex; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,33,55,0.92) 40%, rgba(13,33,55,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 620px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--blue);
  color: var(--white);
  padding: 16px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.trust-item .icon { font-size: 22px; }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lite);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--blue);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card .icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.service-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card a {
  font-weight: 600;
  font-size: 14px;
  color: var(--blue);
}

/* ---- TWO-COLUMN CONTENT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 380px;
}
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: var(--text-mid); margin-bottom: 16px; }
.two-col-text ul {
  list-style: none;
  margin-bottom: 24px;
}
.two-col-text ul li {
  padding: 6px 0;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.two-col-text ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- STATS ROW ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ---- AWEBER FORM ---- */
.form-section {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}
.form-section h2 { color: var(--white); margin-bottom: 10px; }
.form-section .sub { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 17px; }
.form-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.18s;
}
.form-submit:hover { background: var(--amber-dark); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
}

/* ---- FAQ ---- */
.faq-list { margin-top: 36px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-lite);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-lite); }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-q .chevron {
  font-size: 18px;
  color: var(--blue);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding-top: 12px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-lite);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.testimonial-card .stars { color: var(--amber); font-size: 18px; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-card .author { font-weight: 600; font-size: 14px; color: var(--navy); }
.testimonial-card .location { font-size: 12px; color: #4a5568; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 580px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* ---- STICKY MOBILE CTA ---- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 12px 20px;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.sticky-cta .call-btn { background: var(--amber); color: var(--navy); }
.sticky-cta .quote-btn { background: var(--blue); color: var(--white); }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); font-size: 20px; }
.footer-brand p { font-size: 14px; margin-top: 12px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.footer-contact-item .icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse { direction: ltr; }
  .two-col img { height: 260px; }
  .hero-content { padding: 60px 0; }
  .hero p { font-size: 16px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item .num { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .form-wrap { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { flex-direction: column; gap: 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}

/* ── Hero Two-Column Layout ──────────────────────────────────────── */
.hero-two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-form-box {
  background: #ffffff !important;
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  position: relative;
  z-index: 3;
}
.hero-form-box h3,
.hero-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  color: var(--navy) !important;
  margin: 0 0 20px;
  font-weight: 700;
  display: block;
}
.hero-form-box .form-group { margin-bottom: 14px; }
.hero-form-box .form-group label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  display: block !important;
  margin-bottom: 5px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.hero-form-box .form-group input,
.hero-form-box .form-group textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1.5px solid #d0d7e3 !important;
  border-radius: 7px !important;
  font-size: 14px !important;
  color: #1a202c !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  font-family: 'Inter', sans-serif !important;
}
.hero-form-box .form-group input::placeholder,
.hero-form-box .form-group textarea::placeholder { color: #a0aec0 !important; }
.hero-form-box .form-group input:focus,
.hero-form-box .form-group textarea:focus {
  border-color: var(--blue) !important;
  background: #f0f6ff !important;
  outline: none !important;
}
.hero-form-box .form-group textarea { height: 70px; resize: vertical; }
.hero-form-box .form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
}
.hero-form-box .form-submit:hover { background: #e6a800; }
.hero-form-box .form-note { font-size: 11px; color: #555; text-align: center; margin: 8px 0 0; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 16px 0 20px;
}
.hero-trust span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 900px) {
  .hero-two-col {
    grid-template-columns: 1fr;
    padding: 48px 0 40px;
  }
  .hero-form-box { order: -1; }
}

/* ── Process Grid ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.process-step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 24px;
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}
.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  color: #fff;
  margin: 0 0 10px;
  font-weight: 700;
}
.process-step p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ── Problem Types Grid ──────────────────────────────────────────── */
.problem-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.problem-card {
  background: #fff;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.problem-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.problem-icon { font-size: 32px; margin-bottom: 14px; }
.problem-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 700;
}
.problem-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin: 0; }
@media (max-width: 768px) {
  .problem-types-grid { grid-template-columns: 1fr; }
}

/* ── Fast Response Callout ───────────────────────────────────────── */
.blue-lite { background: var(--blue-lite); }
.footer-parent-link {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0 0;
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer-parent-link a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-parent-link a:hover { color: var(--white); }

.page-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
@media (max-width: 480px) {
  .page-hero-cta { flex-direction: column; }
  .page-hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
}
