:root {
  color-scheme: light;
  --forest: #07823d;
  --forest-deep: #03522f;
  --leaf: #a9cf00;
  --river: #0d6c72;
  --clay: #a8682a;
  --ink: #17201c;
  --muted: #4f625a;
  --line: #dce6df;
  --paper: #ffffff;
  --mist: #f3f7f1;
  --canopy: #071c15;
  --canopy-2: #0b2a21;
  --shadow: 0 24px 70px rgba(10, 45, 30, 0.14);
  --container: 1180px;
  --header: 97px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(169, 207, 0, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header);
  display: flex;
  align-items: center;
  padding: 0 clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(220, 230, 223, 0.78);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 42px rgba(10, 45, 30, 0.11);
}

.brand {
  width: clamp(170px, 18vw, 245px);
}

.brand img {
  width: 100%;
  height: 83px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  color: #26332f;
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 130, 61, 0.24);
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--forest);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(7, 130, 61, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--forest-deep);
  box-shadow: 0 16px 36px rgba(7, 130, 61, 0.26);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 24;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: #128c4a;
  box-shadow: 0 18px 42px rgba(7, 130, 61, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  background: var(--forest);
  box-shadow: 0 22px 52px rgba(7, 130, 61, 0.34);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 86vh;
  padding: calc(var(--header) + 76px) clamp(18px, 4vw, 52px) 0;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(169, 207, 0, 0.12), transparent 34%),
    radial-gradient(ellipse at 84% 58%, rgba(13, 108, 114, 0.36), transparent 44%),
    linear-gradient(135deg, #061611 0%, var(--canopy) 46%, #0b2f23 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 640'%3E%3Cg fill='none' stroke='%23a9cf00' stroke-opacity='.14' stroke-width='1.4'%3E%3Cpath d='M42 456c86-94 166-96 240-34s140 72 222 12 168-92 274-38'/%3E%3Cpath d='M86 512c112-116 214-116 304-42s160 74 252 8 160-76 230-42'/%3E%3Cpath d='M122 382c72-64 152-58 222-12s126 50 206 0 152-66 250-16'/%3E%3Cpath d='M184 290c72-42 128-30 176 6s108 38 174-10 142-44 210 8'/%3E%3Cpath d='M244 214c64-32 120-14 160 18s94 28 144-12 108-34 160 8'/%3E%3C/g%3E%3Cg fill='none' stroke='%230d6c72' stroke-opacity='.18' stroke-width='1'%3E%3Cpath d='M702 96c42 22 70 58 78 106s-6 94-42 132-86 54-138 42'/%3E%3Cpath d='M752 132c30 28 46 62 48 104s-14 78-46 108'/%3E%3Cpath d='M116 124c72-24 132-16 180 24s94 48 140 24'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-position: right 4% center, 0 0, 0 0;
  background-size: min(900px, 76vw) auto, 54px 54px, 54px 54px;
  background-repeat: no-repeat, repeat, repeat;
  mask-image: linear-gradient(90deg, transparent 0%, #000000 30%, #000000 100%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 28, 21, 0.98) 0%, rgba(7, 28, 21, 0.9) 40%, rgba(7, 28, 21, 0.42) 73%, rgba(7, 28, 21, 0.2) 100%),
    radial-gradient(circle at 18% 72%, rgba(0, 0, 0, 0.22), transparent 34%);
}

.hero-content {
  width: min(100%, var(--container));
  min-height: calc(86vh - var(--header) - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(220px, 330px);
  align-items: center;
  gap: clamp(34px, 7vw, 104px);
  padding-bottom: 94px;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  color: #d9f15d;
  border: 1px solid rgba(217, 241, 93, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(9, 54, 37, 0.52);
  backdrop-filter: blur(12px);
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.6vw, 5rem);
  font-weight: 770;
}

.hero h1 {
  max-width: 740px;
  color: #ffffff;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: clamp(1.78rem, 3vw, 3.1rem);
  font-weight: 760;
}

h3 {
  font-size: clamp(1.12rem, 1.45vw, 1.4rem);
  font-weight: 760;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.04rem, 1.32vw, 1.18rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button-primary {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1rem;
  font-weight: 850;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 23px;
  cursor: pointer;
  font-weight: 780;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform 180ms ease;
}

.button:hover .button-icon {
  transform: translateX(3px);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #d6ef2f 0%, var(--leaf) 46%, #8fbd00 100%);
  color: #102015;
  box-shadow: 0 20px 52px rgba(169, 207, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ecff70 0%, #bee300 48%, #9ccd00 100%);
  box-shadow: 0 22px 58px rgba(169, 207, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.13);
}

.hero-metrics {
  display: grid;
  gap: 14px;
  margin: 0;
  min-width: 0;
}

.hero-metrics div {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 26px;
  border: 1px solid rgba(217, 241, 93, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-metrics div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 99px;
  background: var(--leaf);
}

.hero-metrics dt {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 880;
  line-height: 1;
}

.hero-metrics dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.44;
}

.hero-bottom {
  width: min(100%, var(--container));
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(5, 30, 22, 0.36);
  backdrop-filter: blur(14px);
}

.hero-bottom a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.28;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
  transition: color 180ms ease, background 180ms ease;
}

.hero-bottom a::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.hero-bottom a:hover,
.hero-bottom a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
}

.hero-bottom a:hover::after,
.hero-bottom a:focus-visible::after {
  transform: scaleX(1);
}

main > section {
  scroll-margin-top: calc(var(--header) + 18px);
}

.section {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
  padding: clamp(82px, 10vw, 136px) 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: start;
}

.intro-text {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}

.intro-text p {
  margin-bottom: 0;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(180deg, #f7faf5 0%, #eef5ed 100%),
    var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.service-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(7, 130, 61, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 248, 0.98));
  box-shadow: 0 18px 44px rgba(10, 45, 30, 0.07);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--leaf));
  transform: scaleX(0.28);
  transform-origin: left;
  opacity: 0.7;
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(7, 130, 61, 0.28);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.service-card:hover .service-media img {
  transform: scale(1.055);
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 7.4;
  margin: 0;
  overflow: hidden;
  background: var(--canopy);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 28, 21, 0) 36%, rgba(7, 28, 21, 0.46) 100%),
    linear-gradient(90deg, rgba(7, 130, 61, 0.26), rgba(13, 108, 114, 0.08));
  pointer-events: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease);
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.service-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: -58px;
  margin-bottom: 28px;
}

.service-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 130, 61, 0.16);
  border-radius: 999px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(10, 45, 30, 0.16);
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

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

.service-card:hover .service-icon {
  color: #ffffff;
  background: var(--forest);
  transform: translateY(-2px) rotate(-3deg);
}

.service-index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(3, 82, 47, 0.86);
  font-size: 0.8rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(10, 45, 30, 0.16);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.34rem, 2.1vw, 1.9rem);
  line-height: 1.12;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.expertise {
  display: grid;
  gap: 26px;
}

.expertise-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.62fr) minmax(154px, 0.3fr);
  gap: clamp(20px, 2.6vw, 36px);
  align-items: center;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(7, 130, 61, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(243, 247, 241, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(ellipse at 86% 16%, rgba(169, 207, 0, 0.16), transparent 38%);
  box-shadow: 0 18px 48px rgba(10, 45, 30, 0.08);
}

.expertise-panel h2 {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.55vw, 2.42rem);
  line-height: 1.12;
}

.expertise-panel p:not(.eyebrow) {
  max-width: 36ch;
  margin-bottom: 0;
  color: #455951;
  font-size: 1rem;
  line-height: 1.62;
}

.expertise-signals {
  display: grid;
  gap: 10px;
  align-content: center;
}

.expertise-signals span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 130, 61, 0.15);
  border-radius: 999px;
  color: var(--forest-deep);
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 780;
}

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

.expertise-item {
  min-height: 314px;
  padding: 30px;
  border-radius: var(--radius);
  background: #f9fbf8;
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 130, 61, 0.2);
  box-shadow: 0 18px 42px rgba(10, 45, 30, 0.08);
}

.expertise-item h3 {
  margin-bottom: 18px;
}

.expertise-item ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.expertise-item li {
  position: relative;
  padding-left: 22px;
}

.expertise-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--forest);
}

.method {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--container)) / 2));
  color: #ffffff;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 720 520'%3E%3Cg fill='none' stroke='%23a9cf00' stroke-opacity='.1' stroke-width='1.2'%3E%3Cpath d='M20 332c64-72 146-84 226-36s138 70 238 12 158-68 224-34'/%3E%3Cpath d='M40 404c92-86 188-96 286-30s154 64 230 18 118-52 168-32'/%3E%3Cpath d='M108 254c74-42 146-40 210 6s116 38 168-8 110-42 176 6'/%3E%3C/g%3E%3C/svg%3E") right 8% center / min(760px, 72vw) auto no-repeat,
    linear-gradient(180deg, rgba(7, 28, 21, 0.92), rgba(7, 28, 21, 0.98)),
    var(--canopy);
}

.method .eyebrow {
  color: var(--leaf);
}

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

.method-list li {
  position: relative;
  min-height: 318px;
  padding: clamp(28px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease;
}

.method-list li::after {
  content: "";
  position: absolute;
  left: clamp(28px, 3.2vw, 38px);
  right: clamp(28px, 3.2vw, 38px);
  top: 94px;
  height: 1px;
  background: linear-gradient(90deg, rgba(169, 207, 0, 0.8), rgba(169, 207, 0, 0));
}

.method-list li:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 207, 0, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.method-number {
  width: 54px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 62px;
  border: 1px solid rgba(169, 207, 0, 0.34);
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(169, 207, 0, 0.08);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.method-list h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.16rem, 1.45vw, 1.34rem);
  line-height: 1.18;
}

.method-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.66;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.project-feature {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(5, 43, 30, 0.12), rgba(5, 43, 30, 0.92)),
    radial-gradient(circle at 30% 10%, rgba(169, 207, 0, 0.28), transparent 28%),
    linear-gradient(135deg, #0d6c72, #073d2a 58%, #151d18);
}

.project-tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-feature h3 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3.4vw, 3.2rem);
}

.project-feature p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.68;
}

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

.project-item {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.project-item:hover {
  transform: translateX(5px);
  box-shadow: 0 18px 42px rgba(10, 45, 30, 0.08);
}

.project-item span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-item h3 {
  margin-bottom: 12px;
}

.project-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.64;
}

.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.page-main {
  padding-top: var(--header);
}

.work-hero {
  width: 100%;
  padding: clamp(72px, 8vw, 118px) max(18px, calc((100vw - var(--container)) / 2)) clamp(58px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(7, 28, 21, 0.96), rgba(3, 82, 47, 0.93)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 920 460'%3E%3Cg fill='none' stroke='%23a9cf00' stroke-opacity='.16' stroke-width='1.4'%3E%3Cpath d='M28 322c112-76 214-84 304-26s166 60 266 4 194-60 294 12'/%3E%3Cpath d='M40 248c94-52 174-50 258 2s160 62 242 8 162-62 300-8'/%3E%3Cpath d='M92 168c104-44 194-34 270 22s150 48 234-2 148-46 238 14'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.11'%3E%3Ccircle cx='158' cy='142' r='4'/%3E%3Ccircle cx='404' cy='206' r='4'/%3E%3Ccircle cx='642' cy='124' r='4'/%3E%3Ccircle cx='776' cy='278' r='4'/%3E%3C/g%3E%3C/svg%3E") right top / min(920px, 86vw) auto no-repeat;
  color: #ffffff;
}

.work-hero-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.38fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
}

.work-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.work-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.68;
}

.work-hero .eyebrow {
  color: #cce85a;
}

.work-hero-panel {
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.work-hero-panel span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-hero-panel strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.work-hero-panel p {
  margin-top: 18px;
}

.work-filter-band {
  position: sticky;
  top: var(--header);
  z-index: 12;
  border-bottom: 1px solid rgba(220, 230, 223, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.work-filter {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: none;
}

.work-filter::-webkit-scrollbar {
  display: none;
}

.work-filter button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(7, 130, 61, 0.16);
  border-radius: 999px;
  padding: 9px 17px;
  color: var(--forest-deep);
  background: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 780;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.work-filter button:hover,
.work-filter button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(7, 130, 61, 0.34);
}

.work-filter button.is-active,
.work-filter button[aria-pressed="true"] {
  border-color: var(--forest);
  color: #ffffff;
  background: var(--forest);
}

.work-list {
  padding-top: clamp(64px, 7vw, 92px);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.work-grid.is-filtering {
  pointer-events: none;
}

.work-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(7, 130, 61, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #f9fbf8);
  box-shadow: 0 16px 38px rgba(10, 45, 30, 0.06);
  transition: transform 200ms var(--ease), opacity 160ms ease, border-color 200ms ease, box-shadow 200ms var(--ease);
  will-change: transform, opacity;
}

.work-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 99px 99px 0;
  background: var(--forest);
  opacity: 0.72;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 130, 61, 0.28);
  box-shadow: 0 22px 52px rgba(10, 45, 30, 0.1);
}

.work-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(168, 104, 42, 0.2);
  border-radius: 999px;
  color: var(--clay);
  background: rgba(168, 104, 42, 0.06);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.work-card h3 {
  margin-bottom: 14px;
  color: var(--forest-deep);
  font-size: clamp(1.15rem, 1.45vw, 1.42rem);
  line-height: 1.18;
}

.work-card p {
  margin-bottom: 0;
  color: #3d5048;
  font-size: 0.96rem;
  line-height: 1.62;
}

.work-card.is-hidden {
  display: none;
}

.work-card-clone {
  box-shadow: 0 22px 52px rgba(10, 45, 30, 0.1);
  transform-origin: center;
  will-change: transform, opacity;
}

.work-cta {
  width: min(100% - 36px, var(--container));
  margin: 0 auto clamp(82px, 9vw, 126px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest-deep), var(--river));
}

.work-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.work-cta .eyebrow {
  color: #d5ef6a;
}

.clients {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--container)) / 2));
  padding-top: clamp(68px, 7vw, 96px);
  padding-bottom: clamp(86px, 9vw, 126px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 760 360'%3E%3Cg fill='none' stroke='%2307823d' stroke-opacity='.055' stroke-width='1.2'%3E%3Cpath d='M0 236c92-74 168-82 252-30s144 58 232 8 176-58 276 0'/%3E%3Cpath d='M0 292c112-88 214-98 312-36s160 64 248 16 138-58 200-30'/%3E%3Cpath d='M80 166c88-42 154-34 214 8s126 44 202-2 150-38 220 12'/%3E%3C/g%3E%3C/svg%3E") right 8% top 18px / min(760px, 70vw) auto no-repeat,
    linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
  max-width: var(--container);
  margin-bottom: clamp(34px, 3vw, 42px);
}

.clients-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.clients-heading h2 {
  grid-column: 1;
  grid-row: 2;
  max-width: 800px;
  font-size: clamp(1.7rem, 2.55vw, 2.7rem);
  line-height: 1.14;
  margin-bottom: 0;
}

.clients-heading p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

.client-logo-card {
  min-height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid rgba(7, 130, 61, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(10, 45, 30, 0.055);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.client-logo-card-wide {
  min-height: 154px;
}

.client-logo-card img {
  width: 100%;
  max-width: 88%;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  opacity: 1;
  transition: transform 220ms var(--ease);
}

.client-logo-card-wide img {
  max-width: 88%;
  height: auto;
  max-height: 92px;
}

.client-logo-card:hover,
.client-logo-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(7, 130, 61, 0.26);
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(10, 45, 30, 0.1);
}

.client-logo-card:hover img,
.client-logo-card:focus-within img {
  transform: scale(1.04);
}

.team {
  width: min(100% - 36px, var(--container));
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.manifesto {
  position: relative;
}

.team-media {
  position: relative;
  padding: clamp(24px, 5vw, 54px);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(243, 247, 241, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(ellipse at 20% 10%, rgba(169, 207, 0, 0.16), transparent 38%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 56px rgba(10, 45, 30, 0.09);
}

.team-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(7, 130, 61, 0.08);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.team-media img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.team-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.manifesto-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #40544c;
  font-size: 0.98rem;
}

.manifesto-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.manifesto-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(169, 207, 0, 0.56);
  border-radius: 999px;
  background: var(--forest);
  box-shadow: 0 0 0 4px rgba(7, 130, 61, 0.08);
}

.team-tags-label {
  margin: 26px 0 0;
  color: #253630;
  font-size: 0.92rem;
  font-weight: 820;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.team-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(7, 130, 61, 0.16);
  border-radius: 999px;
  color: var(--forest-deep);
  background: #f3f8f2;
  font-size: 0.9rem;
  font-weight: 680;
}

.proof {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--container)) / 2));
  background: #f9faf8;
}

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

.proof-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.proof-item strong {
  max-width: 260px;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.12;
}

.proof-item span {
  color: var(--muted);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.74;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
  color: #40544c;
  line-height: 1.6;
}

address a {
  width: fit-content;
  color: var(--forest-deep);
  font-weight: 750;
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: #128c4a;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbf8;
  box-shadow: 0 18px 48px rgba(10, 45, 30, 0.08);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  color: #253630;
  font-size: 0.94rem;
  font-weight: 760;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid #cfdcd4;
  border-radius: calc(var(--radius) - 2px);
  background: #ffffff;
  color: var(--ink);
  min-height: 50px;
  padding: 13px 14px;
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 132px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(7, 130, 61, 0.12);
  outline: none;
}

.contact-form .button {
  width: 100%;
  border: 0;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest-deep);
  font-size: 0.92rem;
  font-weight: 650;
}

.form-status.is-error {
  color: #8f2f23;
}

.site-footer {
  padding: 38px clamp(18px, 4vw, 52px);
  border-top: 1px solid var(--line);
  color: #50615a;
  background: #ffffff;
}

.site-footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(220px, 0.8fr);
  align-items: center;
  gap: 28px;
}

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

.site-footer-inner p {
  margin: 8px 0 0;
}

.site-footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--ink);
  font-weight: 720;
}

.site-footer-inner > p {
  justify-self: end;
  max-width: 300px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-header-inner {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

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

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

  .client-logo-card-wide {
    grid-column: auto;
  }

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

  .project-layout,
  .team,
  .contact,
  .intro,
  .clients-heading,
  .work-hero-inner {
    grid-template-columns: 1fr;
  }

  .work-hero-panel {
    min-height: auto;
  }

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

  .clients-heading .eyebrow,
  .clients-heading h2,
  .clients-heading p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }

  .clients-heading p:not(.eyebrow) {
    margin-top: 4px;
  }

  .project-feature {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  .expertise-panel {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 28px);
  }

  .expertise-panel h2,
  .expertise-panel p:not(.eyebrow) {
    max-width: none;
  }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .hero {
    padding-top: calc(var(--header) + 38px);
  }

  .hero-content {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 4.8vw, 3.35rem);
  }

  .hero-lead {
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-metrics div {
    padding: 18px;
  }

  .hero-metrics dd {
    font-size: 0.86rem;
  }

  .hero-bottom {
    min-height: 64px;
  }

  .hero-bottom a {
    padding: 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 97px;
  }

  .site-header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: min(62vw, 220px);
  }

  .brand img {
    height: 83px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    width: 100%;
    height: calc(100vh - var(--header));
    display: grid;
    align-content: start;
    justify-items: start;
    justify-self: stretch;
    gap: 0;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 260ms var(--ease);
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

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

  .hero {
    min-height: auto;
    padding: calc(var(--header) + 52px) 18px 0;
  }

  .hero-noise {
    background: rgba(7, 28, 21, 0.76);
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-bottom: 54px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    padding: 16px 12px;
  }

  .hero-metrics dt {
    font-size: 1.75rem;
  }

  .hero-metrics dd {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-bottom {
    width: calc(100% + 36px);
    margin-left: -18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-bottom a {
    min-height: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .section {
    width: min(100% - 36px, var(--container));
    padding: 72px 0;
  }

  .work-hero {
    padding-inline: 18px;
  }

  .work-filter {
    width: calc(100% - 36px);
  }

  .services,
  .method,
  .clients,
  .proof {
    width: 100%;
    padding-inline: 18px;
  }

  .clients {
    padding-top: 78px;
    padding-bottom: 78px;
  }

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

  .site-footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer-inner nav {
    justify-content: flex-start;
  }

  .site-footer-inner > p {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .hero {
    padding-top: calc(var(--header) + 24px);
  }

  .hero-content {
    gap: 18px;
    padding-bottom: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    padding: 6px 9px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.58rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(1.58rem, 7.2vw, 2.12rem);
    line-height: 1.16;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 0.96rem;
    line-height: 1.54;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  .button {
    min-height: 48px;
  }

  .service-grid,
  .expertise-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

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

  .client-logo-card-wide {
    grid-column: span 2;
  }

  .client-logo-card:last-child {
    grid-column: 1 / -1;
  }

  .client-logo-card {
    min-height: 126px;
    padding: 18px 14px;
  }

  .client-logo-card img {
    max-width: 94%;
    height: auto;
    max-height: 76px;
  }

  .client-logo-card-wide img {
    max-width: 88%;
    height: auto;
    max-height: 88px;
  }

  .client-logo-card:last-child img {
    max-width: 68%;
    max-height: 92px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-metrics div {
    padding: 10px 7px;
  }

  .hero-metrics dt {
    font-size: 1.28rem;
  }

  .hero-metrics dd {
    margin-top: 7px;
    font-size: 0.68rem;
    line-height: 1.22;
  }

  .hero-bottom {
    display: none;
  }

  .service-card,
  .method-list li,
  .proof-item {
    min-height: auto;
  }

  .expertise-panel {
    gap: 18px;
    padding: 24px 22px;
  }

  .expertise-panel h2 {
    font-size: clamp(1.32rem, 5.9vw, 1.62rem);
    line-height: 1.13;
  }

  .expertise-panel p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .expertise-signals {
    gap: 8px;
  }

  .expertise-signals span {
    min-height: 38px;
  }

  .method-list li {
    padding: 26px;
  }

  .method-list li::after {
    left: 26px;
    right: 26px;
    top: 80px;
  }

  .method-number {
    margin-bottom: 48px;
  }

  .project-feature {
    min-height: 380px;
  }

  .team-media {
    padding: 18px;
  }

  .team-tags span {
    min-height: 36px;
    font-size: 0.86rem;
  }

  .work-hero h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
    line-height: 1.04;
  }

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

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

  .work-cta {
    grid-template-columns: 1fr;
    margin-bottom: 86px;
  }

  .work-cta .button {
    width: 100%;
  }
}
