:root {
  --navy-950: #041d3d;
  --navy-900: #062b60;
  --navy-800: #0b4a95;
  --navy-700: #1f5fad;
  --navy-100: #e8f0f8;
  --silver-800: #5d6670;
  --silver-700: #757d86;
  --silver-500: #9ca3aa;
  --silver-300: #cfd4d8;
  --silver-200: #e6e9ec;
  --silver-100: #f3f5f7;
  --ink: #16202c;
  --muted: #5b6774;
  --white: #ffffff;
  --line: rgba(6, 43, 96, 0.12);
  --shadow: 0 24px 70px rgba(4, 29, 61, 0.16);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-900);
}
.skip-link:focus { top: 16px; }

.container { width: min(100% - 48px, var(--container)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-shell { padding: 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.78); }
h1, h2, h3, strong { letter-spacing: -0.02em; }
h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}
p { margin: 0; }

.announcement {
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}
.announcement-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announcement-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.7); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(6, 43, 96, .08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(4,29,61,.08); }
.nav-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  width: 440px;
}
.brand img { width: 100%; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 700;
}
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--navy-700);
  transition: transform .22s ease;
}
.main-nav > a:not(.button):hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 14px 36px rgba(6, 43, 96, .18);
}
.button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.button-light {
  color: var(--navy-950);
  background: #fff;
  border-color: rgba(255,255,255,.25);
  box-shadow: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}
.text-link.light { color: #fff; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 3px;
  background: var(--navy-950);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, rgba(4,29,61,.94), rgba(11,74,149,.88));
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4,29,61,.84), rgba(4,29,61,.58)),
    url('assets/hero-building.png');
  background-size: cover;
  background-position: center;
  opacity: .98;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.08));
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
  padding-top: 70px;
  padding-bottom: 80px;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6.3vw, 84px);
  line-height: .98;
}
.hero h1 span { color: #d9e4f0; }
.hero-lede {
  margin-top: 24px;
  max-width: 610px;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.85;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-proof {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.hero-proof div {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-proof strong,
.hero-proof span { display: block; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { margin-top: 6px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.5; }
.hero-visual { position: relative; }
.hero-image-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background-image: url('assets/hero-card-office.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,29,61,.15), rgba(4,29,61,.78));
}
.hero-card-topline,
.hero-card-copy { position: relative; z-index: 1; }
.hero-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 0;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 28px 30px;
}
.hero-card-copy strong {
  display: block;
  max-width: 480px;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1.18;
}
.hero-mini-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-mini-grid div {
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-mini-grid b,
.hero-mini-grid span { display: block; }
.hero-mini-grid b { font-size: 13px; }
.hero-mini-grid span { margin-top: 4px; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.45; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-grid span + span { border-left: 1px solid var(--line); }

.section-heading { margin-bottom: 44px; }
.split-heading {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 60px;
  align-items: end;
}
.split-heading p,
.centered p,
.faq-intro p,
.about-copy p,
.contact-copy p,
.commercial-copy p { color: var(--muted); font-size: 16px; line-height: 1.85; }
.centered { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.centered p { margin-top: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.service-card {
  position: relative;
  min-height: 292px;
  padding: 36px 32px 30px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-card:hover { z-index: 2; transform: translateY(-5px); background: #fbfcfd; box-shadow: 0 20px 44px rgba(3,27,56,.09); }
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-100), #f0f5fb);
}
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: var(--navy-800); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.service-number { position: absolute; top: 37px; right: 30px; color: var(--silver-500); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 0 0 11px; color: var(--navy-950); font-size: 20px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.section-healthcare {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}
.section-healthcare::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.healthcare-grid,
.commercial-grid,
.about-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}
.image-panel {
  min-height: 520px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.healthcare-photo {
  background-image:
    linear-gradient(180deg, rgba(4,29,61,.14), rgba(4,29,61,.2)),
    url('assets/healthcare-facility.png');
}
.commercial-photo {
  background-image:
    linear-gradient(180deg, rgba(4,29,61,.08), rgba(4,29,61,.16)),
    url('assets/commercial-office.png');
}
.healthcare-visual,
.commercial-visual { position: relative; }
.image-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 20px 22px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.image-note span,
.image-note strong { display: block; }
.image-note span { margin-bottom: 6px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.image-note strong { font-family: Georgia, serif; font-size: 24px; line-height: 1.18; }
.healthcare-note {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
}
.healthcare-copy h2 { color: #fff; }
.healthcare-copy > p,
.healthcare-list p { color: rgba(255,255,255,.74); }
.healthcare-list { margin: 34px 0 0; }
.healthcare-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.healthcare-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.healthcare-list > div > span { color: #9db5cd; font-size: 11px; font-weight: 800; }
.healthcare-list strong { color: #fff; font-size: 15px; }
.healthcare-list p { margin-top: 6px; font-size: 13px; line-height: 1.75; }

.commercial-grid { align-items: center; }
.commercial-note {
  left: 24px;
  bottom: 24px;
  right: auto;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(6,43,96,.08);
  color: var(--navy-950);
}
.check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; color: #38485a; border-bottom: 1px solid var(--line); }
.check-list span { flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-100); color: var(--navy-700); font-size: 12px; font-weight: 900; }

.approach-section { background: var(--silver-100); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.process-step { min-height: 280px; padding: 32px 28px; background: #fff; }
.process-step > span { display: inline-grid; place-items: center; width: 44px; height: 44px; margin-bottom: 74px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; font-size: 11px; font-weight: 800; }
.process-step h3 { margin: 0 0 9px; color: var(--navy-950); font-size: 20px; }
.process-step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.logo-stage {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 54px;
  border-radius: 28px;
  background: linear-gradient(145deg, #f6f8fa, #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.logo-stage img { width: min(100%, 700px); }
.brand-quote {
  margin-top: 30px;
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--navy-700);
  color: var(--navy-950);
  font-family: Georgia, serif;
  font-size: 24px;
}

.faq-section { background: #fbfcfd; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  text-align: left;
  font-size: 16px;
  font-weight: 750;
}
.faq-item button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--navy-100);
  color: var(--navy-800);
  font-style: normal;
  font-size: 20px;
  transition: transform .2s ease;
}
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 54px 24px 0; }
.faq-item.open button i { transform: rotate(45deg); }

.contact-section {
  padding: 112px 0;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: #fff;
}
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.75); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.contact-details a,
.contact-details span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.contact-form {
  padding: 34px;
  border-radius: 26px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
}
.contact-form select option { color: #111; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.5); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,.45); }
.form-submit { width: 100%; margin-top: 8px; }
.form-note,
.form-status { margin-top: 14px; color: rgba(255,255,255,.68); font-size: 13px; }

.site-footer { padding: 54px 0 22px; background: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .72fr .72fr 1fr;
  gap: 46px;
  align-items: start;
}
.footer-brand img { width: min(100%, 420px); }
.footer-brand p,
.footer-links a,
.footer-bottom { color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong,
.footer-statement span { color: var(--navy-950); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.footer-statement strong { display: block; margin-top: 14px; color: var(--navy-950); font-family: Georgia, serif; font-size: 28px; line-height: 1.2; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.footer-contact a { color: var(--navy-800); font-weight: 700; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.services-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2) { transition-delay: .06s; }
.services-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3) { transition-delay: .12s; }
.services-grid .reveal:nth-child(4), .process-grid .reveal:nth-child(4) { transition-delay: .18s; }
.services-grid .reveal:nth-child(5) { transition-delay: .24s; }
.services-grid .reveal:nth-child(6) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; min-height: auto; }
  .hero-copy { max-width: none; }
  .brand { width: 320px; }
  .healthcare-grid,
  .commercial-grid,
  .about-grid,
  .faq-grid,
  .contact-grid,
  .split-heading { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-statement { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 34px, var(--container)); }
  .section { padding: 80px 0; }
  .announcement-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement-inner span:last-child, .announcement-dot { display: none; }
  .nav-wrap { min-height: 110px; }
  .brand { width: 240px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 124px;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 24px;
    background: #fff;
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.button) { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 22px; }

  .hero-grid { padding-top: 56px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(48px, 10vw, 68px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-image-card { min-height: 460px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid span + span { border-left: none; }
  .trust-grid span:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-grid span:nth-child(n+3) { border-top: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-statement { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .brand { width: 280px; }
  .hero-grid { padding-top: 44px; }
  .hero h1 { font-size: 44px; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-image-card { min-height: 420px; }
  .hero-card-copy { padding: 0 18px 20px; }
  .hero-card-copy strong { font-size: 24px; }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .services-grid,
  .process-grid { grid-template-columns: 1fr; }
  h2 { font-size: 38px; }
  .image-panel { min-height: 380px; }
  .image-note { left: 18px; right: 18px; bottom: 18px; max-width: none; }
  .image-note strong { font-size: 20px; }
  .logo-stage { min-height: 280px; padding: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

/* ===== HFZ RED + BLUE BRAND REFINEMENT ===== */
:root {
  --hfz-red: #c51f2b;
  --hfz-red-dark: #9f1720;
  --hfz-red-soft: #fbeaec;
  --hfz-blue: #07346b;
  --hfz-blue-dark: #041d3d;
}

.announcement {
  background: linear-gradient(90deg, var(--hfz-blue-dark) 0%, var(--hfz-blue) 84%, var(--hfz-red) 84%, var(--hfz-red) 100%);
}
.site-header { border-bottom: 3px solid var(--hfz-red); }
.brand { width: 440px; }
.brand img { max-height: 128px; width: auto; object-fit: contain; }
.main-nav > a:not(.button)::after { background: var(--hfz-red); }
.button {
  background: linear-gradient(135deg, var(--hfz-red), var(--hfz-red-dark));
  box-shadow: 0 14px 36px rgba(197,31,43,.24);
}
.eyebrow { color: var(--hfz-red); }
.hero {
  background: linear-gradient(135deg, rgba(4,29,61,.98), rgba(7,52,107,.92));
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: var(--hfz-red);
  z-index: 2;
}
.hero h1 span { color: #ffffff; }
.hero-copy .eyebrow { color: #ffffff; }
.hero-copy .eyebrow::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 3px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--hfz-red);
  border-radius: 999px;
}
.hero-image-card { border: 2px solid rgba(197,31,43,.75); }
.hero-mini-grid div { border-left: 3px solid var(--hfz-red); }
.trust-grid span:nth-child(even) { color: var(--hfz-red); }
.service-number { color: var(--hfz-red); }
.service-card:hover { box-shadow: inset 0 4px 0 var(--hfz-red), 0 20px 44px rgba(3,27,56,.09); }
.section-healthcare { background: linear-gradient(135deg, var(--hfz-blue-dark), var(--hfz-blue)); }
.section-healthcare::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 6px;
  background: var(--hfz-red);
}
.healthcare-list > div > span { color: #ff7a82; }
.healthcare-note span { color: #ffbcc1; }
.commercial-note span { color: var(--hfz-red); }
.check-list span { background: var(--hfz-red); color: #fff; }
.process-step > span {
  background: var(--hfz-blue);
  border: 3px solid var(--hfz-red);
}
.brand-quote { border-left: 4px solid var(--hfz-red); }
.faq-item button i { background: var(--hfz-red-soft); color: var(--hfz-red); }
.contact-section {
  border-top: 7px solid var(--hfz-red);
  background: linear-gradient(135deg, var(--hfz-blue-dark), var(--hfz-blue));
}
.contact-section .eyebrow { color: #fff; }
.contact-details a:hover { color: #ffbcc1; }
.form-submit {
  color: #fff;
  background: linear-gradient(135deg, var(--hfz-red), var(--hfz-red-dark));
  border-color: transparent;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--hfz-red); }
.footer-statement { border-top: 3px solid var(--hfz-red); padding-top: 18px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.footer-contact a { color: var(--hfz-blue); font-weight: 700; }

@media (max-width: 820px) {
  .brand { width: 320px; }
  .brand img { max-height: 94px; }
}
