
:root {
  --green: #006b50;
  --green-dark: #004b38;
  --green-soft: #e8f2ee;
  --ink: #181818;
  --muted: #5f6663;
  --line: #dfe6e2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 50, 37, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 205px;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: .9rem;
  font-weight: 700;
  background: #fff;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0,107,80,.11);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 130px) 0 92px;
  background:
    radial-gradient(circle at 70% 20%, rgba(0,107,80,.09), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.065em;
}

h1 span { color: var(--green); }

.lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: #3f4643;
  font-size: clamp(1.07rem, 2vw, 1.28rem);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 27px;
}

.topic-list span {
  padding: 9px 13px;
  border: 1px solid #cfe0d9;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255,255,255,.9);
  font-size: .91rem;
  font-weight: 700;
}

.note {
  max-width: 680px;
  color: var(--muted);
  font-size: .95rem;
}

.hero-card {
  position: relative;
  min-height: 470px;
  padding: 52px 46px 40px;
  border: 1px solid rgba(0,107,80,.16);
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(0,107,80,.98), rgba(0,68,50,.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -110px;
  top: -110px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.foot-mark {
  width: 74px;
  margin-bottom: 36px;
}

.foot-mark svg {
  width: 100%;
  fill: none;
  stroke: rgba(255,255,255,.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-kicker {
  margin-bottom: 12px;
  color: rgba(255,255,255,.75);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.hero-card p {
  color: rgba(255,255,255,.82);
}

.progress {
  height: 8px;
  margin: 36px 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.hero-card small {
  color: rgba(255,255,255,.72);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 250px;
  height: 250px;
  left: -140px;
  bottom: 40px;
  border: 45px solid rgba(0,107,80,.045);
}

.hero-glow-two {
  width: 110px;
  height: 110px;
  right: 7%;
  bottom: 4%;
  background: rgba(0,107,80,.045);
}

.services {
  padding: 94px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article {
  min-height: 275px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cards article:hover {
  transform: translateY(-4px);
  border-color: #bcd3c9;
  box-shadow: 0 18px 36px rgba(0,56,41,.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 50px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  font-size: .75rem;
  font-weight: 800;
}

.cards h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.cards p {
  color: var(--muted);
  margin-bottom: 0;
}

.coming-soon {
  padding: 0 0 92px;
}

.coming-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 28px;
  background: var(--green-soft);
}

.coming-inner h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.coming-inner > p {
  margin-bottom: 0;
  color: #43504b;
  font-size: 1.05rem;
}

footer {
  padding: 32px 0;
  color: rgba(255,255,255,.7);
  background: #111412;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-inner picture {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
}

.footer-inner img {
  width: 116px;
  height: auto;
}

.footer-inner p {
  margin-bottom: 0;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .coming-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

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

  .cards article {
    min-height: 0;
  }

  .icon { margin-bottom: 30px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }

  .header-inner {
    min-height: 86px;
  }

  .brand img { width: 150px; }

  .status {
    padding: 8px 11px;
    font-size: .76rem;
  }

  .hero {
    padding-top: 66px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-card {
    padding: 38px 28px 32px;
    border-radius: 24px;
  }

  .section-heading {
    display: block;
  }

  .coming-inner {
    padding: 32px 26px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-inline a,
.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid #cfe0d9;
  border-radius: 12px;
  color: var(--green-dark);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.contact-inline a:hover,
.contact-links a:hover {
  border-color: var(--green);
}

.secondary-services {
  padding-top: 0;
}

.contact-box p {
  margin-bottom: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0 !important;
}

.contact-links a {
  background: rgba(255,255,255,.8);
}

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

.footer-inner a:hover {
  color: #fff;
}

@media (max-width: 620px) {
  .contact-inline,
  .contact-links {
    flex-direction: column;
  }

  .contact-inline a,
  .contact-links a {
    justify-content: center;
  }
}
