:root {
  --primary: #81b829;
  --light: #a4cf28;
  --deep: #438526;
  --support: #63a028;
  --text: #595959;
  --surface: #e4ebe2;
  --neutral: #f6f8f4;
  --dark: #1f2a1f;
}

html {
  scroll-behavior: smooth;
}

body {
  letter-spacing: 0;
}

img {
  max-width: 100%;
}

.nav-link {
  position: relative;
  transition: color 180ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform 180ms ease;
}

.nav-link:hover {
  color: var(--dark);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.mega-trigger {
  position: relative;
}

.mega-trigger::after {
  position: fixed;
  z-index: 59;
  top: 60px;
  right: 0;
  left: 0;
  height: 48px;
  content: "";
  display: none;
}

.mega-trigger:hover::after,
.mega-trigger:focus-within::after,
.mega-trigger.is-open::after {
  display: block;
}

.mega-menu {
  position: fixed;
  z-index: 60;
  top: 78px;
  right: 0;
  left: 0;
  padding: 18px 24px 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mega-trigger:hover .mega-menu,
.mega-trigger:focus-within .mega-menu,
.mega-trigger.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-panel {
  display: grid;
  max-width: 1210px;
  margin: 0 auto;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  border: 1px solid rgba(31, 42, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 70px rgba(31, 42, 31, 0.14);
  padding: 28px;
}

.mega-intro {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  background: var(--neutral);
  padding: 26px;
}

.mega-intro span,
.footer-cta span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
}

.mega-intro strong {
  display: block;
  margin-top: 14px;
  max-width: 380px;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 750;
  line-height: 1.04;
  color: var(--dark);
}

.mega-intro p {
  margin-top: 16px;
  max-width: 430px;
  color: var(--text);
  line-height: 1.55;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mega-link {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  transition: background 180ms ease, transform 180ms ease;
}

.mega-link:hover {
  transform: translateY(-2px);
  background: var(--neutral);
}

.mega-link span {
  color: var(--dark);
  font-size: 19px;
  font-weight: 750;
}

.mega-link small {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.mobile-details summary {
  cursor: pointer;
  list-style: none;
}

.mobile-details summary::-webkit-details-marker {
  display: none;
}

.mobile-bottom-nav {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  padding: 0 14px calc(12px + env(safe-area-inset-bottom));
  pointer-events: none;
}

.mobile-bottom-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  max-width: 430px;
  min-height: 74px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(31, 42, 31, 0.96);
  box-shadow: 0 18px 42px rgba(31, 42, 31, 0.28);
  pointer-events: auto;
}

.mobile-bottom-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 74px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-bottom-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.mobile-bottom-icon svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

.mobile-bottom-label {
  max-width: 64px;
  min-height: 20px;
  line-height: 1.05;
  white-space: normal;
}

.mobile-bottom-item.is-active {
  transform: translateY(-8px);
  color: #fff;
}

.mobile-bottom-item.is-active .mobile-bottom-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 0 0 8px rgba(31, 42, 31, 0.96),
    0 12px 26px rgba(129, 184, 41, 0.32);
}

.mobile-bottom-item:not(.is-active):hover {
  color: rgba(255, 255, 255, 0.86);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--deep);
}

.btn-secondary {
  border: 1px solid rgba(67, 133, 38, 0.25);
  background: #fff;
  color: var(--deep);
}

.btn-secondary:hover {
  border-color: var(--deep);
}

.hero-shell::before {
  position: absolute;
  top: 80px;
  left: 50%;
  width: min(760px, 80vw);
  height: min(760px, 80vw);
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(164, 207, 40, 0.18), rgba(164, 207, 40, 0) 68%);
  pointer-events: none;
}

.media-marquee {
  position: relative;
  overflow: hidden;
}

.media-marquee::before,
.media-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 120px;
  content: "";
  pointer-events: none;
}

.media-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.media-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.media-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: flex-end;
  gap: 16px;
  animation: marquee 36s linear infinite;
}

.media-tile {
  width: clamp(210px, 24vw, 360px);
  height: clamp(180px, 22vw, 270px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.media-tile-tall {
  height: clamp(230px, 28vw, 350px);
}

.media-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-space {
  padding: 96px 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
}

.section-title {
  margin-top: 14px;
  max-width: 900px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--dark);
}

.page-hero {
  padding: clamp(28px, 4vw, 52px) 0 clamp(54px, 6vw, 78px);
  background: var(--neutral);
}

.page-kicker {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep);
}

.page-title {
  margin-top: 18px;
  max-width: 980px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--dark);
}

.page-lead {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text);
}

.content-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--dark);
}

.content-subtitle {
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
}

.content-copy {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}

.content-list {
  display: grid;
  gap: 14px;
}

.content-list li {
  position: relative;
  padding-left: 26px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}

.content-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--primary);
}

.page-band {
  border-top: 1px solid rgba(31, 42, 31, 0.08);
  border-bottom: 1px solid rgba(31, 42, 31, 0.08);
  background: var(--neutral);
}

.split-layout {
  display: grid;
  gap: 48px;
}

.about-hero {
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  gap: 44px;
  align-items: end;
}

.about-hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92);
  transform: scale(1.02);
}

.about-hero-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(31, 42, 31, 0.78);
  padding: 20px;
  color: #fff;
  backdrop-filter: blur(16px);
}

.about-hero-panel span {
  display: block;
  color: var(--light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero-panel strong {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 750;
  line-height: 1.08;
}

.about-stat-strip {
  border-top: 1px solid rgba(31, 42, 31, 0.08);
  border-bottom: 1px solid rgba(31, 42, 31, 0.08);
  background: #fff;
  padding: 18px 0;
}

.about-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  background: var(--neutral);
  padding: 22px;
}

.about-stat span {
  font-family: "Spectral", Georgia, serif;
  color: var(--primary);
  font-size: 46px;
  font-weight: 700;
  line-height: 0.9;
}

.about-stat p {
  color: var(--dark);
  font-size: 16px;
  font-weight: 720;
  line-height: 1.3;
}

.section-head {
  max-width: 760px;
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.about-capability {
  display: grid;
  min-height: 290px;
  align-content: start;
  border-left: 1px solid rgba(31, 42, 31, 0.12);
  padding: 22px 18px;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.about-capability:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 133, 38, 0.26);
  background: rgba(255, 255, 255, 0.58);
}

.about-capability svg {
  width: 30px;
  height: 30px;
  color: var(--deep);
}

.about-capability h3 {
  margin-top: 32px;
  color: var(--dark);
  font-size: 21px;
  font-weight: 750;
  line-height: 1.12;
}

.about-capability p {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.52;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.about-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 1px;
  content: "";
  background: rgba(31, 42, 31, 0.12);
}

.about-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  border-top: 1px solid rgba(31, 42, 31, 0.1);
  padding: 26px 0;
}

.about-timeline-step:last-child {
  border-bottom: 1px solid rgba(31, 42, 31, 0.1);
}

.about-timeline-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid rgba(129, 184, 41, 0.34);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  font-family: "Spectral", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.about-timeline-step h3 {
  color: var(--dark);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 750;
  line-height: 1.08;
}

.about-timeline-step p {
  margin-top: 12px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.58;
}

.about-proof-section {
  background: var(--neutral);
}

.about-proof-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.about-proof-media {
  overflow: hidden;
  border-radius: 8px;
  min-height: 520px;
}

.about-proof-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-proof-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.about-proof-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  border-top: 1px solid rgba(31, 42, 31, 0.12);
  padding-top: 22px;
}

.about-proof-list svg {
  width: 30px;
  height: 30px;
  color: var(--deep);
}

.about-proof-list h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.16;
}

.about-proof-list p {
  margin-top: 9px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.56;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list a,
.service-list article,
.blog-list article {
  display: grid;
  gap: 14px;
  border-radius: 8px;
  background: var(--neutral);
  padding: 24px;
  color: var(--dark);
  transition: transform 180ms ease, background 180ms ease;
}

.service-list a:hover {
  transform: translateY(-2px);
  background: #eef4ec;
}

.service-list span,
.blog-list span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--deep);
}

.service-list h2,
.service-list h3,
.blog-list h2 {
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.16;
}

.service-list p,
.blog-list p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.detail-visual {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
}

.detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-box {
  border-radius: 8px;
  background: var(--neutral);
  padding: 24px;
}

.contact-box h2,
.contact-box h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
}

.contact-box p,
.contact-box a {
  margin-top: 10px;
  display: block;
  color: var(--text);
}

.section-copy {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 6px;
  font-weight: 800;
  color: var(--deep);
}

.stat-number {
  font-family: "Spectral", Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--dark);
}

.stat-label {
  margin-top: 10px;
  max-width: 170px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.reason-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  width: 100%;
  border-bottom: 1px solid rgba(31, 42, 31, 0.1);
  border-radius: 8px;
  padding: 26px 0;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.reason-row:first-child {
  border-top: 1px solid rgba(31, 42, 31, 0.1);
}

.reason-row:hover,
.reason-row:focus-visible,
.reason-row.is-active {
  border-color: rgba(67, 133, 38, 0.22);
  background: rgba(255, 255, 255, 0.7);
  padding-right: 18px;
  padding-left: 18px;
}

.reason-row:focus-visible {
  outline: 3px solid rgba(129, 184, 41, 0.28);
  outline-offset: 3px;
}

.reason-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--deep);
  transition: background 180ms ease, color 180ms ease;
}

.reason-row.is-active .reason-icon {
  background: var(--primary);
  color: #fff;
}

.reason-icon svg {
  width: 25px;
  height: 25px;
}

.reason-row h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 650;
  line-height: 1.12;
  color: var(--dark);
}

.reason-row p {
  margin-top: 12px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}

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

.process-item {
  min-height: 320px;
  border-radius: 8px;
  background: var(--neutral);
  padding: 26px;
  color: var(--dark);
}

.process-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 20px;
}

.process-item span,
.service-slide span,
.insight-item span {
  display: inline-flex;
  margin-bottom: 24px;
  font-family: "Spectral", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
}

.process-item h3 {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.16;
}

.process-item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
}

.process-visual {
  overflow: hidden;
  border-radius: 8px;
}

.process-visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.slider-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.slider-btn svg {
  width: 19px;
  height: 19px;
}

.service-section-eyebrow {
  color: var(--light);
}

.service-section-title {
  color: #000;
}

.service-full-container {
  --service-gutter: 20px;
  width: 100%;
}

.service-viewport {
  overflow: hidden;
  width: calc(100vw - var(--service-gutter));
  max-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 92%, transparent);
}

.service-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: service-marquee var(--service-loop-duration, 34s) linear infinite;
}

.service-viewport:hover .service-track {
  animation-play-state: paused;
}

.service-slide {
  position: relative;
  flex: 0 0 clamp(300px, 27vw, 420px);
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.media-tile img,
.service-slide img {
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes service-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--service-loop-distance, 2200px) * -1), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-track {
    animation: none;
  }
}

.service-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.72));
}

.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.service-slide:hover img {
  transform: scale(1.04);
}

.service-slide div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.service-slide span {
  margin-bottom: 18px;
  color: var(--light);
}

.service-slide h3 {
  font-size: 27px;
  font-weight: 750;
  line-height: 1.12;
}

.service-slide p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.insight-item {
  min-height: 230px;
  border-radius: 8px;
  background: var(--neutral);
  padding: 24px;
}

.insight-item span {
  margin-bottom: 38px;
  font-size: 22px;
}

.insight-item h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.18;
}

.home-blog-grid {
  display: grid;
  gap: 14px;
}

.home-blog-card {
  display: grid;
  min-height: 0;
  align-content: start;
  border: 1px solid rgba(31, 42, 31, 0.1);
  border-radius: 8px;
  background: var(--neutral);
  padding: 22px;
  color: var(--dark);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 133, 38, 0.28);
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 42, 31, 0.08);
}

.home-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.home-blog-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  padding: 7px 10px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-blog-card h3 {
  max-width: 620px;
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 760;
  line-height: 1.12;
  color: var(--dark);
}

.home-blog-card p {
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  gap: 24px;
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(129, 184, 41, 0.22), rgba(67, 133, 38, 0.04)),
    rgba(255, 255, 255, 0.05);
  padding: clamp(22px, 3.5vw, 38px);
}

.cta-copy {
  align-self: start;
}

.cta-assurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cta-assurance-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 42, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(31, 42, 31, 0.78);
}

.cta-assurance-list svg {
  width: 16px;
  height: 16px;
  color: var(--deep);
}

.cta-panel-dark-text {
  color: #000;
}

.cta-panel-dark-text .eyebrow,
.cta-panel-dark-text .contact-form span,
.cta-panel-dark-text [data-form-note] {
  color: rgba(0, 0, 0, 0.72);
}

.cta-panel-dark-text h2 {
  color: #000;
}

.cta-panel-dark-text .contact-form input,
.cta-panel-dark-text .contact-form textarea,
.cta-panel-dark-text .contact-form select {
  border-color: rgba(0, 0, 0, 0.16);
  color: #000;
}

.cta-panel-dark-text .contact-form input:focus,
.cta-panel-dark-text .contact-form textarea:focus,
.cta-panel-dark-text .contact-form select:focus {
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.cta-panel-dark-text .btn-primary {
  background: #000;
  color: #fff;
}

.cta-panel-dark-text .btn-primary:hover {
  background: var(--dark);
}

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

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

.contact-form span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  padding: 14px 15px;
  color: var(--dark);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(89, 89, 89, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(129, 184, 41, 0.18);
}

.contact-form select option {
  color: var(--dark);
}

.lead-form {
  gap: 10px;
  border: 1px solid rgba(31, 42, 31, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 244, 0.9)),
    #fff;
  padding: 16px;
  box-shadow: 0 22px 54px rgba(31, 42, 31, 0.1);
}

.lead-form-header {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(31, 42, 31, 0.1);
  padding-bottom: 10px;
}

.lead-form-header span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
}

.lead-form-header strong {
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 750;
  line-height: 1.12;
  color: var(--dark);
}

.lead-field {
  position: relative;
  gap: 5px;
}

.lead-field span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(31, 42, 31, 0.76);
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  min-height: 42px;
  border: 1px solid rgba(31, 42, 31, 0.14);
  background: #fbfcfa;
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-form textarea {
  min-height: 76px;
  resize: vertical;
}

.lead-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--deep) 50%),
    linear-gradient(135deg, var(--deep) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 17px,
    calc(100% - 14px) 17px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

.lead-form input:hover,
.lead-form textarea:hover,
.lead-form select:hover {
  border-color: rgba(67, 133, 38, 0.38);
  background: #fff;
}

.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: var(--deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(129, 184, 41, 0.18);
}

.lead-submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.lead-submit-row .btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding-right: 18px;
  padding-left: 18px;
  white-space: nowrap;
}

.lead-submit-row svg {
  width: 17px;
  height: 17px;
}

.lead-submit-row small {
  max-width: 280px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(31, 42, 31, 0.58);
}

.cta-panel-dark-text .lead-form .lead-form-header span {
  color: var(--deep);
}

.cta-panel-dark-text .lead-form .lead-field span {
  color: rgba(31, 42, 31, 0.76);
}

.cta-panel-dark-text .lead-form input,
.cta-panel-dark-text .lead-form textarea,
.cta-panel-dark-text .lead-form select {
  border-color: rgba(31, 42, 31, 0.14);
  color: var(--dark);
}

.cta-panel-dark-text .lead-form input:focus,
.cta-panel-dark-text .lead-form textarea:focus,
.cta-panel-dark-text .lead-form select:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 4px rgba(129, 184, 41, 0.18);
}

.footer-title {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-title-contact {
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.site-footer {
  background: var(--dark);
  color: #fff;
  padding-top: 24px;
}

.footer-cta {
  display: grid;
  position: relative;
  gap: 22px;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(129, 184, 41, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 244, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(164, 207, 40, 0.26), rgba(164, 207, 40, 0) 44%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  margin-bottom: 42px;
  padding: clamp(24px, 4vw, 38px);
}

.footer-cta-copy {
  max-width: 760px;
}

.footer-cta strong {
  display: block;
  margin-top: 10px;
  color: var(--dark);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: 0;
}

.footer-cta p {
  max-width: 620px;
  margin-top: 12px;
  color: rgba(31, 42, 31, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-cta-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(67, 133, 38, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 20px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-cta-secondary:hover {
  border-color: rgba(67, 133, 38, 0.48);
  background: #fff;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta-actions .btn,
  .footer-cta-secondary {
    width: 100%;
  }
}

.insights-hero {
  padding: 150px 0 64px;
  background: #fff;
}

.insights-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.insights-title {
  margin-top: 28px;
  max-width: 960px;
  font-size: clamp(38px, 5.6vw, 72px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  color: var(--dark);
}

.insights-intro {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  max-width: 1120px;
}

.insights-intro p {
  color: var(--text);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.62;
}

.topic-filter {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 28px 0 6px;
}

.topic-filter a {
  flex: 0 0 auto;
  border: 1px solid rgba(31, 42, 31, 0.12);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.topic-filter a.active,
.topic-filter a:hover {
  background: var(--dark);
  color: #fff;
}

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

.insight-card-large,
.insight-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 31, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 18px 45px rgba(31, 42, 31, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.insight-card-large,
.insight-card {
  grid-template-rows: auto 1fr;
}

.insight-card:hover,
.insight-card-large:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 133, 38, 0.26);
  box-shadow: 0 24px 60px rgba(31, 42, 31, 0.1);
}

.insight-card img,
.insight-card-large img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.insight-card > div,
.insight-card-large > div {
  display: grid;
  align-content: start;
  padding: 24px;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--neutral);
  padding: 7px 10px;
}

.insight-card h3,
.insight-card-large h3 {
  margin-top: 18px;
  font-weight: 760;
  line-height: 1.08;
}

.insight-card-large h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.insight-card h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}

.insight-card p,
.insight-card-large p {
  margin-top: 12px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.58;
}

.insight-read-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.article-hero {
  padding: 140px 0 54px;
  background: #fff;
}

.article-title {
  margin-top: 24px;
  max-width: 1060px;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 760;
  line-height: 1.06;
}

.article-short {
  margin-top: 28px;
  max-width: 740px;
  color: var(--text);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.55;
}

.article-cover {
  margin-top: 44px;
  overflow: hidden;
  border-radius: 8px;
}

.article-cover img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  gap: 44px;
}

.toc-box {
  position: sticky;
  top: 110px;
  border-radius: 8px;
  background: var(--neutral);
  padding: 22px;
}

.toc-box strong {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep);
}

.toc-box a {
  display: block;
  border-top: 1px solid rgba(31, 42, 31, 0.1);
  padding: 12px 0;
  color: var(--dark);
  font-weight: 700;
}

.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin-top: 44px;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 760;
  line-height: 1.14;
}

.article-content h3 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.22;
}

.article-content p {
  margin-top: 18px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.72;
}

.article-content ul {
  margin-top: 18px;
}

.article-content li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
}

.article-content li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--primary);
}

.contact-page-form {
  border-radius: 8px;
  background: var(--dark);
  padding: clamp(24px, 4vw, 40px);
}

.will-reveal {
  animation: rise-in 650ms ease both;
}

.will-reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes rise-in {
  from {
    transform: translateY(12px);
    opacity: 0.72;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  }

  .about-proof-grid {
    grid-template-columns: 0.86fr 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr 0.82fr;
    align-items: start;
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

  .footer-cta-actions {
    justify-content: flex-end;
  }

  .insights-intro {
    grid-template-columns: 1fr 1fr;
  }

  .insights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav {
    display: block;
  }

  .section-space {
    padding: 72px 0;
  }

  .about-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-capability {
    min-height: 240px;
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .service-full-container {
    --service-gutter: 32px;
  }
}

@media (max-width: 767px) {
  .section-space {
    padding: 58px 0;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 360px;
  }

  .about-hero-panel {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px;
  }

  .about-stat {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-capability-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-capability {
    min-height: auto;
    border-top: 1px solid rgba(31, 42, 31, 0.1);
    border-left: 0;
    padding: 24px 0;
  }

  .about-timeline::before {
    left: 26px;
  }

  .about-timeline-step {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .about-timeline-step span {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .about-proof-media,
  .about-proof-media img {
    min-height: 320px;
  }

  .about-proof-list article {
    grid-template-columns: 42px 1fr;
  }

  .media-marquee::before,
  .media-marquee::after {
    width: 54px;
  }

  .process-grid,
  .process-wide {
    grid-template-columns: 1fr;
  }

  .process-wide {
    grid-column: auto;
  }

  .process-item {
    min-height: auto;
  }

  .service-slide {
    min-width: 82vw;
    height: 470px;
  }

  .lead-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .lead-submit-row .btn {
    justify-content: center;
    width: 100%;
  }

  .insights-grid,
  .insight-card {
    grid-template-columns: 1fr;
  }

  .article-short {
    font-size: 18px;
  }
}

@media (max-width: 374px) {
  .mobile-bottom-nav {
    padding-right: 10px;
    padding-left: 10px;
  }

  .mobile-bottom-label {
    max-width: 54px;
    font-size: 9px;
  }
}
