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

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e5e7eb;
  background: radial-gradient(circle at top, #020617 0, #020617 50%, #020617 100%);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15,23,42,0.96), rgba(15,23,42,0.9));
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.header-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-logo-mark {
  width: 40px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-shield {
  width: 100%;
  height: 100%;
  background-image: url("../assets/bell-shield.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.85));
}

.header-text {
  display: flex;
  flex-direction: column;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f97316;
  white-space: nowrap;
}

.header-phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #f97316, #ea580c, #b91c1c);
  color: #fefce8;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.7);
  font-weight: 700;
}

.header-phone-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.85);
}

.footer-callout {
  font-weight: 600;
  color: #e5e7eb;
}

.footer-phone-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 700;
}

.footer-phone-link:hover {
  text-decoration: underline;
}




/* old header-left removed */


.header-title {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.header-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav {
  display: flex;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background 150ms ease, transform 150ms ease;
}

.nav a:hover {
  background: rgba(148,163,184,0.16);
  transform: translateY(-1px);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 120ms ease, box-shadow 120ms ease, opacity 120ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c, #b91c1c);
  color: #f9fafb;
  box-shadow: 0 14px 32px rgba(0,0,0,0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
  opacity: 0.97;
}

.btn-full {
  width: 100%;
}

/* Hero */

.hero {
  padding: 3.2rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(185,28,28,0.38), transparent 58%),
    radial-gradient(circle at top right, rgba(37,99,235,0.32), transparent 60%),
    linear-gradient(to bottom, #020617, #020617);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-logo-panel {
  display: flex;
  justify-content: center;
}


.hero-logo-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-image {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 55px rgba(0,0,0,0.95));
}



.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 0.98rem;
  color: #d1d5db;
  max-width: 36rem;
}

.hero-bullets {
  list-style: none;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.hero-bullets li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #f97316;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #020617, #111827 60%, #020617 100%);
}

.section-dark {
  background: radial-gradient(circle at bottom right, #020617, #0b1120 55%, #020617 100%);
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section p {
  font-size: 0.94rem;
}

.section-lead {
  max-width: 40rem;
  color: #d1d5db;
}

/* Layout helpers */

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 2.25rem;
  align-items: center;
}

/* About */

.image-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.65);
  box-shadow: 0 22px 48px rgba(0,0,0,0.75);
}

/* Cards */


.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.3rem;
}

.card {
  position: relative;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 0 0, #111827, #020617 62%);
  border: 1px solid rgba(31,41,55,0.95);
  box-shadow: 0 22px 55px rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  overflow: visible;
  transform-origin: center;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, border-color 160ms ease-out;
}

.card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(59, 130, 246, 0.9));
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 160ms ease-out, filter 160ms ease-out;
}

.card-inner {
  position: relative;
  border-radius: inherit;
  background: radial-gradient(circle at top left, #020617, #020617);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,1);
  border-color: rgba(248,250,252,0.4);
}

.card:hover .card-border {
  opacity: 0.9;
  filter: drop-shadow(0 18px 45px rgba(248,113,113,0.85));
}

.card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}
/* Quote / form */

.quote-points {
  list-style: none;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  color: #d1d5db;
}

.quote-points li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.35rem;
}

.quote-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

.form-card {
  background: radial-gradient(circle at top left, #111827, #020617 70%);
  border-radius: 1.3rem;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid rgba(31,41,55,0.9);
  box-shadow: 0 24px 50px rgba(0,0,0,0.85);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.form-card label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: #e5e7eb;
  gap: 0.25rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(75,85,99,0.9);
  background: rgba(15,23,42,0.95);
  color: #f9fafb;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 2px solid #38bdf8;
  outline-offset: 1px;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(31,41,55,0.9);
  padding: 1.1rem 0 1.3rem;
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #9ca3af;
  justify-content: space-between;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-logo-panel {
    order: -1;
  }

  .hero {
    padding-top: 2.5rem;
  }

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

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.85rem;
  }

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

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 1.8rem;
  }
}

.hero-has-video {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(185,28,28,0.6), transparent 55%),
    radial-gradient(circle at top right, rgba(37,99,235,0.55), transparent 60%),
    linear-gradient(to bottom, rgba(2,6,23,0.9), rgba(2,6,23,0.98));
  z-index: -1;
}

.hero.hero-has-video .hero-copy h1,
.hero.hero-has-video .hero-copy p,
.hero.hero-has-video .hero-bullets li {
  text-shadow: 0 12px 32px rgba(0,0,0,0.9);
}


/* Hero logo tile with motion background */
.hero-logo-card {
  background: radial-gradient(circle at top left, #0f172a, #020617);
  border-radius: 1.8rem;
  padding: 0.75rem;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  max-width: 360px;
  margin-inline: auto;
}

.logo-video-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  isolation: isolate;
}

.logo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.3) contrast(1.1);
}

.logo-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.4), transparent 50%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.55), transparent 55%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.logo-on-video {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 260px;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.9));
}

/* 3D cards like Alpha site */
.cards-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.card {
  position: relative;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #020617, #020617);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.9), rgba(59, 130, 246, 0.85));
  opacity: 0.5;
  pointer-events: none;
}

.card-inner {
  position: relative;
  border-radius: inherit;
  background: radial-gradient(circle at top left, #020617, #020617);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* Responsive tweaks */
@media (min-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  }
}


/* Card body text hierarchy */
.card-body p {
  font-size: 0.96rem;
  color: #fef9c3;
  font-weight: 500;
  margin-top: 0.4rem;
  margin-bottom: 0.9rem;
}

.card-body ul {
  margin-top: 0.15rem;
}

.card-body li {
  margin-bottom: 0.3rem;
}


/* Brand logos row */
#brands .brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  align-items: center;
  margin-top: 1.6rem;
}

#brands .brand-row img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 35px rgba(0,0,0,0.85));
  opacity: 0.94;
}

/* Give Fire-Lite's logo a light badge so it is readable */
#brands .brand-row img[src*="firelite"] {
  background: #f9fafb;
  padding: 0.45rem 0.9rem;
  border-radius: 0.9rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.9);
}


/* Commercial fire protection section */
#commercial-fire .grid-two {
  align-items: center;
  gap: 2.6rem;
}

.commercial-fire-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.commercial-fire-heading span {
  font-size: 1.9rem;
}

.commercial-fire-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(248,113,113,0.95);
  box-shadow: 0 22px 60px rgba(0,0,0,0.95);
}

.commercial-fire-icon video,
.commercial-fire-icon {
  object-fit: cover;
}

.commercial-fire-bullets {
  list-style: none;
  margin-top: 1.1rem;
  font-size: 0.98rem;
  color: #d1d5db;
}

.commercial-fire-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.commercial-fire-bullets li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #f97316;
}


.card {
  display: flex;
  flex-direction: column;
}

.card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
}

/* Promo Banner */
.promo-banner {
  background: radial-gradient(circle at top left, #0f172a 0%, #020617 45%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(248, 250, 252, 0.06) 0, transparent 55%),
    radial-gradient(circle at bottom right, rgba(248, 250, 252, 0.04) 0, transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.promo-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2.3fr) minmax(0, 1.6fr);
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 1.5rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.92));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(10px);
}

.promo-banner-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at top left, #f97316, #ea580c, #b91c1c);
  color: #fefce8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.promo-banner-main h2 {
  font-size: 1.65rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #e5e7eb;
}

.promo-banner-main h2 span {
  color: #f97316;
}

.promo-banner-main p {
  margin: 0;
  font-size: 0.98rem;
  color: #cbd5f5;
}

.promo-banner-main strong {
  color: #facc15;
  font-weight: 700;
}

.promo-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.promo-price-tag {
  position: relative;
  padding: 0.65rem 0.9rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, #facc15, #f97316, #b45309);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.9);
  color: #111827;
  text-align: right;
}

.promo-price {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}

.promo-price-caption {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.promo-banner-button {
  font-weight: 600;
  padding-inline: 1.5rem;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .promo-banner-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
    align-items: flex-start;
  }

  .promo-banner-cta {
    align-items: flex-start;
  }
}

/* === Promo banner refinements === */
.promo-banner {
  background: linear-gradient(to bottom, #020617, #020617);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.promo-banner::before {
  opacity: 0.35;
}

.promo-banner-inner {
  max-width: 1120px;
  margin-inline: auto;
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.9);
}

.promo-banner-main h2 {
  font-size: 1.4rem;
}

.promo-banner-main p {
  font-size: 0.95rem;
}

.promo-price-tag {
  padding: 0.6rem 1rem;
}

.promo-price {
  font-size: 1.55rem;
}

@media (max-width: 900px) {
  .promo-banner-inner {
    padding: 1.35rem 1.25rem;
    gap: 1.25rem;
  }

  .promo-banner-badge {
    margin-bottom: 0.15rem;
  }

  .promo-banner-main h2 {
    font-size: 1.2rem;
  }

  .promo-banner-main p {
    font-size: 0.9rem;
  }

  .promo-banner-cta {
    align-items: flex-start;
  }
}

/* === Header mobile layout tweaks === */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
    font-size: 0.85rem;
  }

  .header-contact {
    font-size: 0.8rem;
  }

  .header-phone-link {
    padding-inline: 0.9rem;
  }
}

/* === Promo banner v2 layout & color tweaks === */
.promo-banner {
  background: #020617;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.promo-banner-inner {
  max-width: 1100px;
  margin-inline: auto;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.6fr);
  border-radius: 1.5rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
}

.promo-banner-badge {
  background: linear-gradient(90deg, #f97316, #fb923c);
}

.promo-banner-main h2 {
  font-size: 1.45rem;
}

.promo-banner-main p {
  max-width: 36rem;
}

.promo-banner-cta {
  align-items: flex-end;
}

.promo-price-tag {
  background: radial-gradient(circle at top left, #facc15, #f97316);
}

@media (max-width: 900px) {
  .promo-banner {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .promo-banner-inner {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 1.25rem;
  }

  .promo-banner-main h2 {
    font-size: 1.25rem;
  }

  .promo-banner-main p {
    max-width: none;
  }

  .promo-banner-cta {
    align-items: flex-start;
  }
}

/* === Promo tiles layout === */
.promo-banner {
  background: #020617;
  padding-block: 2.25rem;
}

.promo-banner-inner {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.promo-banner-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #e5e7eb;
}

.promo-banner-header p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: #cbd5f5;
}

.promo-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.promo-tile {
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.85), rgba(15, 23, 42, 0.98));
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.promo-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: #f9fafb;
}

.promo-tile p {
  margin: 0;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.promo-tile strong {
  color: #facc15;
}

@media (max-width: 900px) {
  .promo-banner {
    padding-block: 1.9rem;
  }

  .promo-banner-inner {
    padding-inline: 0;
  }

  .promo-banner-header h2 {
    font-size: 1.25rem;
  }

  .promo-tiles {
    grid-template-columns: minmax(0, 1fr);
  }

  .promo-tile {
    padding: 1.25rem 1.2rem;
  }
}

/* === Header mobile refinement v2 === */
@media (max-width: 768px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .header-left {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .header-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.9rem;
  }

  .header-contact {
    justify-content: flex-start;
    font-size: 0.85rem;
  }

  .header-phone-link {
    padding-inline: 0.9rem;
  }
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.7rem 0;
}

.site-header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}

@media (max-width: 1024px) {
  .site-header .nav {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .header-inner {
    gap: 0.4rem;
  }

  .header-top {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header-left {
    flex: 1 1 auto;
  }

  .site-header .nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .site-header .nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.9rem;
  }

  .header-contact {
    white-space: nowrap;
  }
}

/* Gradient headline for monitoring promo */
.promo-banner-header h2 {
  background: linear-gradient(90deg, #dc2626, #f97316, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.promo-banner-inner {
  padding-inline: 1.25rem;
}

@media (min-width: 1100px) {
  .promo-banner-inner {
    padding-inline: 0;
  }
}

/* Mobile header layout: keep desktop intact, improve stacking on small screens */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding-block: 0.75rem;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-left: 0;
    width: 100%;
  }

  .site-header .nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .site-header .nav a {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.9rem;
  }

  .header-contact {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}

/* Header layout refinements */
.site-header .header-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header .header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-call-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.header-call-row .header-call-label {
  font-weight: 600;
}

/* Mobile header layout tweaks */
@media (max-width: 768px) {
  .site-header .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-header .header-nav {
    width: 100%;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  .site-header .header-nav a {
    flex: 0 0 auto;
    text-align: center;
    font-size: 0.95rem;
  }

  .header-call-row {
    justify-content: center;
  }
}

/* Center alignment for monitoring promo heading + subtitle */
.promo-banner-header {
  text-align: center;
}

.promo-banner-header h2 {
  text-align: center;
}

.promo-banner-subtitle {
  text-align: center;
  max-width: 48rem;
  margin: 0.25rem auto 1.75rem auto;
}

/* === Header layout: inline on desktop, stacked on mobile === */
.site-header .header-inner {
  display: flex;
  justify-content: center;
}

.site-header .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.site-header .header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header .header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-call-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-call-label {
  font-weight: 600;
}

/* Mobile stacking: logo, nav, then call button */
@media (max-width: 768px) {
  .site-header .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-header .header-left {
    order: 1;
  }

  .site-header .header-nav {
    order: 2;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-header .header-nav a {
    flex: 1 1 48%;
    text-align: center;
    font-size: 0.95rem;
  }

  .header-call-row {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

/* === Mobile nav override: keep all 4 links on a single centered row === */
@media (max-width: 768px) {
  .site-header .header-top {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .site-header .header-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    flex-wrap: nowrap !important;
  }

  .site-header .header-nav a {
    flex: 0 0 auto !important;
    display: inline-flex;
    text-align: center;
    font-size: 0.95rem;
  }

  .header-call-row {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
