:root {
  --navy: #103b2d;
  --blue: #079447;
  --blue-dark: #05763a;
  --sky: #e9f7ef;
  --ice: #f3f8f5;
  --muted: #64776e;
  --line: #dce8e1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(16, 59, 45, 0.12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(221, 229, 239, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-logo {
  width: 42px;
  height: 46px;
  flex: none;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(7, 148, 71, 0.14));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  padding-block: 31px;
  color: #50665c;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transition: width 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--blue);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 18px;
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 84% 12%, rgba(7, 148, 71, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfefc 0%, #f3f9f5 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: linear-gradient(#dceae2 1px, transparent 1px), linear-gradient(90deg, #dceae2 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, black, transparent 48%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 70px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px 90px 26px 26px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: inherit;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 62% center;
}

.image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(9, 36, 72, 0) 36%, rgba(9, 36, 72, 0.18));
}

.status-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  color: white;
  background: rgba(9, 35, 69, 0.86);
  box-shadow: 0 14px 35px rgba(9, 35, 69, 0.24);
  backdrop-filter: blur(10px);
}

.status-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-weight: 800;
}

.status-card span:last-child {
  display: flex;
  flex-direction: column;
}

.status-card small {
  color: #c5ead6;
  font-size: 10px;
}

.status-card strong {
  margin-top: 2px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 13px;
}

.sector-pill {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 24px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(16, 59, 45, 0.15);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.sector-pill span {
  margin-right: 4px;
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.hero-copy {
  max-width: 570px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1 {
  max-width: 620px;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -3.6px;
}

h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 4px;
  bottom: -2px;
  left: 4px;
  height: 7px;
  border-radius: 50%;
  background: rgba(7, 148, 71, 0.12);
  content: "";
}

.hero-lede {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(7, 148, 71, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(7, 148, 71, 0.3);
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid #b8ccc1;
  padding-bottom: 5px;
  color: #354b42;
  font-size: 13px;
  font-weight: 700;
}

.text-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.hero-metrics article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
}

.metric-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--sky);
}

.metric-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.metric-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-metrics strong {
  display: block;
  color: var(--blue);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

.metric-copy > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #83d5aa;
}

.section-heading h2,
.why-copy > h2,
.cta-inner h2 {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -2.1px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about {
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 88px;
}

.about-visual {
  position: relative;
  min-height: 610px;
}

.about-image-frame {
  position: absolute;
  inset: 18px 38px 18px 0;
  overflow: hidden;
  border-radius: 82px 24px 24px 24px;
  box-shadow: var(--shadow);
}

.about-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(16, 59, 45, 0.06), rgba(16, 59, 45, 0.3));
  content: "";
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.about-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
  padding: 17px 18px;
  border-radius: 16px;
  color: white;
  background: var(--blue);
  box-shadow: 0 18px 36px rgba(7, 148, 71, 0.27);
}

.badge-check {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: var(--blue);
  background: white;
  font-weight: 900;
}

.about-badge > span:last-child {
  display: flex;
  flex-direction: column;
}

.about-badge small {
  color: #ceebda;
  font-size: 9px;
  text-transform: uppercase;
}

.about-badge strong {
  margin-top: 3px;
  font-size: 12px;
}

.about-line {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -22px;
  width: 58%;
  height: 45%;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  border-radius: 92px 0 0;
  opacity: 0.65;
}

.about-copy h3 {
  margin: 0 0 22px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.about-copy h3 em {
  color: var(--blue);
  font-style: normal;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 30px 0;
}

.purpose-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f6fbf8;
}

.purpose-grid span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.purpose-grid p {
  margin: 10px 0 0;
  color: #53685e;
  font-size: 12px;
  line-height: 1.65;
}

.button-outline {
  border: 1px solid #b8cabf;
  color: var(--navy);
  background: white;
}

.button-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 12px 25px rgba(16, 59, 45, 0.08);
  transform: translateY(-2px);
}

.services {
  background: var(--ice);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
  max-width: none;
}

.split-heading > p:last-child {
  margin: 0 0 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 248px;
  overflow: hidden;
  border: 1px solid #e1ebe5;
  border-radius: 17px;
  background: white;
  box-shadow: 0 9px 30px rgba(16, 59, 45, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: #c4dfcf;
  box-shadow: 0 18px 40px rgba(16, 59, 45, 0.09);
  transform: translateY(-4px);
}

.service-number {
  display: flex;
  justify-content: center;
  padding-top: 28px;
  color: white;
  background: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.service-content {
  position: relative;
  padding: 28px 30px 24px;
}

.service-code {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--sky);
  font-size: 10px;
  font-weight: 800;
}

.service-card h3 {
  max-width: calc(100% - 52px);
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.35px;
}

.service-card p {
  max-width: 420px;
  margin: 12px 0 15px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.service-link span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--sky);
  transition: transform 180ms ease;
}

.service-card ul {
  display: grid;
  gap: 7px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #53685e;
  font-size: 11px;
  line-height: 1.5;
  list-style: none;
  opacity: 0;
  transition: max-height 240ms ease, opacity 180ms ease, margin 240ms ease;
}

.service-card ul li::before {
  margin-right: 8px;
  color: var(--blue);
  content: "✓";
}

.service-card.details-open ul {
  max-height: 130px;
  margin-top: 17px;
  opacity: 1;
}

.service-card.details-open .service-link span {
  transform: rotate(45deg);
}

.service-card.is-extra {
  display: none;
}

.services-grid.expanded .service-card.is-extra {
  display: grid;
}

.featured-service .service-number,
.featured-service .service-code {
  background: var(--navy);
}

.featured-service .service-code {
  color: white;
}

.services-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.approach {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.approach::before,
.approach::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.approach::before {
  top: -280px;
  right: -180px;
  width: 580px;
  height: 580px;
}

.approach::after {
  bottom: -350px;
  left: -120px;
  width: 620px;
  height: 620px;
}

.approach .section-heading {
  position: relative;
  z-index: 1;
}

.approach .section-heading > p:last-child {
  color: #b3c8bd;
}

.approach-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-step {
  position: relative;
  min-height: 230px;
  padding: 30px 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-step:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.approach-step::before {
  position: absolute;
  top: -5px;
  left: 22px;
  width: 9px;
  height: 9px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: #78c99d;
  box-shadow: 0 0 0 1px #78c99d;
  content: "";
}

.approach-step span {
  color: #78c99d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.approach-step h3 {
  margin: 32px 0 11px;
  font-size: 17px;
}

.approach-step p {
  margin: 0;
  color: #b3c8bd;
  font-size: 12px;
  line-height: 1.7;
}

.approach-note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}

.approach-note p {
  margin: 0;
  color: #b9ccc2;
  font-size: 12px;
}

.approach-note p span {
  margin-right: 10px;
  color: white;
  font-weight: 800;
}

.approach-note a {
  flex: none;
  color: #8bd3ac;
  font-size: 12px;
  font-weight: 800;
}

.why-us {
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 82px;
}

.why-copy > h2 {
  max-width: 560px;
}

.why-lede {
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.reason-list {
  display: grid;
}

.reason-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.reason-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.reason-list > article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.reason-list h3 {
  margin: 0;
  font-size: 15px;
}

.reason-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  min-height: 650px;
}

.why-visual::before {
  position: absolute;
  top: 22px;
  right: -28px;
  width: 72%;
  height: 72%;
  border: 2px solid var(--blue);
  border-left: 0;
  border-radius: 0 78px 0 0;
  content: "";
}

.why-visual img {
  position: absolute;
  inset: 48px 18px 30px 0;
  width: calc(100% - 18px);
  height: calc(100% - 78px);
  border-radius: 24px 78px 24px 24px;
  object-fit: cover;
  object-position: 65% center;
  box-shadow: var(--shadow);
}

.visual-quote {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: -34px;
  display: flex;
  gap: 13px;
  min-width: 280px;
  padding: 22px;
  border-radius: 17px;
  color: white;
  background: var(--blue);
  box-shadow: 0 20px 42px rgba(7, 148, 71, 0.28);
}

.visual-quote > span {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 0.9;
}

.visual-quote p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 22px rgba(16, 59, 45, 0.14);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.orbit-one { top: 80px; left: -28px; }
.orbit-two { top: 160px; right: -10px; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: white;
  background: var(--blue);
}

.cta-band::before {
  position: absolute;
  top: -180px;
  left: 40%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.03), 0 0 0 180px rgba(255, 255, 255, 0.025);
  content: "";
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner > div {
  max-width: 720px;
}

.cta-inner p:last-child {
  margin: 16px 0 0;
  color: #d5f0e1;
  font-size: 14px;
}

.button-white {
  flex: none;
  color: var(--blue);
  background: white;
  box-shadow: 0 14px 32px rgba(4, 93, 44, 0.18);
}

.button-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(4, 93, 44, 0.26);
}

.contact {
  background: #f6faf7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 24px 70px rgba(16, 59, 45, 0.09);
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: 48px;
  color: white;
  background: radial-gradient(circle at 110% -10%, rgba(91, 190, 132, 0.38), transparent 38%), var(--navy);
}

.contact-overline {
  margin: 0 0 14px;
  color: #82d4a6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-panel > h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -1px;
}

.contact-panel > p:not(.contact-overline) {
  margin: 14px 0 0;
  color: #b7c9c0;
  font-size: 13px;
  line-height: 1.65;
}

.contact-details {
  display: grid;
  gap: 6px;
  margin-top: 38px;
}

.contact-details > a,
.contact-details > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details > a > span,
.contact-details > div > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #8dd7ad;
  background: rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 800;
}

.contact-details div div,
.contact-details a div {
  display: flex;
  flex-direction: column;
}

.contact-details small {
  margin-bottom: 3px;
  color: #91aa9e;
  font-size: 9px;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-details a:hover strong {
  color: #8dd7ad;
}

.contact-promise {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 34px;
  color: #b5c9bf;
  font-size: 10px;
}

.contact-promise i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55cf8f;
  box-shadow: 0 0 0 5px rgba(85, 207, 143, 0.1);
}

.contact-form {
  padding: 48px;
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.form-heading span,
.contact-form label > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 6px 0 0;
  font-size: 24px;
  letter-spacing: -0.6px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cbdad2;
  border-radius: 0;
  outline: 0;
  color: var(--navy);
  background: transparent;
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 45px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #97a9a0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.contact-form .invalid {
  border-color: #cf3b4d;
}

.message-field {
  margin-top: 27px;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

#form-status {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

#form-status.error {
  color: #b62d40;
}

.site-footer {
  padding: 74px 0 26px;
  color: #b8cac1;
  background: #08271f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.75fr);
  gap: 56px;
  padding-bottom: 52px;
}

.brand-inverse .brand-copy strong {
  color: white;
}

.brand-inverse .brand-copy small {
  color: #93afa1;
}

.footer-brand > p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #8fa99c;
  font-size: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 7px;
  color: white;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #91aa9e;
  font-size: 11px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.footer-links a:hover {
  color: #8bd3ac;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
  margin: 0;
  color: #789287;
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 26px rgba(7, 148, 71, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.observe {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.observe.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  animation: rise 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-1 {
  animation-delay: 120ms;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--navy);
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 16px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 480px;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual {
    min-height: 560px;
  }

  .about-copy,
  .why-copy {
    max-width: 680px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split-heading > p:last-child {
    margin: 0;
  }

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

  .approach-steps {
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
  }

  .approach-step {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .approach-step:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .approach-step:last-child {
    grid-column: 1 / -1;
  }

  .why-visual {
    min-height: 600px;
    margin-left: 34px;
  }

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

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

  .contact-promise {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

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

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); }

  .header-inner { min-height: 72px; }
  .brand-logo { width: 34px; height: 38px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { letter-spacing: 1.25px; }

  .hero { padding: 38px 0 34px; }
  h1 { font-size: 42px; letter-spacing: -2.7px; }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-metrics article:last-child { grid-column: 1 / -1; }
  .hero-visual,
  .hero-visual img { min-height: 420px; }
  .hero-visual { border-radius: 20px 60px 20px 20px; }
  .status-card { right: 14px; bottom: 14px; left: 14px; }
  .sector-pill { top: 14px; left: 14px; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 40px; }
  .section-heading h2,
  .why-copy > h2,
  .cta-inner h2 { font-size: 34px; letter-spacing: -1.5px; }

  .about-visual { min-height: 460px; }
  .about-image-frame { inset: 14px 14px 14px 0; border-radius: 58px 18px 18px 18px; }
  .about-badge { right: 0; bottom: 34px; min-width: 210px; }
  .purpose-grid { grid-template-columns: 1fr; }

  .service-card { grid-template-columns: 56px 1fr; min-height: 230px; }
  .service-content { padding: 24px 20px; }
  .service-code { top: 20px; right: 18px; }
  .service-card h3 { font-size: 15px; }

  .approach-steps { grid-template-columns: 1fr; }
  .approach-step,
  .approach-step:nth-child(odd) { min-height: 190px; border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .approach-step:last-child { grid-column: auto; }
  .approach-note { align-items: flex-start; flex-direction: column; }

  .why-visual { min-height: 480px; margin-left: 16px; }
  .why-visual img { inset: 34px 8px 24px 0; width: calc(100% - 8px); height: calc(100% - 58px); }
  .visual-quote { left: -16px; min-width: 230px; padding: 18px; }
  .orbit-one { top: 60px; left: -16px; }
  .orbit-two { top: 120px; right: -4px; }

  .cta-band { padding: 64px 0; }
  .contact-panel,
  .contact-form { padding: 30px 22px; }
  .field-grid { grid-template-columns: 1fr; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .back-to-top { right: 14px; bottom: 14px; }
}

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