:root {
  --green: #0f7d5d;
  --green-dark: #09543f;
  --teal: #18a7a0;
  --mint: #e9f8f3;
  --ink: #10231d;
  --muted: #60726b;
  --line: #dfe9e4;
  --white: #ffffff;
  --soft: #f6faf8;
  --gold: #f3b53f;
  --shadow: 0 18px 45px rgba(16, 35, 29, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green-dark);
}

.logo img {
  width: 210px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  color: var(--ink);
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--green); }
.nav-links .btn-primary:hover { color: var(--green-dark); }

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  min-width: 310px;
  padding: 18px 10px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown a {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  line-height: 1.35;
}

.nav-dropdown a:hover {
  background: var(--mint);
  color: var(--green-dark);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: var(--green-dark);
  position: relative;
  content: "";
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(9, 84, 63, 0.14);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-height: 54px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(16, 35, 29, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary,
.btn-light,
.btn-outline {
  background: var(--white);
  color: var(--green-dark);
  border-color: rgba(9, 84, 63, 0.14);
  box-shadow: 0 10px 24px rgba(16, 35, 29, 0.1);
}

.btn-primary:hover,
.btn-light:hover,
.btn-outline:hover {
  background: #f8fffc;
  color: var(--green-dark);
  border-color: rgba(9, 84, 63, 0.28);
  box-shadow: 0 14px 30px rgba(16, 35, 29, 0.16);
}

.hero {
  position: relative;
  min-height: max(620px, calc(100svh - 78px));
  color: var(--white);
  overflow: hidden;
  background: var(--green-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 54, 39, 0.9), rgba(5, 54, 39, 0.56), rgba(5, 54, 39, 0.22));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: max(620px, calc(100svh - 78px));
  display: flex;
  align-items: center;
  max-width: var(--max);
  padding-bottom: 54px;
}

.eyebrow {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin: 0 0 12px;
}

.hero .eyebrow { color: #7ff0dc; }

h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 14px; color: var(--ink); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.15rem);
  max-width: 780px;
  line-height: 1.08;
  margin-bottom: 22px;
}
h1 { font-size: clamp(2rem, 4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; color: var(--muted); }
.hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.14rem;
  max-width: 820px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.slider-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
}
.slider-dots button.active { background: var(--white); }

/* Homepage scroll reveals */
.home-page .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.home-page .scroll-reveal.reveal-from-left {
  transform: translate3d(-34px, 0, 0);
}

.home-page .scroll-reveal.reveal-from-right {
  transform: translate3d(34px, 0, 0);
}

.home-page .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-page .image-card.scroll-reveal img,
.home-page .compliance-media.scroll-reveal img {
  transform: scale(1.045);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .image-card.scroll-reveal.is-revealed img,
.home-page .compliance-media.scroll-reveal.is-revealed img {
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .home-page .scroll-reveal,
  .home-page .image-card.scroll-reveal img,
  .home-page .compliance-media.scroll-reveal img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-mint { background: var(--mint); }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 25px rgba(16, 35, 29, 0.06);
}

.service-card { min-height: 230px; }
.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.image-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.map-card {
  overflow: hidden;
  min-height: 450px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.feature-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 10px; color: var(--ink); font-weight: 700; }
.feature-list li::before { content: "✓"; color: var(--green); font-weight: 900; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}
.stat { background: var(--mint); border-radius: var(--radius); padding: 22px; }
.stat strong { display: block; color: var(--green-dark); font-size: 2.2rem; line-height: 1; }
.stat span { color: var(--muted); font-weight: 800; }

.steps { counter-reset: steps; }
.step-card { position: relative; padding-top: 54px; }
.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--teal);
  font-weight: 900;
  font-size: 1.5rem;
}

.testimonial { display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.person strong { display: block; }
.person span { color: var(--muted); font-size: 0.92rem; }

.page-hero {
  background: linear-gradient(110deg, rgba(9, 84, 63, 0.94), rgba(24, 167, 160, 0.8)), url("../../images/1711717534205.png") center/cover;
  color: var(--white);
  padding: 110px 0;
}
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero p { max-width: 780px; }

.split-content { display: grid; gap: 24px; }
.content-block {
  padding: 34px;
  border-left: 4px solid var(--green);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(16, 35, 29, 0.06);
}

.long-copy {
  display: grid;
  gap: 14px;
}

.long-copy h2 {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.long-copy h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.long-copy p {
  margin-bottom: 0;
}

.about-health {
  padding: 64px 0;
}

.about-health-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.about-health-media {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) minmax(220px, 0.82fr);
  gap: 16px;
}

.about-health-image {
  align-self: stretch;
  min-height: 0;
  box-shadow: 0 18px 42px rgba(16, 35, 29, 0.1);
}

.about-health-image img {
  min-height: 100%;
}

.about-health-image-wide img {
  object-position: center;
}

.about-health-copy {
  gap: 12px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.about-health-copy h2 {
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.1;
}

.about-health-copy h2:not(:first-child) {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-health-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.copy-list-item {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 700;
}

.copy-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.services-page .page-hero {
  background: linear-gradient(110deg, rgba(9, 84, 63, 0.9), rgba(24, 167, 160, 0.68)), url("../../images/Teams-8.jpg") center/cover;
}

.service-showcase {
  padding: 34px 0;
  color: var(--ink);
  background: var(--white);
}

.services-page .page-hero + .service-showcase {
  padding-top: 72px;
}

.services-page .service-showcase:nth-of-type(7) {
  padding-bottom: 72px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(16, 35, 29, 0.08);
}

.service-row img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(16, 35, 29, 0.1);
}

.service-copy h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.14;
  margin-bottom: 14px;
}

.service-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
  font-weight: 400;
  margin-bottom: 0;
}

.service-copy p + p {
  margin-top: 10px;
}

.service-full {
  margin: 18px 0 0;
  padding: clamp(24px, 4vw, 34px);
  background: #f8fcfa;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
}

.service-full h2 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.service-expertise {
  background: var(--soft);
  padding: 72px 0;
}

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

.expertise-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 28px 30px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 35, 29, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(24, 167, 160, 0.45);
  box-shadow: var(--shadow);
}

.expertise-card span {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 82px;
  padding: 6px 13px;
  border-bottom-left-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.expertise-card img {
  width: calc(100% + 56px);
  height: 170px;
  object-fit: cover;
  margin: 0 -28px 24px;
  border-bottom: 1px solid var(--line);
}

.expertise-card h3 {
  color: var(--green-dark);
  font-size: 1.28rem;
  margin-bottom: 12px;
}

.expertise-card p {
  color: #61717c;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.service-detail-hero {
  padding: 104px 0 86px;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(10, 45, 36, 0.95), rgba(18, 119, 96, 0.82)),
    url("../../images/1711717534205.png") center/cover;
}

.service-detail-hero h1,
.service-detail-hero p {
  color: var(--white);
}

.service-detail-hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.service-detail-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.service-detail-hero .btn-outline {
  color: var(--green-dark);
  border-color: rgba(9, 84, 63, 0.14);
  background: var(--white);
}

.service-detail-hero .btn-outline:hover {
  color: var(--green-dark);
  background: #f8fffc;
  border-color: rgba(9, 84, 63, 0.28);
}

.service-detail-body {
  padding: 78px 0;
  background: linear-gradient(180deg, #f6faf8 0%, #eef8f5 100%);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.service-detail-copy {
  min-width: 0;
}

.service-intro-card {
  margin-bottom: 20px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(24, 167, 160, 0.28);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #10231d, #0f7d5d);
  box-shadow: 0 18px 42px rgba(16, 35, 29, 0.12);
}

.service-intro-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 10px;
}

.service-intro-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-detail-copy .long-copy {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.service-detail-copy .long-copy h2 {
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
}

.service-detail-copy .long-copy h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.service-detail-copy .long-copy p {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.82;
}

.service-detail-copy .long-copy h2 + p {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
  color: #4e665e;
}

.service-detail-copy .long-copy .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0 0 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--soft);
}

.service-detail-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 20px;
}

.service-side-card,
.related-services {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.service-side-card div {
  padding: 24px;
}

.service-side-card p {
  margin-bottom: 18px;
}

.related-services {
  padding: 24px;
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.related-services h3 {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 1.35rem;
}

.related-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  margin-top: 10px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f6faf8;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.25;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.related-services a::after {
  content: ">";
  color: var(--teal);
  font-weight: 900;
}

.related-services a:hover {
  transform: translateX(3px);
  color: var(--green-dark);
  background: var(--mint);
  border-color: rgba(24, 167, 160, 0.35);
}

.home-page .service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-page .service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 167, 160, 0.45);
  box-shadow: var(--shadow);
}

.home-intro .btn,
.home-solutions .btn {
  margin-top: 12px;
}

.home-about {
  padding: 76px 0;
  overflow: hidden;
}

.home-about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.home-about-image {
  align-self: stretch;
  min-height: 520px;
}

.home-about-image img {
  min-height: 100%;
}

.home-about-copy {
  max-width: 660px;
}

.home-about-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2.15rem, 3.6vw, 3.35rem);
  line-height: 1.12;
}

.home-about-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-about .split-content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.home-about .content-block {
  min-height: 0;
  padding: 24px;
  border-left-width: 3px;
  box-shadow: 0 14px 34px rgba(16, 35, 29, 0.07);
}

.home-about .content-block h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.home-about .content-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.compliance-section {
  scroll-margin-top: 78px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
}

.compliance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.compliance-copy h2 {
  max-width: 760px;
  color: var(--ink);
}

.compliance-copy p {
  line-height: 1.78;
}

.compliance-copy .compliance-lead {
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.compliance-media {
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compliance-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.compliance-services {
  margin-top: 48px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.compliance-services > h3 {
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 1.5rem;
}

.compliance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compliance-list li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.compliance-list li::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 18px;
  color: var(--green);
  font-weight: 900;
}

.compliance-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.compliance-closing p {
  max-width: 760px;
  margin: 0;
}

.compliance-closing .btn {
  flex: 0 0 auto;
}

.home-solutions {
  background: linear-gradient(180deg, #ffffff 0%, #eef8f5 100%);
}

.home-page .split-content {
  margin-top: 22px;
}

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

.service-tile {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  min-height: 470px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 167, 160, 0.42);
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile div {
  padding: 26px;
}

.service-tile span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 900;
}

.service-tile h3 {
  color: var(--green-dark);
  line-height: 1.22;
}

.service-tile p {
  margin: 0;
}

.service-tile.compact {
  min-height: 410px;
  grid-template-rows: 170px 1fr;
}

.support-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-item,
.detail-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 35, 29, 0.06);
}

.support-item h3,
.detail-card h3 {
  color: var(--green-dark);
  font-size: 1.15rem;
}

.support-item p,
.detail-card p {
  margin: 0;
}

.approach-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(24, 167, 160, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.approach-panel .btn {
  margin-top: 10px;
}

.services-hero {
  background: linear-gradient(110deg, rgba(9, 84, 63, 0.94), rgba(24, 167, 160, 0.72)), url("../../images/Teams-8.jpg") center/cover;
}

.about-hero {
  background: linear-gradient(110deg, rgba(9, 84, 63, 0.94), rgba(24, 167, 160, 0.7)), url("../../images/Talentajpg-020.jpg") center/cover;
}

.service-overview {
  background: linear-gradient(180deg, #ffffff 0%, #f6faf8 100%);
}

.service-band {
  scroll-margin-top: 92px;
  background: var(--white);
}

.service-band.alt {
  background: var(--soft);
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  margin-bottom: 34px;
}

.service-feature.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.service-feature.reverse .service-feature-media {
  order: 2;
}

.service-feature-media {
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.service-feature-copy {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(16, 35, 29, 0.08);
}

.service-feature-copy .btn {
  margin-top: 22px;
}

.service-feature-copy strong {
  color: var(--green-dark);
}

.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-answer { display: none; padding-bottom: 18px; }
.faq-item.open .faq-answer { display: block; }

.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-info-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-info-grid .content-block {
  padding: 22px 24px;
}

.contact-info-grid h3 {
  color: var(--green);
}

.contact-form-wide {
  max-width: 920px;
  margin: 0 auto;
}

.contact-form-wide h2 {
  margin-bottom: 6px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 136px; resize: vertical; }
.form-status {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.form-status.success { display: block; color: #075b42; background: #dff7ec; }
.form-status.error { display: block; color: #8c1f1f; background: #fde3e3; }

.cta {
  background: linear-gradient(120deg, var(--green-dark), var(--green), var(--teal));
  color: var(--white);
  padding: 68px 0;
}
.cta h2, .cta p { color: var(--white); }
.cta .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }

.site-footer {
  background: #09291f;
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 30px;
  margin-bottom: 38px;
}
.site-footer h4 { color: var(--white); }
.site-footer p, .site-footer li { color: rgba(255, 255, 255, 0.78); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer a:hover { color: #7ff0dc; }
.footer-logo {
  display: block;
  width: 168px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 18px;
}
.subscribe { display: flex; gap: 8px; }
.subscribe input { min-width: 0; }
.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - 78px);
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 8px; }
  .nav-links .btn { margin-top: 8px; }
  .nav-item {
    display: block;
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    padding: 13px 8px;
    text-align: left;
  }
  .nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    padding: 0 0 8px 8px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .has-dropdown.open .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    display: grid;
    transform: none;
  }
  .nav-dropdown a {
    padding: 10px 12px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .copyright {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal-links {
    text-align: left;
  }
  .hero, .hero-content { min-height: max(620px, calc(100svh - 78px)); }
  .grid-2, .grid-3, .grid-4, .footer-grid, .cta .container { grid-template-columns: 1fr; }
  .service-card-grid, .support-grid, .service-detail-grid, .approach-panel { grid-template-columns: 1fr; }
  .about-health-layout { grid-template-columns: 1fr; }
  .about-health-media { grid-template-rows: auto auto; }
  .about-health-image img { min-height: 300px; }
  .about-health-image-wide img { min-height: 260px; }
  .home-about-layout { grid-template-columns: 1fr; }
  .compliance-intro { grid-template-columns: 1fr; }
  .compliance-media { min-height: 340px; }
  .compliance-media img { min-height: 340px; }
  .compliance-closing { align-items: flex-start; flex-direction: column; }
  .home-about-copy { max-width: none; }
  .home-about-image { min-height: 360px; order: 2; }
  .home-about .split-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta .container { display: grid; }
  .stats { grid-template-columns: 1fr; }
  .service-row, .expertise-grid { grid-template-columns: 1fr; }
  .service-row img { height: 320px; max-height: none; }
  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-feature-media {
    order: 0;
  }
  .service-feature-media,
  .service-feature-media img {
    min-height: 330px;
  }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 62px 0; }
  .hero, .hero-content { min-height: max(620px, calc(100svh - 78px)); }
  .hero h1 { font-size: 2.65rem; line-height: 1.12; }
  .hero p { font-size: 1rem; line-height: 1.65; }
  .hero-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .about-health { padding: 48px 0; }
  .about-health-layout { gap: 20px; }
  .about-health-media { gap: 14px; }
  .about-health-image img { min-height: 260px; }
  .about-health-image-wide img { min-height: 220px; }
  .about-health-copy { padding: 22px; gap: 10px; }
  .about-health-copy h2 { font-size: 2.1rem; }
  .about-health-copy h2:not(:first-child) { margin-top: 16px; padding-top: 18px; }
  .home-about { padding: 58px 0; }
  .home-about-layout { gap: 24px; }
  .home-about-image { min-height: 300px; }
  .home-about-copy h2 { font-size: 2.2rem; }
  .compliance-services { margin-top: 28px; padding: 22px; }
  .compliance-list { grid-template-columns: 1fr; gap: 12px; }
  .compliance-list li { min-height: 0; padding: 16px 16px 16px 46px; }
  .compliance-list li::before { top: 15px; left: 16px; }
  .compliance-media, .compliance-media img { min-height: 260px; }
  .compliance-closing .btn { width: 100%; }
  .home-about .split-content { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .card, .form-panel, .content-block { padding: 22px; }
  .service-card-grid { gap: 16px; }
  .service-tile,
  .service-tile.compact {
    min-height: 0;
    grid-template-rows: 190px auto;
  }
  .service-tile div { padding: 22px; }
  .support-item,
  .detail-card,
  .service-feature-copy,
  .approach-panel { padding: 22px; }
  .service-feature { margin-bottom: 22px; }
  .service-feature-media,
  .service-feature-media img {
    min-height: 260px;
  }
  .card.step-card { padding: 58px 22px 24px; }
  .step-card::before { top: 20px; left: 22px; }
  .subscribe { flex-direction: column; }
  .logo img { width: 168px; max-height: 58px; }
  .service-showcase { padding: 20px 0; }
  .services-page .page-hero + .service-showcase { padding-top: 46px; }
  .services-page .service-showcase:nth-of-type(7) { padding-bottom: 46px; }
  .service-row { padding: 20px; gap: 20px; }
  .service-row img { height: 230px; }
  .service-copy h2 { font-size: 2rem; }
  .service-copy p { font-size: 1rem; line-height: 1.75; }
  .service-full { margin-top: 14px; padding: 20px; }
  .expertise-card { min-height: 280px; padding: 0 22px 26px; }
  .expertise-card img { width: calc(100% + 44px); height: 180px; margin: 0 -22px 22px; }
  .service-detail-hero { padding: 76px 0 62px; }
  .service-detail-body { padding: 54px 0; }
  .service-intro-card, .service-detail-copy .long-copy, .service-side-card div, .related-services { padding: 22px; }
  .service-detail-copy .long-copy { gap: 12px; }
  .service-detail-copy .long-copy h2 { font-size: 1.45rem; padding-top: 18px; }
  .service-detail-copy .long-copy p { font-size: 0.98rem; line-height: 1.75; }
  .service-detail-copy .long-copy h2 + p { padding-left: 14px; }
  .service-detail-copy .long-copy .feature-list { grid-template-columns: 1fr; padding: 16px; }
  .related-services a { min-height: 46px; padding: 10px 12px; }
}
