:root {
  --green: #087a2a;
  --deep-green: #075c22;
  --yellow: #f9b900;
  --blue: #0b4f8a;
  --deep-blue: #083e70;
  --ink: #12301f;
  --muted: #557064;
  --line: #dce9df;
  --soft: #f7f9f6;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 92, 34, .09);
  --radius: 18px;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 28px rgba(18, 48, 31, .08);
  backdrop-filter: blur(12px);
}

.navbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height .3s ease;
}

.scrolled .navbar {
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.brand-logo {
  width: 144px;
  height: 64px;
  object-fit: cover;
  object-position: center;
}

.brand-copy span {
  display: block;
  font-size: 15px;
}

.brand-copy small {
  display: block;
  color: var(--green);
  font-family: var(--body);
  font-size: 8px;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--yellow);
  transition: right .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-links a.active {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8, 122, 42, .16);
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover {
  background: var(--deep-green);
}

.button-secondary {
  background: var(--white);
  color: var(--green);
  border-color: var(--green);
}

.button-soft {
  background: var(--soft);
  color: var(--green);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 25px;
  cursor: pointer;
}

.nav-overlay {
  display: none;
}

.mobile-cta {
  display: none;
}

.sun-system {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sun {
  position: absolute;
  width: clamp(110px, 13vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .44;
  filter: blur(1px);
  box-shadow: 0 0 96px 40px rgba(249, 185, 0, .38);
  transform: translate(-50%, -50%);
}

.sun::after {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(249, 185, 0, .42), transparent 68%);
}

.page-main {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 152px 0 92px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 36vw;
  aspect-ratio: 1;
  border: 1px solid rgba(8, 122, 42, .14);
  border-radius: 50%;
  right: -15vw;
  top: 8%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--yellow);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin: 0;
}

h1 {
  max-width: 730px;
  margin-top: 19px;
  font-size: clamp(48px, 6.2vw, 82px);
}

h2 {
  font-size: clamp(34px, 4.3vw, 58px);
}

h3 {
  font-size: 23px;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy>p {
  max-width: 570px;
  margin: 24px 0 32px;
  font-size: 17px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 43px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.trust-item i {
  color: var(--green);
  font-size: 20px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.image-frame {
  height: 480px;
  overflow: hidden;
  border-radius: 0 56px 0 56px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: 175px;
  padding: 18px;
  border-left: 4px solid var(--yellow);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-note strong {
  display: block;
  font-family: var(--display);
  font-size: 27px;
  color: var(--green);
}

.image-note span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-head>div {
  max-width: 620px;
}

.section-head p {
  max-width: 520px;
  margin-top: 17px;
}

.kicker {
  color: var(--blue);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.solution-grid,
.product-grid,
.service-grid,
.project-grid,
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}

.card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(18, 48, 31, .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(8, 122, 42, .35);
  box-shadow: var(--shadow);
}

.solution-card {
  padding: 26px 22px;
  min-height: 220px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 35px;
  border-radius: 10px;
  background: #e9f4ea;
  color: var(--green);
  font-size: 22px;
}

.card p {
  margin-top: 11px;
  font-size: 13px;
}

.arrow-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 20px;
  color: var(--green);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 88px;
  align-items: center;
}

.split-copy p {
  max-width: 535px;
  margin: 20px 0 28px;
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.bullet-list i {
  color: var(--green);
  margin-top: 4px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--green);
  font-family: var(--display);
  font-size: 34px;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
}

.product-card {
  overflow: hidden;
}

.product-card .card-image {
  height: 205px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 22px;
}

.product-meta {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-top: 7px;
  font-size: 20px;
}

.spec-line {
  display: flex;
  align-items: start;
  gap: 8px;
  margin: 14px 0 17px;
  color: var(--muted);
  font-size: 11px;
}

.spec-line i {
  color: var(--yellow);
  font-size: 16px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  padding-top: 43px;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 33px;
  height: 33px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 43px;
  width: calc(100% - 42px);
  height: 1px;
  background: var(--line);
}

.process-step:last-child::after {
  display: none;
}

.process-step span {
  position: absolute;
  top: 6px;
  left: 12px;
  color: var(--green);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.process-step h3 {
  font-size: 17px;
}

.process-step p {
  margin-top: 8px;
  font-size: 12px;
}

.project-grid {
  grid-template-columns: 1.18fr .82fr .82fr;
}

.project-card {
  min-height: 340px;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
}

.project-card:first-child {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  border-top: 1px solid rgba(220, 233, 223, .8);
}

.project-overlay small {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 10px;
}

.project-overlay h3 {
  margin-top: 4px;
  font-size: 20px;
}

.cta-band {
  background: var(--green);
  color: var(--white);
  padding: 64px 0;
}

.cta-band p {
  color: rgba(255, 255, 255, .78);
  margin: 14px 0 24px;
}

.cta-band .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
}

.page-hero {
  padding: 170px 0 92px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 620px;
  margin-top: 20px;
  font-size: 17px;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  min-height: 270px;
}

.service-card .icon-box {
  margin-bottom: 28px;
  background: #e9f4ea;
}

.service-card .arrow-link {
  margin-top: 25px;
}

.reason-grid {
  grid-template-columns: repeat(2, 1fr);
}

.reason-card {
  display: flex;
  gap: 18px;
  padding: 25px;
}

.reason-card .icon-box {
  flex: 0 0 auto;
  margin: 0;
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  min-height: 138px;
}

.timeline-marker {
  position: relative;
  color: var(--green);
  font-family: var(--display);
  font-weight: 700;
}

.timeline-marker::after {
  content: '';
  position: absolute;
  left: 10px;
  top: 31px;
  bottom: -1px;
  width: 1px;
  background: var(--line);
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-marker span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--white);
  font-size: 10px;
}

.timeline-item h3 {
  font-size: 21px;
}

.timeline-item p {
  margin-top: 7px;
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 29px;
}

.filter-btn {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 31px;
}

.contact-item {
  display: flex;
  gap: 14px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e9f4ea;
  color: var(--green);
  font-size: 19px;
}

.contact-item strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.form-card {
  padding: 31px;
}

.form-card h2 {
  font-size: 31px;
}

.form-card>p {
  margin: 9px 0 24px;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 122, 42, .1);
}

.form-note {
  display: none;
  margin-top: 12px;
  color: var(--green);
  font-size: 12px;
}

.footer {
  padding: 65px 0 25px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h3 {
  margin-bottom: 17px;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 12px;
}

.footer p {
  max-width: 270px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer a:hover {
  color: var(--green);
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--green);
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 50px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(37, 211, 102, .28);
  font-size: 25px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .36);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 14px;
  }

  .nav-quote {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 650px;
    width: 100%;
  }

  .solution-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 36px, 540px);
  }

  .site-header,
  .site-header.scrolled {
    background: var(--white);
    box-shadow: 0 8px 28px rgba(18, 48, 31, .08);
    backdrop-filter: none;
  }

  .navbar {
    height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 102;
    display: grid;
    align-content: start;
    gap: 0;
    width: min(86vw, 340px);
    padding: 92px 24px 28px;
    background: var(--white);
    box-shadow: -16px 0 36px rgba(18, 48, 31, .15);
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.22, .61, .36, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-overlay {
    position: fixed;
    inset: 0 min(86vw, 340px) 0 0;
    z-index: 101;
    display: block;
    background: rgba(18, 48, 31, .48);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-cta {
    display: inline-flex;
    margin-top: 12px;
  }

  .hero {
    padding: 124px 0 72px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-copy>p {
    font-size: 15px;
  }

  .image-frame {
    height: 350px;
    border-radius: 0 38px 0 38px;
  }

  .image-note {
    left: 12px;
    bottom: 15px;
  }

  .section {
    padding: 76px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head .button {
    margin-top: 22px;
  }

  .solution-grid,
  .product-grid,
  .service-grid,
  .reason-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card:first-child {
    min-height: 280px;
    grid-row: auto;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-step {
    padding: 0 0 0 50px;
    min-height: 72px;
  }

  .process-step::before {
    left: 0;
    top: 0;
  }

  .process-step::after {
    left: 16px;
    top: 34px;
    width: 1px;
    height: 38px;
  }

  .process-step:last-child::after {
    display: block;
  }

  .stat-band {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .page-hero {
    padding: 126px 0 68px;
  }

  .page-hero h1 {
    font-size: 48px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .form-card {
    padding: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }

  .copyright {
    display: block;
  }

  .copyright span {
    display: block;
    margin-top: 6px;
  }

  .back-top {
    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .sun {
    width: 90px;
    opacity: .32;
    box-shadow: 0 0 58px 24px rgba(249, 185, 0, .28);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
