:root {
  --spa-primary-blue: #0194d9;
  --spa-primary-blue-dark: #056ea1;
  --spa-primary-green: #01a552;
  --spa-deep-blue: #04567f;
  --spa-neutral-light: #f9fafb;
  --spa-neutral-surface: #ffffff;
  --spa-text-primary: #1c1c1c;
  --spa-text-muted: #5c6270;
  --spa-border-light: #e2e2e2;
  --spa-shadow: 0 18px 40px rgba(4, 33, 74, 0.18);
  --spa-header-height: 82px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #cfe9f7 0%, #f8fbff 60%, #f9fafb 100%);
  color: var(--spa-text-primary);
  overflow-x: hidden;
}

#spa-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.spa-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(4, 33, 74, 0.08);
  animation: fadeUp 0.8s ease;
}

.spa-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spa-brand-logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.spa-brand-name {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--spa-deep-blue);
}

.spa-brand-tagline {
  font-size: 0.82rem;
  color: var(--spa-text-muted);
}

.spa-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.spa-nav button {
  background: transparent;
  border: none;
  color: var(--spa-text-muted);
  padding: 0.35rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.spa-nav button.is-active,
.spa-nav button:hover {
  color: var(--spa-primary-blue);
  border-bottom: 2px solid var(--spa-primary-blue);
  border-radius: 0;
}

.spa-header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.spa-header-cta a {
  color: var(--spa-deep-blue);
  font-weight: 700;
  text-decoration: none;
}

.spa-header-cta .primary {
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  border: none;
  background: var(--spa-primary-green);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

#spa-app-content {
  flex: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0.75rem 2rem;
}

.spa-section {
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease;
}

.spa-section-placeholder {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px dashed rgba(1, 148, 217, 0.25);
  border-radius: 1.2rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.spa-section h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  color: var(--spa-deep-blue);
}

.spa-section p {
  color: var(--spa-text-muted);
}

.spa-hero {
  background: linear-gradient(135deg, var(--spa-primary-blue), var(--spa-primary-blue-dark));
  border-radius: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: calc(100vh - var(--spa-header-height));
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  align-items: center;
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
  color: #fff;
  box-shadow: var(--spa-shadow);
}

.spa-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.spa-hero-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
  background: rgba(5, 110, 161, 0.7);
  padding: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  margin: 0.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  min-height: 100%;
  background: #06253d;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 33, 74, 0.05) 0%, rgba(4, 33, 74, 0.35) 80%);
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  position: absolute;
  z-index: 2;
}

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

.hero-slide-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.hero-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 0.85rem;
  pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(4, 33, 74, 0.12);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--spa-primary-blue-dark);
  cursor: pointer;
  box-shadow: 0 10px 16px rgba(4, 33, 74, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(4, 33, 74, 0.3);
}

.hero-dots {
  pointer-events: auto;
  display: flex;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(6, 37, 61, 0.3);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--spa-primary-blue);
  border-color: var(--spa-primary-blue-dark);
}

.spa-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 3.6vw, 4rem);
  line-height: 1.05;
}

.spa-subtitle {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.6rem;
}

.spa-hero-content p {
  color: rgba(255, 255, 255, 0.86);
}

.spa-hero-meta {
  margin: 1.5rem 0 0.75rem;
}

.spa-cta-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spa-cta-grid button {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.spa-cta-grid button.primary {
  background: #0194d9;
  color: #fff;
  box-shadow: 0 12px 30px rgba(1, 148, 217, 0.35);
}

.spa-cta-grid button.secondary {
  background: #01a552;
  color: #fff;
  box-shadow: 0 12px 30px rgba(1, 165, 82, 0.35);
}

.spa-cta-grid button:hover {
  transform: translateY(-2px);
}

.spa-hero-proof {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.spa-hero-proof span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.value-strip {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  border: 1px solid var(--spa-border-light);
  box-shadow: 0 10px 30px rgba(7, 31, 72, 0.1);
}

.value-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(1, 148, 217, 0.12);
  color: var(--spa-primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.value-item strong {
  font-size: 0.95rem;
  color: var(--spa-text-primary);
}

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

.leadership-section {
  background: var(--spa-neutral-surface);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(4, 33, 74, 0.08);
}

.leadership-intro {
  color: var(--spa-text-muted);
  margin-bottom: 1.5rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.leader-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--spa-border-light);
  box-shadow: 0 12px 32px rgba(4, 33, 74, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leader-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--spa-deep-blue);
}

.leader-title {
  margin: 0.15rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--spa-primary-blue-dark);
}

.leader-credentials {
  margin: 0;
  font-size: 0.85rem;
  color: var(--spa-text-muted);
}

.leader-summary {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--spa-text-muted);
}

.leader-highlights {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--spa-text-primary);
  display: grid;
  gap: 0.25rem;
}

.clientele-section {
  background: linear-gradient(135deg, rgba(1, 148, 217, 0.06), rgba(1, 165, 82, 0.08));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(1, 148, 217, 0.2);
}

.clientele-intro {
  color: var(--spa-text-muted);
  margin-bottom: 1.25rem;
}

.clientele-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.clientele-slider-viewport {
  overflow: hidden;
}

.clientele-slider-track {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.25rem;
  scroll-behavior: smooth;
}

.client-logo {
  min-width: 140px;
  max-width: 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid rgba(1, 148, 217, 0.18);
  box-shadow: 0 10px 22px rgba(4, 33, 74, 0.08);
  padding: 0.75rem;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.clientele-slider .slider-prev,
.clientele-slider .slider-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(1, 148, 217, 0.2);
  background: #fff;
  color: var(--spa-primary-blue-dark);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(4, 33, 74, 0.12);
}

.clientele-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.clientele-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  color: var(--spa-text-primary);
  font-size: 0.9rem;
  border: 1px solid rgba(1, 148, 217, 0.25);
  box-shadow: 0 8px 20px rgba(4, 33, 74, 0.08);
}

.service-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--spa-border-light);
  box-shadow: 0 15px 35px rgba(5, 81, 144, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-icon {
  font-size: 1.3rem;
  color: var(--spa-primary-green);
}
.service-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.service-card a {
  font-weight: 600;
  color: var(--spa-primary-blue-dark);
  text-decoration: none;
}

.staffing-section {
  background: var(--spa-neutral-surface);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 25px 50px rgba(4, 33, 74, 0.15);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.staffing-visual img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--spa-border-light);
}

.staffing-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.staffing-stat {
  padding: 1rem;
  border-radius: 1rem;
  background: #f1f6fb;
  border: 1px solid rgba(1, 148, 217, 0.2);
}

.staffing-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--spa-primary-blue);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border-radius: 1.2rem;
  background: #fff;
  padding: 1.4rem;
  border: 1px solid var(--spa-border-light);
  box-shadow: 0 12px 40px rgba(4, 33, 74, 0.08);
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.testimonial-rating svg {
  width: 16px;
  height: 16px;
  fill: #ffc107;
}

.testimonial-card p {
  margin: 0.35rem 0;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--spa-text-muted);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.impact-card {
  background: var(--spa-primary-blue);
  color: #fff;
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: 0 16px 30px rgba(1, 34, 90, 0.18);
}

.impact-card strong {
  font-size: 1.8rem;
  display: block;
}

.training-section {
  background: linear-gradient(135deg, rgba(1, 165, 82, 0.15), rgba(1, 148, 217, 0.15));
  border-radius: 1.75rem;
  padding: 2rem;
  border: 1px solid rgba(1, 165, 82, 0.4);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.training-section ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--spa-text-primary);
}

.training-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--spa-primary-green);
}

.training-visual img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(1, 165, 82, 0.25);
  box-shadow: 0 14px 28px rgba(4, 33, 74, 0.12);
}

.coverage-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.coverage-map-widget {
  min-height: 360px;
  height: 100%;
  border-radius: 1.5rem;
  border: 1px solid var(--spa-border-light);
  overflow: hidden;
  position: relative;
}

.coverage-map-widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.coverage-map-pin {
  position: absolute;
  bottom: 0.6rem;
  left: 0.8rem;
  padding: 0.35rem 0.8rem;
  background: rgba(1, 20, 55, 0.8);
  color: #fff;
  font-size: 0.8rem;
  border-radius: 0.4rem;
}

.coverage-map-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--spa-text-muted);
  background: #e7f1f8;
  font-weight: 600;
}

.coverage-info ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.contact-section {
  background: var(--spa-primary-blue-dark);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #fff;
  box-shadow: var(--spa-shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-cta-grid {
  margin: 1.25rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-cta-grid button {
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-cta-grid button.primary {
  background: #0194d9;
  color: #fff;
}

.contact-cta-grid button.secondary {
  background: #01a552;
  color: #fff;
}

.contact-info-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-info-card a {
  color: #fff;
}

.contact-social {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
}

.contact-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-social .social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.35);
}

.contact-social .social-link svg {
  width: 18px;
  height: 18px;
}

.contact-form-card {
  background: #fff;
  color: var(--spa-text-primary);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 14px 32px rgba(4, 33, 74, 0.18);
}

.contact-form-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 0.5rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin-top: 0.4rem;
  border-radius: 0.6rem;
  border: 1px solid var(--spa-border-light);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border-radius: 999px;
  background: var(--spa-primary-blue);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.contact-form button:hover {
  transform: translateY(-1px);
}

.spa-response {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.spa-response--success {
  color: #1e7f3f;
}

.spa-response--error {
  color: #b42318;
}


.spa-footer {
  margin-top: 3rem;
  padding: 2.5rem 1.5rem 1.5rem;
  background: rgba(4, 33, 74, 0.98);
  color: #f4f7fb;
}

.spa-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1.4fr));
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-col {
  font-size: 0.9rem;
}

.footer-col--brand {
  max-width: 320px;
}

.footer-col--contact {
  min-width: 220px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-tagline {
  margin: 0;
  color: rgba(244, 247, 251, 0.85);
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  color: rgba(244, 247, 251, 0.9);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-links li button {
  border: none;
  background: none;
  padding: 0;
  color: rgba(244, 247, 251, 0.8);
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
}

.footer-links li button:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact-line {
  margin: 0 0 0.4rem;
  color: rgba(244, 247, 251, 0.9);
  font-size: 0.9rem;
}

.footer-contact-line a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-line a:hover {
  text-decoration: underline;
}

.footer-accreditation {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  color: rgba(244, 247, 251, 0.8);
}

.footer-accreditation-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-social {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social a {
  font-size: 0.86rem;
  text-decoration: none;
  color: #ffffff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 247, 251, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-social a:hover {
  background: rgba(244, 247, 251, 0.08);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(244, 247, 251, 0.75);
}

.footer-copy {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  text-decoration: underline;
}

.footer-back-to-top {
  border: none;
  background: rgba(244, 247, 251, 0.08);
  color: inherit;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-back-to-top:hover {
  background: rgba(244, 247, 251, 0.16);
}


.spa-fallback {
  text-align: center;
  max-width: 640px;
  margin: 2rem auto;
  color: var(--spa-text-muted);
  font-size: 0.95rem;
}

.spa-section--staffing .staffing-section {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .spa-header {
    flex-wrap: wrap;
  }

  :root {
    --spa-header-height: 96px;
  }

  .spa-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    grid-template-columns: 1fr;
    min-height: 60vh;
  }

  .spa-hero-media {
    position: relative;
    min-height: 320px;
  }

  .value-strip {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .staffing-section {
    padding: 1.75rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  :root {
    --spa-header-height: 110px;
  }

  .spa-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .spa-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 2.25rem 1.25rem;
  }

  .hero-slider-controls {
    bottom: 1rem;
  }

  .hero-slider {
    min-height: 260px;
  }

  .value-strip {
    padding: 1rem 0.75rem;
  }

  .services-grid,
  .testimonials,
  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    grid-template-columns: 1fr;
  }
}
