@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #0b1624;
  --navy-900: #10243a;
  --navy-800: #17324f;
  --slate-700: #42556b;
  --slate-500: #6a7b8f;
  --slate-200: #d9e1ea;
  --slate-100: #eef3f7;
  --white: #ffffff;
  --orange-500: #e7792b;
  --orange-600: #d86717;
  --orange-100: #fff0e5;
  --shadow-sm: 0 8px 24px rgba(12, 24, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(8, 18, 29, 0.18);
  --radius-md: 16px;
  --radius-lg: 26px;
  --max-width: 1200px;
  --transition: 180ms ease;
  --top-bar-height: 0px;
  --promo-bar-height: 44px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--navy-950);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, #090d12 0%, #121820 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--top-bar-height);
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
}

.top-bar-left {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
  flex: 0 0 auto;
}

.top-bar a,
.top-bar-call {
  text-decoration: none;
  background: var(--orange-500);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.promo-banner {
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: var(--promo-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--navy-950);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-banner strong {
  color: var(--orange-500);
}

.promo-timer {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-header {
  position: sticky;
  top: var(--promo-bar-height);
  z-index: 60;
  background: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(8, 18, 29, 0.08);
  border-bottom: 1px solid rgba(16, 36, 58, 0.08);
}

.top-bar p {
  margin: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
  min-width: 0;
}

.top-bar-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  flex: 0 0 auto;
}

.top-bar-timer strong {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.08em;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand img {
  width: 180px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(16, 36, 58, 0.08);
  color: var(--navy-950);
}

.site-nav .nav-button {
  background: var(--orange-500);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  background: var(--navy-900);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 22, 36, 0.94) 0%, rgba(11, 22, 36, 0.8) 42%, rgba(11, 22, 36, 0.52) 100%),
    radial-gradient(circle at top right, rgba(231, 121, 43, 0.28), transparent 32%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
  gap: 48px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.final-cta h2,
.lead-card h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 20px;
}

.hero-points li {
  color: var(--white);
  font-weight: 600;
}

.hero-points li::before,
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-600);
  transform: translateY(-1px);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.section .btn-secondary,
.section-gray .btn-secondary,
.section-accent .btn-secondary {
  color: var(--navy-950);
  border-color: var(--navy-950);
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section .btn-secondary:hover,
.section-gray .btn-secondary:hover,
.section-accent .btn-secondary:hover {
  background: var(--navy-950);
  color: var(--white);
}

.lead-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.lead-card h2 {
  font-size: 1.9rem;
  color: var(--navy-950);
}

.contact-card h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  line-height: 1.05;
  color: var(--navy-950);
}

.lead-card p {
  margin: 10px 0 0;
  color: var(--slate-700);
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--slate-700);
}

.lead-card form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-card form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-card label span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

.contact-card label span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 14px 16px;
  background: #f7fafc;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 14px 16px;
  background: #f7fafc;
}

.lead-card textarea {
  min-height: 110px;
  resize: vertical;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 26px;
  align-items: start;
}

.estimate-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.estimate-form-grid .full-span {
  grid-column: 1 / -1;
}

.contact-card textarea {
  min-height: 110px;
  resize: vertical;
}

.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-card h1 {
  margin: 0 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.thank-you-message {
  margin: 0 auto;
  max-width: 54ch;
  color: var(--slate-700);
  font-size: 17px;
}

.thank-you-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.thank-you-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--slate-700);
}

.fine-print {
  font-size: 13px;
}

.section,
.trust-strip,
.final-cta {
  padding: 88px 0;
}

.section-gray {
  background: var(--slate-100);
}

.section-dark {
  background: linear-gradient(135deg, rgba(16, 36, 58, 1) 0%, rgba(11, 22, 36, 1) 100%);
  color: var(--white);
}

.section-accent {
  background: linear-gradient(180deg, var(--orange-100) 0%, #fff8f2 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split-copy h2,
.final-cta h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--slate-700);
}

.section-dark .section-heading p,
.section-dark .section-heading h2 {
  color: var(--white);
}

.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.trust-item h3,
.service-card h3,
.process-card h3,
.city-panel h3,
.site-footer h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.trust-item h3 {
  font-size: 1.05rem;
}

.trust-item p {
  margin: 10px 0 0;
  color: var(--slate-700);
  font-size: 14px;
}

/* RECOVERED-ALIGNMENT-FIX */
.intro-copy,
.service-intro,
.service-intro-grid,
.trust-grid.feature-grid,
.trust-grid.problem-grid,
.repair-grid-3,
.repair-grid-4 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.intro-copy,
.service-intro {
  text-align: left;
}

.intro-copy p,
.service-intro p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.trust-grid.problem-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.repair-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.repair-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

.trust-item,
.repair-grid-3 .trust-item,
.repair-grid-4 .trust-item {
  height: 100%;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.logo-row img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.95);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.process-card,
.offer-card,
.city-panel {
  border-radius: var(--radius-lg);
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.service-card-link {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.service-card-link:hover h3,
.service-card-link:focus-visible h3 {
  color: var(--orange-600);
}

.service-card-clickable {
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service-card-body li {
  color: var(--slate-700);
  padding-left: 18px;
  position: relative;
}

.service-card-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-500);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-card p {
  color: rgba(255, 255, 255, 0.78);
}

.step {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(231, 121, 43, 0.18);
  color: #ffc89c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.split-layout.reverse .split-copy {
  order: 1;
}

.split-layout.reverse .split-image {
  order: 2;
}

.split-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-copy p {
  color: var(--slate-700);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 32px;
}

.storm-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.offer-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.offer-card {
  padding: 28px 18px;
  text-align: center;
  border: 1px solid var(--slate-200);
  background: linear-gradient(180deg, #ffffff 0%, #fff9f5 100%);
  box-shadow: var(--shadow-sm);
}

.offer-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: var(--orange-600);
}

.offer-card span {
  display: block;
  margin-top: 8px;
  color: var(--slate-700);
  font-weight: 600;
}

.city-groups {
  display: grid;
  gap: 24px;
}

.city-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.city-panel.primary {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.chip-grid span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 600;
}

.chip-grid a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.chip-grid a:hover,
.chip-grid a:focus-visible {
  background: var(--navy-950);
  color: var(--white);
}

.city-panel.primary .chip-grid span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.city-panel.primary .chip-grid a {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.city-panel.primary .chip-grid a:hover,
.city-panel.primary .chip-grid a:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.locations-wrap {
  padding: 0;
  max-width: 1240px;
}

.locations-eyebrow {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e11d2e;
}

.locations-title {
  margin: 0;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: #0b1624;
}

.locations-subtitle {
  margin: 12px auto 0;
  text-align: center;
  max-width: 760px;
  color: #42556b;
  font-size: 16px;
}

.locations-panel {
  margin: 24px auto 0;
  background: var(--white);
  border: 1px solid #e6ebf2;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(12, 24, 38, 0.08);
  overflow: hidden;
}

.locations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.locations-map {
  min-height: 330px;
}

.locations-map iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}

.locations-list {
  background: #f7f8fa;
  padding: 28px 24px;
}

.locations-cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
}

.locations-cities li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #0b1624;
  line-height: 1.35;
}

.locations-pin {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: #e11d2e;
}

.locations-cta {
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
}

.locations-cta a {
  width: 100%;
  background: #e11d2e;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(225, 29, 46, 0.22);
}

.map-frame iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.final-cta {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
}

.final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.final-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 48px 0 88px;
  background: #08121d;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1100px) {
  .trust-grid,
  .service-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-copy,
  .split-layout.reverse .split-image {
    order: initial;
  }

  .final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .top-bar-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    text-align: left;
    overflow: hidden;
  }

  .top-bar p,
  .top-bar a {
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0;
  }

  .hero-points,
  .trust-grid,
  .service-grid,
  .process-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .estimate-layout,
  .estimate-form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .trust-strip,
  .final-cta {
    padding: 72px 0;
  }

  .logo-row {
    justify-content: flex-start;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-map iframe {
    height: 320px;
  }

  .locations-cities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .top-bar p {
    font-size: 12px;
    max-width: 46vw;
  }

  .top-bar a {
    padding: 6px 8px;
    font-size: 11px;
    line-height: 1.1;
    min-width: 74px;
    text-align: center;
    font-size: 0;
  }

  .top-bar a::after {
    content: 'Call Now';
    font-size: 11px;
    line-height: 1.1;
  }

  .top-bar-timer {
    margin-left: 8px;
    padding-left: 8px;
    font-size: 11px;
  }

  .top-bar-timer strong {
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 150px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-copy p,
  .section-heading p,
  .split-copy p {
    font-size: 16px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-actions .btn,
  .final-cta-actions .btn {
    width: 100%;
  }

  .lead-card {
    padding: 22px;
  }

  .split-image img {
    min-height: 280px;
  }

  .locations-cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .trust-grid.feature-grid,
  .trust-grid.problem-grid,
  .repair-grid-3,
  .repair-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
  }

  .mobile-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 64px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
  }

  .mobile-bar a:first-child {
    background: var(--orange-500);
    color: var(--white);
  }

  .mobile-bar a:last-child {
    background: var(--navy-950);
    color: var(--white);
  }

  .promo-banner {
    padding: 0 12px;
    font-size: 12px;
    line-height: 1.3;
  }

  .promo-timer {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .trust-grid.feature-grid,
  .trust-grid.problem-grid,
  .repair-grid-3,
  .repair-grid-4 {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  .locations-cities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .top-bar p {
    max-width: 38vw;
  }

  .top-bar-timer {
    font-size: 0;
  }

  .top-bar-timer strong {
    font-size: 11px;
    letter-spacing: 0.05em;
  }
}
