:root {
  --green-950: #000000;
  --green-900: #101510;
  --green-800: #1f3517;
  --green-700: #69bc46;
  --green-600: #9ce700;
  --teal-500: #69bc46;
  --blue-400: #e7f6d4;
  --mint-100: #f5fcf0;
  --mint-50: #f5fcf0;
  --yellow-400: #9ce700;
  --ink: #000000;
  --muted: #61736b;
  --line: #d8e9df;
  --surface: #ffffff;
  --brand-gradient: linear-gradient(135deg, #9ce700, #69bc46);
  --shadow: 0 18px 50px rgba(0, 0, 0, .12);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body.lightbox-active {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--mint-50);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: "Rethink Sans", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
  color: var(--green-950);
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green-950);
  color: #fff;
}

.skip-link:focus { left: 12px; }

.top-strip {
  background: var(--green-950);
  color: #dff5ea;
  font-size: 14px;
}

.top-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-weight: 700;
  color: var(--green-950);
  white-space: nowrap;
}

.brand-logo {
  width: 150px;
  height: 58px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
}

.nav-links a {
  color: var(--green-950);
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-600);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-950);
  font: inherit;
  font-weight: 500;
  cursor: default;
}

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

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--green-600);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 260px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #f5fcf0;
  color: #000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 0;
  border-radius: 999px;
  background: #000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn-primary {
  background: #9ce700;
  color: #000;
}

.btn-secondary {
  background: var(--brand-gradient);
  color: var(--green-950);
}

.btn-outline {
  border-color: var(--green-700);
  color: var(--green-950);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  background:
    linear-gradient(rgba(8, 80, 56, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 80, 56, .055) 1px, transparent 1px),
    linear-gradient(110deg, #f5fcf0 0%, #f5fcf0 62%, #eef9e4 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  background: #000;
  border-radius: 0;
  clip-path: path("M1920 1731C1920 1770.76 1887.76 1803 1848 1803H72C32.2355 1803 0 1770.76 0 1731V188C0 148.235 32.2355 116 72 116H1008.42C1029.35 116 1049.25 106.89 1062.93 91.0424L1119.96 24.9576C1133.64 9.11031 1153.53 0 1174.47 0H1848C1887.76 0 1920 32.2355 1920 72V1731Z");
  transform-origin: bottom left;
  z-index: 0;
}

@supports not (clip-path: path("M0 0H1V1Z")) {
  .hero::after {
    clip-path: polygon(0 6%, 52.5% 6%, 55.4% 0, 96.25% 0, 100% 4%, 100% 100%, 0 100%);
    border-radius: 58px 58px 0 0;
  }
}

.hero::before {
  content: none;
}

.hero-shape-bridge {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 3;
  min-height: 570px;
  display: grid;
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 0;
}

.hero .container > div:first-child {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid #9ce700;
  border-radius: 999px;
  color: #9ce700;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 560px;
  font-size: 60px;
}

.hero p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 18px;
}

.hero-ctas,
.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--green-800);
  font-weight: 700;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  align-items: end;
  min-height: 460px;
  margin-bottom: -150px;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(8, 55, 40, .12);
  box-shadow: var(--shadow);
}

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

.hero-visual .image-frame {
  height: auto;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.hero-visual .image-frame img {
  position: relative;
  z-index: 9;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.hero-marquee-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-top: 50px;
  padding-bottom: 140px;
}

.hero-marquee {
  position: relative;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, .055);
  pointer-events: none;
}

.marquee-track {
  display: flex;
  gap: 34px;
  min-width: max-content;
  animation: marquee 32s linear infinite;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.marquee-track span::after {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background: rgba(156, 231, 0, .75);
  transform: rotate(45deg);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding-block: 88px;
}

.about-section {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 100px;
  background: #002111;
}

.about-reference-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 76px 86px;
  align-items: center;
}

.about-copy-block .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  border: 1px solid #9ce700;
  border-radius: 999px;
  color: #9ce700;
  background: rgba(255, 255, 255, 0);
  font-size: 13px;
  font-weight: 700;
}

.feature-showcase {
  position: relative;
  min-height: 380px;
  padding: 38px;
  background: transparent;
  overflow: visible;
}

.feature-bg-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.feature-showcase h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 20px;
}

.feature-card {
  position: absolute;
  z-index: 2;
  width: 190px;
  padding: 16px;
  border-radius: 8px;
  color: #000;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .18);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.feature-card strong {
  display: block;
  font-weight: 600;
  text-align: center;
}

.feature-left {
  left: 40px;
  top: 102px;
  background: #e7f6d4;
}

.feature-center {
  left: 190px;
  top: 146px;
  z-index: 3;
  background: #c1e46c;
}

.feature-right {
  right: 40px;
  top: 102px;
  background: #e7f6d4;
}

.feature-arrow {
  position: absolute;
  z-index: 4;
  right: 0px;
  top: 0;
  width: 50px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #9ce700;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
}

.about-proof {
  display: grid;
  gap: 0;
  justify-self: end;
  width: min(100%, 560px);
}

.about-proof div {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  justify-items: end;
}

.about-proof strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  color: #fff;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.about-proof span {
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  text-align: right;
}

.about-proof strong .counter {
  color: #fff;
}

.about-proof strong .counter-suffix {
  color: #9ce700;
  font-size: 45px;
}

.about-copy-block h2 {
  max-width: 720px;
  color: #fff;
  font-size: 44px;
}

.about-copy-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: end;
  margin-top: 70px;
}

.small-about-image {
  aspect-ratio: 4 / 3;
}

.about-copy-grid p {
  max-width: 430px;
  color: rgba(255, 255, 255, .76);
  font-weight: 500;
}

.about-copy-grid .btn {
  margin-top: 28px;
}

.about-large-image {
  align-self: stretch;
  min-height: 540px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.about-large-image img {
  object-fit: cover;
}

.section-light {
  background: #fff;
}

.section-mint {
  background: var(--mint-100);
}

.section-dark {
  background: var(--green-950);
}

.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(156, 231, 0, .16), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(105, 188, 70, .12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfff7 100%);
}

.services-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, .08), transparent);
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  align-items: end;
  gap: 34px;
  margin-bottom: 34px;
}

.section-head h2,
.page-hero h1 {
  font-size: 46px;
}

.section-head p {
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  overflow: hidden;
  background: #9ce700;
  border: 0;
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 118px) 0, 100% 118px, 100% 100%, 0 100%);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(0, 54, 28, .04);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: #9ce700;
}

.icon-badge {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: end start;
  border-radius: 50%;
  background: transparent;
  color: var(--green-700);
  font-weight: 700;
  font-family: "Rethink Sans", Arial, sans-serif;
  border: 0;
}

.icon-badge::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  transform: scale(.72);
  transform-origin: center;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.icon-badge svg,
.icon-badge img {
  position: relative;
  z-index: 1;
  width: 55px;
  height: 55px;
  object-fit: contain;
  transform: translate(15px, 0) scale(1);
  transform-origin: center;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.icon-badge svg {
  fill: none;
  stroke: #000000;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge img {
  filter: brightness(0);
}

.service-card:hover .icon-badge::before {
  transform: scale(1.2);
}

.service-card:hover .icon-badge svg,
.service-card:hover .icon-badge img {
  transform: translate(1px, -15px) scale(.75);
}

.service-card h3 {
  max-width: 300px;
  margin-top: 35px;
  color: var(--green-950);
  font-size: 29px;
  line-height: 1.05;
}

.service-card p {
  max-width: 330px;
  margin-top: 24px;
  color: hsla(0, 0%, 0%, 0.80);
  font-size: 18px;
  line-height: 1.45;
}

.card-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 14px 22px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.card-link:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #000;
}

.why {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfff7 0 31%, #9ce700 31% 100%);
}

.why::before,
.why::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.why::before {
  left: 5%;
  bottom: 10%;
  width: 42px;
  height: 42px;
  box-shadow:
    110px 36px 0 -24px rgba(255, 255, 255, .1),
    390px 110px 0 18px rgba(255, 255, 255, .06);
}

.why::after {
  right: 4%;
  bottom: 6%;
  width: 70px;
  height: 70px;
  box-shadow:
    -150px -70px 0 -22px rgba(255, 255, 255, .12),
    -300px 18px 0 -26px rgba(255, 255, 255, .1);
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr);
  grid-template-areas:
    "image heading"
    "image copy"
    ". cards";
  column-gap: 70px;
  align-items: start;
}

.why-main-image {
  grid-area: image;
  min-height: 690px;
  margin-top: 0;
  border-radius: 8px;
  align-self: stretch;
}

.why-main-image img {
  height: 100%;
  object-fit: cover;
}

.why-heading {
  grid-area: heading;
  padding-top: 4px;
}

.why-heading .eyebrow {
  background: #fff;
}

.why-heading h2 {
  max-width: 700px;
  margin-top: 22px;
  color: var(--green-950);
  font-size: 48px;
  line-height: 1.12;
}

.why-copy {
  grid-area: copy;
}

.why-copy p {
  max-width: 690px;
  color: #000000;
  font-size: 18px;
}

.why-copy .section-ctas {
  margin-top: 32px;
}

.why-copy .btn-secondary {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

.benefit-grid {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  transform: translate(-25%, -34%);
  width: calc(100% + 34%);
}

.benefit-card {
  min-height: 280px;
  padding: 14px 14px 26px;
  border-radius: 8px;
  background: linear-gradient(140deg, #fff 70%, #9ee70070 100%);
  box-shadow: var(--shadow);
  border: 1px solid #ffffff;
  text-align: center;
}

.benefit-image {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, .08);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  max-width: 300px;
  margin: 26px auto 0;
  color: var(--green-950);
  font-size: 22px;
  line-height: 1.1;
}

.benefit-card p {
  max-width: 280px;
  margin: 14px auto 0;
  color: rgba(0, 0, 0, .80);
  font-size: 16px;
}

.process {
  text-align: center;
  padding-block: 78px 88px;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 80, 56, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 80, 56, .04) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f5fcf0 100%);
  background-size: 56px 56px, 56px 56px, auto;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(156, 231, 0, .13), transparent 25%),
    radial-gradient(circle at 82% 78%, rgba(210, 222, 36, .16), transparent 24%);
  pointer-events: none;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process-kicker::after {
  content: "";
  width: 18px;
  height: 12px;
  background:
    linear-gradient(135deg, transparent 0 42%, #69bc46 42% 55%, transparent 55%) left center / 8px 12px no-repeat,
    linear-gradient(135deg, transparent 0 42%, #69bc46 42% 55%, transparent 55%) right center / 8px 12px no-repeat;
}

.process h2 {
  margin-top: 18px;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  margin-top: 70px;
}

.process-step {
  position: relative;
}

.process-arrow {
  position: absolute;
  top: 70px;
  right: -104px;
  width: 126px;
  height: 20px;
  fill: none;
  stroke: #9ce700;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.step-circle {
  position: relative;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  margin: 0 auto 34px;
  border-radius: 50%;
  background: #e9f8d7;
  border: 1.5px solid #9ce700;
}

.step-circle::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 6px;
  width: 32px;
  height: 32px;
  background: url("../assets/svg/sparkle.svg") center / contain no-repeat;
}

.step-circle svg,
.step-circle img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.step-circle svg {
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-circle img {
  filter: brightness(0);
}

.process-step h3 {
  font-size: 30px;
  font-weight: 500;
}

.process-step p {
  max-width: 300px;
  margin: 14px auto 0;
  color: rgba(0, 0, 0, .62);
  line-height: 1.45;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f5fcf0 0%, #fff 100%);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 36px 5% auto;
  height: 62%;
  border-radius: 28px;
  background: rgba(156, 231, 0, .08);
  pointer-events: none;
}

.gallery-section > .container {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: repeat(2, 190px);
  gap: 12px;
}

.gallery-grid .image-frame:nth-child(2) {
  grid-row: span 2;
}

.gallery-item {
  padding: 0;
  border: 0;
  cursor: zoom-in;
}

.gallery-item img {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, .86);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  background: #9ce700;
  color: #000;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #c6d9d1;
}

.testimonial-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5fcf0 100%);
  padding-block: 26px 70px;
}

.testimonial-panel {
  position: relative;
  padding: 86px 90px 35px;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f7ef;
}

.testimonial-head {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.testimonial-head h2 {
  margin-top: 20px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.12;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 20px) / 2);
  min-height: 328px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 38px 34px;
  border-radius: 18px;
  background: #fff;
}

.quote-mark {
  color: #000;
  font-family: Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: .7;
}

.testimonial-card p {
  margin-top: 28px;
  color: #000;
  font-size: 17px;
  line-height: 1.5;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.testimonial-person > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #9ce700, #69bc46);
  color: #000;
  font-size: 12px;
  font-weight: 700;
}

.testimonial-person strong {
  display: block;
  color: #000;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-person small {
  display: block;
  margin-top: 3px;
  color: rgba(0, 0, 0, .62);
  font-size: 12px;
}

.stars {
  margin-top: 4px;
  color: #9ce700;
  font-size: 12px;
  letter-spacing: .08em;
}

.testimonial-nav {
  position: absolute;
  top: 53%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: rgba(0, 0, 0, .72);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-prev {
  left: 28px;
}

.testimonial-next {
  right: 28px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .14);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: rgba(0, 0, 0, .58);
}

.rating-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 54px auto -36px;
  padding: 18px 28px;
  border-radius: 22px 22px 0 0;
  background: #fff;
  color: #000;
}

.rating-pill > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font-weight: 700;
}

.rating-pill strong {
  font-size: 16px;
}

.rating-pill small {
  color: #000;
  font-size: 12px;
}

.about-collage {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
  align-items: end;
}

.about-collage .image-frame:first-child {
  aspect-ratio: 4 / 3;
}

.about-collage .image-frame:last-child {
  aspect-ratio: 4 / 5;
}

.cta-section {
  background:
    linear-gradient(rgba(8, 80, 56, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 80, 56, .045) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(156, 231, 0, .16), transparent 28%),
    #f5fcf0;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.cta-head {
  margin-bottom: 34px;
}

.cta-head h2 {
  margin-top: 18px;
  font-size: 46px;
  line-height: 1.08;
}

.cta-head p {
  margin-top: 16px;
  max-width: 680px;
  font-size: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--green-950);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 500;
  background: #f8fcf5;
  color: var(--ink);
}

.quote-form textarea {
  min-height: 112px;
  grid-column: 1 / -1;
  border-radius: 20px;
  resize: vertical;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.map-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  border-radius: 8px;
  background: transparent;
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  height: 100%;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(.92);
}

.map-info {
  padding: 24px;
  border-radius: 8px;
  background: #9ce700;
  color: #000;
  box-shadow: var(--shadow);
  border: 1px solid #ffffff;
}

.map-info strong {
  display: block;
  color: #000;
  font-size: 18px;
}

.map-info > span {
  display: block;
  margin-top: 8px;
  color: rgb(0, 0, 0);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #000;
  font-weight: 700;
}

.page-hero {
  padding-block: 82px;
  background:
    linear-gradient(rgba(8, 80, 56, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 80, 56, .055) 1px, transparent 1px),
    linear-gradient(110deg, #fff 0%, var(--mint-100) 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  font-size: 18px;
}

.about-page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #002111;
}

.about-page-hero-media {
  position: absolute;
  inset: 0;
}

.about-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 33, 17, .96) 0%, rgba(0, 33, 17, .72) 35%, rgba(0, 0, 0, .1) 100%);
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-page-hero h1 {
  color: #fff;
  font-size: 64px;
}

.breadcrumb-card {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-radius: 8px 8px 0 0;
  background: #fff;
  color: rgba(0, 0, 0, .62);
  font-weight: 700;
}

.breadcrumb-card span {
  width: 12px;
  height: 12px;
  border-top: 3px solid #9ce700;
  border-right: 3px solid #9ce700;
  transform: rotate(45deg);
}

.about-page-intro {
  overflow: hidden;
  background: #f5fcf0;
}

.about-page-intro-grid {
  display: grid;
  grid-template-columns: .82fr 1.05fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #00aa55;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-kicker::before,
.about-kicker::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #00aa55;
}

.about-intro-left {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.about-person-card {
  position: relative;
  width: min(100%, 260px);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 130px 130px;
}

.about-person-card img,
.about-round-image img,
.about-main-photo img,
.about-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-round-image {
  width: 210px;
  height: 130px;
  overflow: hidden;
  border-radius: 0 0 110px 110px;
}

.about-intro-copy h2 {
  margin-top: 20px;
  font-size: 44px;
  line-height: 1.12;
}

.about-intro-copy p {
  margin-top: 18px;
}

.about-intro-copy h3 {
  margin-top: 28px;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 40px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #bdfb8b;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: .72em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
}

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

.about-main-photo {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.about-video-card {
  position: absolute;
  right: -30%;
  bottom: -20%;
  width: 80%;
  overflow: hidden;
}

.about-video-card span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.about-video-card span::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #00aa55;
}

.about-video-card span {
  display: none;
}

.about-number-section {
  background: #fff;
  text-align: center;
}

.about-number-head {
  max-width: 760px;
  margin: 0 auto 58px;
}

.about-number-head h2 {
  margin-top: 18px;
  font-size: 46px;
  line-height: 1.12;
}

.about-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #d7ded8;
  border-bottom: 1px solid #d7ded8;
}

.about-number-grid article {
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid #d7ded8;
  border-radius: 50%;
  background: #fff;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.about-number-grid article:hover {
  background: radial-gradient(circle, #fffef6 0%, #f5fcf0 100%);
  border-color: #9ce700;
}

.about-number-grid strong {
  color: #000;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.about-number-grid strong span:last-child {
  color: #9ce700;
  font-size: 34px;
  padding-left: 10px;
  vertical-align: super;
}

.about-number-grid p {
  margin-top: 14px;
  color: rgba(0, 0, 0, .7);
}

.about-values-section {
  background: linear-gradient(180deg, #fff 0%, #f5fcf0 100%);
}

.values-head {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.values-head h2 {
  font-size: 42px;
  font-weight: 500;
}

.values-head p {
  margin-top: 18px;
  color: #000;
}

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

.values-grid article {
  min-height: 260px;
  padding: 34px 28px;
  border-radius: 20px;
  background: #e7f6d4;
  transform: rotate(-2deg);
}

.values-grid article:nth-child(even) {
  transform: rotate(2deg);
}

.values-grid span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: #00aa55;
  font-weight: 700;
}

.values-grid span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0);
}

.values-grid h3 {
  margin-top: 22px;
  font-size: 24px;
}

.values-grid p {
  margin-top: 12px;
  color: rgba(0, 0, 0, .66);
  font-size: 15px;
}

.contact-page-hero .breadcrumb-card {
  min-width: 235px;
}

.contact-info-section {
  background: #fff;
}

.contact-page-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}

.contact-page-head h2 {
  margin-top: 18px;
  font-size: 46px;
  font-weight: 500;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-info-grid article {
  min-height: 240px;
  padding: 36px 28px;
  border-radius: 20px;
  background: #e7f6d4;
  transform: rotate(2deg);
}

.contact-info-grid article:nth-child(even) {
  transform: rotate(-2deg);
}

.contact-info-grid span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: #00aa55;
  font-size: 13px;
  font-weight: 700;
}

.contact-info-grid span img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0);
}

.service-suitable-grid span img,
.contact-info-grid span img {
  filter: brightness(0) saturate(100%)
        invert(73%)
        sepia(98%)
        saturate(2700%)
        hue-rotate(42deg)
        brightness(95%)
        contrast(104%);
}

.contact-info-grid h3 {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 500;
}

.contact-info-grid a,
.contact-info-grid p {
  display: block;
  margin-top: 12px;
  color: #000;
  font-size: 14px;
}

.contact-form-section {
  background: #fff;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-page-form {
  padding: 48px 54px;
  border-radius: 28px;
  background: linear-gradient(135deg, #9ce700 0%, #e6f7d6 100%);
}

.contact-page-form h2 {
  max-width: 520px;
  margin-top: 18px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.12;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 40px;
}

.contact-page-form label {
  display: grid;
  gap: 8px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  border: 1px solid #d5d9cf;
  border-radius: 7px;
  background: #fff;
  font: inherit;
}

.contact-page-form textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-page-form .full {
  grid-column: 1 / -1;
}

.contact-submit {
  margin-top: 18px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 700;
}

.contact-form-image {
  overflow: hidden;
  border-radius: 28px;
  min-height: 580px;
}

.contact-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map-section {
  padding-top: 30px;
  background: linear-gradient(180deg, #fff 0%, #f5fcf0 100%);
}

.contact-map-section iframe {
  width: 100%;
  min-height: 470px;
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-page-hero h1 {
  max-width: 700px;
}

.service-breadcrumb {
  min-width: min(100%, 535px);
}

.service-about-section {
  background: #fff;
}

.service-about-layout {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-about-image {
  min-height: 580px;
  overflow: hidden;
  border-radius: 15px;
  background: #f5fcf0;
}

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

.service-about-copy {
  max-width: 620px;
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #9ce700;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-label::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #9ce700;
}

.service-about-copy h2 {
  margin-top: 24px;
  font-size: 46px;
  line-height: 1.12;
}

.service-about-copy p {
  margin-top: 22px;
  color: #1a1a1a;
  font-size: 17px;
}

.service-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 17px 38px;
  overflow: hidden;
  background: #e7f6d4;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  isolation: isolate;
  transition: color .35s ease, transform .35s ease;
}

.service-contact-btn::before {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  z-index: -1;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #9ce700;
  transform: scale(.48);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.service-contact-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px 0 0 0;
  background: #9ce700;
  transition: opacity .25s ease;
}

.service-contact-btn:hover,
.service-contact-btn:focus-visible {
  color: #000;
  transform: translateY(-2px);
}

.service-contact-btn:hover::before,
.service-contact-btn:focus-visible::before {
  transform: scale(9);
}

.service-contact-btn:hover::after,
.service-contact-btn:focus-visible::after {
  opacity: 0;
}

.service-suitable-section {
  background: linear-gradient(180deg, #fff 0%, #f5fcf0 100%);
}

.service-suitable-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(0, 0, 0, .66);
  font-size: 15px;
}

.service-contact-section {
  padding-bottom: 110px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 46px;
  align-items: center;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.footer {
  position: relative;
  padding: 0;
  background:
    linear-gradient(rgba(8, 80, 56, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 80, 56, .045) 1px, transparent 1px),
    radial-gradient(circle at 85% 20%, rgba(8, 80, 56, .045), transparent 1px),
    #f5fcf0;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.footer-cta-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 26px 44px;
  border-radius: 8px;
  background: #9ce700;
  color: #000;
  transform: translateY(50%);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-contact-item > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #06120c;
  color: #9ce700;
  font-size: 25px;
}

.footer-contact-item small {
  display: block;
  color: rgba(0, 0, 0, .62);
  font-size: 14px;
}

.footer-contact-item a {
  display: block;
  margin-top: 4px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.footer-cta-copy h2 {
  font-size: 28px;
  line-height: 1.1;
}

.footer-cta-copy p {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.80);
}

.footer-price-btn {
  justify-self: end;
  padding: 17px 38px;
  border: 2px solid #000;
  border-radius: 999px;
  color: #000000;
  background: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}

.footer-price-btn:hover,
.footer-price-btn:focus-visible {
  color: #fff;
  background: #000;
}

.footer-panel {
  padding: 170px 0 46px;
  background: #000;
  background-size: auto, 46px 46px, 46px 46px, auto;
  color: #fff;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1.2fr .75fr;
  gap: 54px;
  align-items: start;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  line-height: 1.55;
}

.footer-mini-list {
  margin-top: 32px !important;
}

.footer h3 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 20px;
  text-transform: none;
}

.footer ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.footer li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  display: inline-block;
  margin-top: .58em;
  margin-right: 0;
  background: rgba(255, 255, 255, .72);
  transform: rotate(45deg);
}

.footer li a {
  min-width: 0;
  color: inherit;
  overflow-wrap: anywhere;
}

.footer a:hover {
  color: var(--green-600);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 78px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: var(--shadow);
}

.sticky-whatsapp img {
  width: 28px;
  height: 28px;
}

.eyebrow,
.process-kicker,
.about-kicker,
.service-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 0;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid #9ce700;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #9ce700;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.process-kicker::after,
.about-kicker::before,
.about-kicker::after,
.service-label::before {
  content: none;
}

@media (max-width: 980px) {
  .top-strip { display: none; }

  .menu-toggle { display: inline-grid; }

  .nav-links {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-toggle {
    padding: 12px;
    justify-content: space-between;
    cursor: pointer;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    display: none;
    margin: 0 0 6px;
    padding: 4px 0 4px 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .nav-dropdown-menu::before {
    content: none;
  }

  .nav-dropdown-menu a {
    padding: 9px 12px;
    white-space: normal;
  }

  .nav-actions .btn {
    display: none;
  }

  .footer-cta-bar {
    grid-template-columns: 1fr 1fr;
    transform: translateY(36%);
  }

  .footer-cta-copy {
    padding-left: 0;
    border-left: 0;
  }

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

  .about-intro-left {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .about-intro-visual {
    min-height: 480px;
  }

  .about-number-grid,
  .values-grid,
  .contact-info-grid,
  .contact-form-layout,
  .service-about-layout {
    grid-template-columns: 1fr 1fr;
  }

  .service-about-layout {
    grid-template-columns: .92fr 1fr;
    gap: 34px;
  }

  .service-about-image {
    min-height: 440px;
  }

  .contact-page-head {
    margin-bottom: 80px;
  }

  .contact-form-image {
    min-height: 420px;
  }

  .hero .container,
  .why-layout,
  .about-reference-layout,
  .detail-layout,
  .contact-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-reference-layout {
    gap: 54px;
  }

  .why {
    background: linear-gradient(180deg, #fbfff7 0 36%, #9ce700 36% 100%);
  }

  .why-layout {
    grid-template-areas:
      "heading"
      "image"
      "copy"
      "cards";
    row-gap: 30px;
  }

  .why-main-image {
    min-height: 440px;
  }

  .why-heading h2 {
    font-size: 42px;
  }

  .benefit-grid {
    transform: none;
    width: 100%;
  }

  .testimonial-panel {
    padding-inline: 70px;
  }

  .feature-showcase {
    min-height: 360px;
  }

  .about-proof div {
    grid-template-columns: 140px 1fr;
    justify-self: space-between;
  }

  .hero .container {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 0;
  }

  .hero-visual {
    min-height: auto;
    margin-bottom: -72px;
  }

  .hero-visual .image-frame {
    width: 100%;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .services-grid,
  .benefit-grid,
  .process-grid,
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .process-arrow {
    display: none;
  }

  .map-card {
    min-height: 460px;
  }

  .footer-panel {
    padding-top: 210px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand span:last-child {
    max-width: 145px;
    white-space: normal;
    line-height: 1.1;
  }

  .hero-visual {
  margin-bottom: -55px;
}

  .hero h1,
  .section-head h2,
  .why-heading h2,
  .about-page-hero h1,
  .about-intro-copy h2,
  .about-number-head h2,
  .page-hero h1,
  .process h2 {
    font-size: 30px;
  }

  .service-card h3,.process-step h3{
    font-size: 24px;
  }

  .section {
    padding-block: 58px;
  }

  .services-grid,
  .benefit-grid,
  .process-grid,
  .gallery-grid,
  .footer-cols,
  .about-copy-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .footer-cta-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    transform: translateY(24%);
  }

  .footer-contact-item {
    align-items: flex-start;
  }

  .footer-price-btn {
    justify-self: stretch;
    text-align: center;
  }

  .about-page-hero,
  .about-page-hero-inner {
    min-height: 430px;
  }

  .breadcrumb-card {
    left: 12px;
    padding: 18px 22px;
  }

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

  .about-intro-visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .about-main-photo,
  .about-video-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .about-main-photo {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-video-card {
    border-width: 8px;
  }

  .about-number-grid,
  .values-grid,
  .contact-info-grid,
  .contact-form-layout,
  .service-about-layout {
    grid-template-columns: 1fr;
  }

  .service-breadcrumb {
    min-width: 0;
    max-width: calc(100% - 24px);
    flex-wrap: wrap;
  }

  .service-about-layout {
    gap: 32px;
  }

  .service-about-image {
    min-height: 330px;
  }

  .service-about-copy h2 {
    font-size: 34px;
  }

  .contact-page-head {
    margin-bottom: 44px;
  }

  .contact-page-head h2,
  .contact-page-form h2 {
    font-size: 34px;
  }

  .contact-info-grid article,
  .contact-info-grid article:nth-child(even) {
    transform: none;
  }

  .contact-page-form {
    padding: 32px 24px;
    border-radius: 18px;
  }

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

  .contact-form-image {
    min-height: 320px;
    border-radius: 18px;
  }

  .contact-map-section iframe {
    min-height: 360px;
    border-radius: 18px;
  }

  .about-number-grid article {
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .values-grid article,
  .values-grid article:nth-child(even) {
    transform: none;
  }

  .process-grid {
    gap: 42px;
    margin-top: 46px;
  }

  .step-circle {
    width: 136px;
    height: 136px;
    margin-bottom: 24px;
  }

  .feature-showcase {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 22px;
  }

  .why {
    padding: 58px 0 70px;
    background: linear-gradient(180deg, #fbfff7 0 30%, #9ce700 30% 100%);
  }

  .why-main-image {
    min-height: 360px;
  }

  .why-copy {
    padding-top: 0;
  }

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

  .testimonial-panel {
    padding: 58px 22px 54px;
    border-radius: 18px;
  }

  .testimonial-head h2 {
    font-size: 30px;
  }

  .testimonial-card {
    flex-basis: 100%;
    min-height: 340px;
    padding: 34px 26px 30px;
  }

  .testimonial-nav {
    top: auto;
    bottom: 86px;
    width: 40px;
    height: 40px;
  }

  .testimonial-prev {
    left: 18px;
  }

  .testimonial-next {
    right: 18px;
  }

  .rating-pill {
    margin-bottom: -30px;
  }

  .feature-bg-shape {
    display: none;
  }

  .feature-card {
    position: static;
    width: 100%;
  }

  .feature-arrow {
    right: 16px;
    top: 10px;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .about-proof strong .counter-suffix {
  font-size: 28px;
}

  .about-proof {
    justify-self: end;
  }

  .about-proof div {
    grid-template-columns: 150px 1fr;
    gap: 8px;
    padding-block: 20px;
  }

  .about-proof strong {
    font-size: 42px;
  }

  .about-copy-block h2 {
    font-size: 34px;
  }

  .about-copy-grid {
    margin-top: 34px;
  }

  .about-large-image {
    min-height: 360px;
  }

  .gallery-grid {
    grid-template-rows: none;
  }

  .gallery-grid .image-frame,
  .gallery-grid .image-frame:nth-child(2) {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-marquee {
    width: 100%;
    height: 58px;
  }

  .hero-marquee-wrap {
    margin-top: 0px;
    padding-bottom: 50px;
  }

  .hero::before {
    content: none;
  }

  .hero::after {
    height: 170px;
  }

  .hero-shape-bridge {
    display: none;
  }

  .marquee-track {
    font-size: 42px;
    gap: 24px;
  }

  .footer-panel {
    padding-top: 270px;
    padding-bottom: 34px;
  }

  .cta-head h2 {
    font-size: 34px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .map-card {
    min-height: 430px;
  }

  .footer-bottom {
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
