* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Layout helpers */
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.site-main {
  display: block;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .5rem .75rem;
  background: #111;
  color: #fff;
  border-radius: .25rem;
  z-index: 1100;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  text-decoration: none;
  color: #111;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.brand-logo {
  height: 54px;
  width: 54px;
  display: block;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 1.1rem;
  padding: .45rem;
  box-shadow: 0 10px 22px rgba(59, 130, 246, .18), inset 0 1px 2px rgba(37, 99, 235, .12);
  transition: transform .2s ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px);
}

.brand-text {
  font-size: 1.125rem;
  letter-spacing: -.01em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.header-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-weight: 600;
  cursor: pointer;
}

.header-toggle:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

.header-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.header-toggle__icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-open .header-toggle__icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .header-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-open .header-toggle__icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.primary-nav__list a {
  display: inline-flex;
  align-items: center;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.primary-nav__list a:hover {
  color: #1d4ed8;
  border-bottom-color: rgba(29, 78, 216, .3);
}

.primary-nav__list a:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: .35rem;
}

.primary-nav__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
}

.primary-nav__actions .btn {
  white-space: nowrap;
}

.dispatch-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, .14);
  color: #1d4ed8;
  font-weight: 600;
  font-size: .875rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
  white-space: nowrap;
}

.dispatch-badge::before {
  content: "●";
  font-size: .7rem;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 1rem;
  }

  .primary-nav__list {
    gap: .85rem;
  }

  .primary-nav__actions {
    gap: .5rem;
  }

  .primary-nav__actions .btn {
    min-width: 0;
    padding-inline: .75rem;
  }
}

@media (max-width: 900px) {
  .header-right {
    gap: .75rem;
  }

  .header-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 1rem;
    left: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .2);
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 90px);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
    pointer-events: none;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .primary-nav__actions {
    flex-direction: column;
    align-items: stretch;
    gap: .5rem;
    margin-top: 1.25rem;
  }

  .primary-nav__actions .btn {
    width: 100%;
  }

  .dispatch-badge {
    justify-content: center;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: .5rem;
  border: 2px solid #111;
  min-height: 44px;
  padding: .5rem .875rem;
  font-weight: 600;
  color: #111;
  background: #fff;
}

.btn:hover {
  background: #f5f5f5;
}

.btn:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

.btn-primary {
  background: #111;
  color: #fff;
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: #fff;
  color: #111;
}

.btn-lg {
  padding: .75rem 1rem;
  min-width: 220px;
}

.call-now {
  white-space: nowrap;
}

/* Hero */
.hero {
  padding: 2.75rem 0 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-wrap {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.hero-copy {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.hero-copy h1 {
  max-width: 26ch;
}

.hero .lead {
  font-size: 1.25rem;
  margin: 0.75rem 0 1.5rem;
  max-width: 54ch;
  color: var(--muted);
  font-weight: 400;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}

.helper-text {
  margin: .5rem 0 0;
  color: #374151;
  font-size: .9375rem;
}

.disclaimer-inline {
  margin-top: .75rem;
  color: #111;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-badge {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .75rem;
  row-gap: .35rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: .85rem;
  background: var(--surface);
  box-shadow: 0 6px 14px rgba(15, 23, 42, .06);
  align-items: start;
}

.trust-badge>div {
  display: contents;
}

.trust-badge__icon {
  width: 32px;
  height: 32px;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.trust-badge__title {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  grid-column: 2;
  grid-row: 1;
}

.trust-badge__caption {
  grid-column: 1 / span 2;
  grid-row: 2;
  margin: 0;
  font-size: .9375rem;
  color: var(--muted);
  text-align: left;
}

.hero-side {
  display: grid;
  gap: 1.5rem;
}

.hero-media {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 0% 0%, rgba(29, 78, 216, 0.12) 0%, rgba(29, 78, 216, 0) 60%), linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .06), 0 4px 12px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.hero-media-image {
  display: block;
  width: 100%;
  height: 100%;
}

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

.hero-quote {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 18px 32px rgba(15, 23, 42, .12), 0 6px 16px rgba(15, 23, 42, .08);
}

.hero-quote h2 {
  font-size: 1.2rem;
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}

.hero-quote__form {
  display: grid;
  gap: .75rem;
}

.hero-quote__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.hero-quote__field label {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--muted);
}

.hero-quote__field input,
.hero-quote__field select {
  padding: .65rem .75rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.hero-quote__field input:focus-visible,
.hero-quote__field select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-color: transparent;
}

.hero-quote .btn {
  width: 100%;
}

.hero-quote__note {
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .hero-quote__form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-quote__form .hero-quote__field:nth-child(3),
  .hero-quote__form .btn {
    grid-column: span 2;
  }
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-wrap {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  }

  .hero-quote {
    padding: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.25rem 0 2.75rem;
  }

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

  .cta-group .btn {
    flex: 1 1 100%;
  }

  .hero-media {
    order: -1;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.5rem;
}

.section-header p {
  margin: 0;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 54ch;
}

.service-icon-cards {
  margin-bottom: 1.5rem;
}

.service-area__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.service-area__map {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, .12), 0 8px 16px rgba(15, 23, 42, .08);
  background: #fff;
}

.service-area__map img {
  display: block;
  width: 100%;
  height: auto;
}

.service-area__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-area__list {
  display: grid;
  gap: 1rem;
}

.service-area__points {
  margin: .5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .35rem;
  color: var(--muted);
  font-size: .9375rem;
}

.service-area__points li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.4;
}

.service-area__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
}

.service-area__details .note {
  margin: .5rem 0 0;
}

.for-facilities__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

.facility-points {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
  color: var(--muted);
  font-size: .95rem;
}

.facility-points li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
}

.facility-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--accent);
}

.facility-cta {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 18px 32px rgba(15, 23, 42, .1), 0 6px 16px rgba(15, 23, 42, .08);
  padding: 1.5rem;
  display: grid;
  gap: .75rem;
  align-content: start;
}

.facility-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1.25rem;
  background: #eef2ff;
  border: 1px solid #dbeafe;
  box-shadow: inset 0 1px 2px rgba(37, 99, 235, .12);
}

.facility-cta__icon img {
  width: 32px;
  height: 32px;
}

.facility-cta__note {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

.safety-checklist {
  margin-bottom: 1.5rem;
}

@media (min-width: 900px) {
  .service-area__grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }

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

@media (min-width: 640px) {
  .service-area__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .service-area__grid,
  .for-facilities__grid {
    grid-template-columns: 1fr;
  }

  .facility-cta {
    padding: 1.25rem;
  }
}

/* How it works */
.how-it-works {
  padding: 2rem 0;
  border-top: 1px solid #f3f4f6;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: step;
  padding: 0;
  list-style: none;
}

.steps>li {
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  padding: 1rem;
  background: #fff;
}

.steps>li h3 {
  margin: 0 0 .25rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.services,
.service-area,
.for-facilities,
.safety,
.testimonials,
.faq {
  padding: 2rem 0;
  border-top: 1px solid #f3f4f6;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: 1rem;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .03);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.card-link {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.card-link:hover h3 {
  text-decoration: underline;
}

.card-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: .5rem;
}

@media (min-width: 768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.link-arrow {
  color: #1f2937;
  text-underline-offset: 3px;
}

.link-arrow:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

/* Notes & disclaimers */
.note {
  margin-top: .5rem;
  padding: .75rem;
  border: 1px solid #f59e0b;
  background: #fffbeb;
  border-radius: .5rem;
}

.disclaimer-full {
  background: #fff7cc;
  border-top: 2px solid #f59e0b;
  border-bottom: 2px solid #f59e0b;
}

.disclaimer-full .wrap {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  background: #fafafa;
}

.site-footer .wrap {
  display: grid;
  gap: 1rem;
}

.footer-columns {
  display: grid;
  gap: 2rem;
  margin: 1.5rem 0;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-nav-group h3 {
  margin: 0 0 .5rem;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #111;
}

.footer-nav-group a {
  color: #1f2937;
  text-decoration: none;
  font-size: .9375rem;
}

.footer-nav-group a:hover {
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.footer-nav a {
  color: #1f2937;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  border-bottom-color: #1f2937;
}

.phi-note,
.a11y-note {
  color: #374151;
  font-size: .9375rem;
  margin: 0;
}

.copyright {
  color: #374151;
  font-size: .875rem;
}

@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Focus styles for links */
a:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 2px;
}

/* --- Enhancements for improved UI & UX --- */
:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #374151;
  --border: #e5e7eb;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --accent: #1d4ed8;
  --warn: #f59e0b;
}

/* Typography scale */
h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text);
}

h2 {
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--text);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--text);
}

h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

p {
  margin: 0 0 1.25rem;
  max-width: 65ch;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.5rem;
}

/* Header polish */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.steps>li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: .85rem;
  top: .9rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Cards elevation */
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .06);
}

/* Link affordance */
.link-arrow {
  position: relative;
}

.link-arrow::after {
  content: "\2192";
  margin-left: .35rem;
  transition: transform .2s ease;
}

.link-arrow:hover::after {
  transform: translateX(2px);
}

/* Disclaimer emphasis */
.note {
  border: 1px solid var(--warn);
}

.disclaimer-full {
  border-top: 2px solid var(--warn);
  border-bottom: 2px solid var(--warn);
}

/* Footer tweaks */
.footer-nav a {
  padding: .25rem 0;
}

.site-footer {
  border-top: 1px solid var(--border);
}

/* Mobile bottom CTA bar */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: .5rem;
  display: none;
  gap: .5rem;
  z-index: 1001;
  box-shadow: 0 -1px 6px rgba(0, 0, 0, .06);
}

.mobile-cta .btn {
  flex: 1 1 auto;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
  }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}