:root {
  --green: #55bf00;
  --green-dark: #2f7f00;
  --green-soft: #eaffdc;
  --dark: #111614;
  --ink: #26302d;
  --muted: #66736f;
  --line: rgba(17, 22, 20, 0.12);
  --white: #ffffff;
  --shade: #f5f8f2;
  --shadow: 0 24px 70px rgba(21, 31, 25, 0.14);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.shell {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
  position: relative;
}

.section-pad.compact {
  padding: 78px 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #223028 0%, #0f1512 70%);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  width: min(320px, 80vw);
  text-align: center;
  color: var(--white);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.loader-card img {
  width: 150px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 18px 34px rgba(85, 191, 0, 0.24));
  animation: logoPulse 1.7s ease-in-out infinite;
}

.loader-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.loader-line {
  height: 5px;
  overflow: hidden;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  animation: loadMove 1.3s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 22, 20, 0.08);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(17, 22, 20, 0.04);
}

.nav-links a {
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #35403c;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 36px rgba(85, 191, 0, 0.28);
}

.btn.ghost {
  color: var(--dark);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 22, 20, 0.12);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(17, 22, 20, 0.18);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--dark);
  color: var(--white);
  padding: 13px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 8px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(85, 191, 0, 0.16), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(85, 191, 0, 0.12), transparent 28%),
    linear-gradient(140deg, #ffffff 0%, #f3f8ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(135deg, rgba(17, 22, 20, 0.08) 1px, transparent 1px),
    linear-gradient(45deg, rgba(85, 191, 0, 0.13) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
  animation: gridShift 18s linear infinite;
}

.hero-grid,
.split-grid,
.contact-grid,
.marketing-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: var(--green);
}

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

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(2.8rem, 6.5vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--dark);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--dark);
}

h3 {
  color: var(--dark);
  letter-spacing: -0.025em;
}

.hero-copy p,
.section-copy p,
.section-head p,
.contact-card p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row div {
  min-width: 128px;
  padding: 17px 18px;
  border: 1px solid rgba(17, 22, 20, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(17, 22, 20, 0.06);
}

.trust-row strong {
  display: block;
  color: var(--dark);
  font-size: 1.45rem;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.image-stack {
  position: relative;
  padding: 18px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 22, 20, 0.1);
  box-shadow: var(--shadow);
}

.main-img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: 30px;
  filter: saturate(1.05) contrast(1.03);
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 48px;
  background: conic-gradient(from 160deg, var(--green), transparent, var(--dark), transparent, var(--green));
  opacity: 0.22;
  animation: spinGlow 9s linear infinite;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(17, 22, 20, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  animation: floatY 4s ease-in-out infinite;
}

.floating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card strong {
  font-size: 1rem;
}

.top-card {
  top: 46px;
  left: -26px;
}

.bottom-card {
  right: -28px;
  bottom: 48px;
  animation-delay: 0.7s;
}

.shape {
  position: absolute;
  display: block;
  border: 20px solid var(--green);
  opacity: 0.18;
  transform: rotate(45deg);
  animation: shapeFloat 11s ease-in-out infinite;
}

.shape-one {
  width: 150px;
  height: 150px;
  left: 5%;
  bottom: 10%;
}

.shape-two {
  width: 96px;
  height: 96px;
  right: 9%;
  top: 12%;
  border-color: var(--dark);
  animation-delay: 1s;
}

.shape-three {
  width: 70px;
  height: 70px;
  right: 44%;
  bottom: 20%;
  animation-delay: 2s;
}

.about {
  background: var(--white);
}

.media-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 22, 20, 0.75));
}

.media-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  background: var(--green);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.value-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.value-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 22, 20, 0.05);
}

.value-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
}

.value-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--dark);
  font-size: 1.05rem;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.vision,
.marketing,
.process {
  background: var(--shade);
  overflow: hidden;
}

.vision::before,
.marketing::before,
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    radial-gradient(circle at 12% 30%, rgba(85, 191, 0, 0.13), transparent 22%),
    radial-gradient(circle at 90% 70%, rgba(17, 22, 20, 0.08), transparent 25%);
}

.vision-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vision-card {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}

.vision-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border: 28px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}

.vision-card.dark {
  color: var(--white);
  background: var(--dark);
}

.vision-card.green {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #3a9300);
}

.vision-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.vision-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  color: inherit;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.vision-card p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

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

.services {
  background: #fff;
}

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

.service-card,
.value-card,
.project-card,
.contact-form,
.contact-card,
.steps article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(17, 22, 20, 0.07);
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border: 22px solid rgba(85, 191, 0, 0.14);
  border-radius: 42px;
  transform: rotate(45deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(17, 22, 20, 0.13);
  border-color: rgba(85, 191, 0, 0.36);
}

.service-card:hover::after {
  transform: rotate(20deg) scale(1.08);
  opacity: 0.9;
}

.service-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #111614, #27302b);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 20px;
  position: relative;
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(85, 191, 0, 0.18);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.icon::before {
  width: 24px;
  height: 24px;
  left: 17px;
  top: 17px;
  border-radius: 8px;
}

.icon::after {
  width: 18px;
  height: 4px;
  left: 20px;
  top: 27px;
  border-radius: 12px;
  background: var(--dark);
}

.featured .icon {
  background: rgba(255, 255, 255, 0.12);
}

.featured .icon::after {
  background: var(--white);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.68;
}

.marketing-grid {
  position: relative;
}

.marketing-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.marketing-points span {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 22, 20, 0.08);
  color: var(--dark);
  font-weight: 800;
}

.orbit-card {
  justify-self: center;
  width: min(420px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.orbit-ring {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dashed rgba(85, 191, 0, 0.72);
  animation: spinGlow 18s linear infinite;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.orbit-ring::before {
  left: 14%;
  top: 2%;
}

.orbit-ring::after {
  right: 6%;
  bottom: 12%;
  background: var(--green);
}

.orbit-center {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.orbit-center strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.orbit-center span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.values {
  background: var(--white);
}

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

.value-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  right: 20px;
  top: 22px;
  border-radius: 24px;
  background: var(--green-soft);
  transform: rotate(12deg);
}

.value-card span {
  position: relative;
  display: block;
  margin-bottom: 48px;
  color: var(--dark);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.value-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.projects {
  background: linear-gradient(180deg, var(--shade), #ffffff);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 22px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(17, 22, 20, 0.14);
}

.project-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.project-card div {
  padding: 24px;
}

.project-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-grid {
  position: relative;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
}

.steps span {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--dark);
  font-weight: 950;
}

.steps strong {
  color: var(--dark);
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  background:
    linear-gradient(135deg, rgba(17, 22, 20, 0.92), rgba(17, 22, 20, 0.82)),
    url("../img/team-hands.jpg") center / cover fixed;
  color: var(--white);
}

.contact h2,
.contact .eyebrow,
.contact-card p {
  color: var(--white);
}

.contact .eyebrow::before {
  background: var(--white);
}

.contact-card,
.contact-form {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.contact-card {
  padding: clamp(28px, 5vw, 50px);
  border-radius: 34px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.contact-lines strong {
  color: rgba(255, 255, 255, 0.7);
}

.contact-lines span {
  text-align: right;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
}

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

.contact-form label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  outline: 0;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(85, 191, 0, 0.88);
  box-shadow: 0 0 0 4px rgba(85, 191, 0, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.footer {
  padding: 46px 0;
  background: #0d110f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer img {
  width: 110px;
  margin-bottom: 10px;
}

.footer p {
  margin: 0;
  max-width: 440px;
  line-height: 1.6;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.copyright {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  height: 54px;
  padding: 0 20px;
  color: var(--white);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 44px rgba(85, 191, 0, 0.28);
  font-weight: 900;
  animation: pulseShadow 2s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loadMove {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 160px 160px, -240px 240px; }
}

@keyframes spinGlow {
  to { transform: rotate(360deg); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-18px) rotate(58deg); }
}

@keyframes pulseShadow {
  0%, 100% { box-shadow: 0 18px 44px rgba(85, 191, 0, 0.28); }
  50% { box-shadow: 0 22px 62px rgba(85, 191, 0, 0.45); }
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .project-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 28px, var(--max));
  }

  .section-pad,
  .section-pad.compact {
    padding: 72px 0;
  }

  .nav {
    height: 76px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

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

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

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

  .nav-links {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    justify-content: stretch;
    padding: 16px;
    border-radius: 24px;
    background: rgba(17, 22, 20, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--white);
    padding: 15px 18px;
  }

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

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .marketing-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 5rem);
  }

  .media-card img {
    height: 420px;
  }

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

  .floating-card {
    min-width: 180px;
  }

  .top-card {
    left: 14px;
    top: 26px;
  }

  .bottom-card {
    right: 14px;
    bottom: 30px;
  }

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

  .copyright {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .section-head {
    margin-bottom: 32px;
  }

  .hero-actions,
  .trust-row {
    display: grid;
  }

  .trust-row div {
    min-width: 0;
  }

  .service-grid,
  .values-grid,
  .project-grid,
  .marketing-points,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .project-card:first-child {
    grid-column: auto;
  }

  .project-card img {
    height: 220px;
  }

  .contact-form .full,
  .contact-form .form-status {
    grid-column: auto;
  }

  .contact-lines a,
  .contact-lines p {
    display: grid;
  }

  .contact-lines span {
    text-align: left;
  }

  .steps article,
  .value-list article {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .image-stack {
    display: grid;
  }

  .main-img {
    aspect-ratio: 1 / 1.08;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 126px;
    height: 50px;
  }
}

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

.form-status a {
  color: var(--green-soft);
  font-weight: 950;
  text-decoration: underline;
}
