:root {
  --green-950: #062f1f;
  --green-900: #064126;
  --green-800: #075331;
  --green-600: #16733a;
  --lime-500: #87bd22;
  --lime-300: #c8df72;
  --amber-500: #d99b2b;
  --ink: #17211b;
  --muted: #5f6d62;
  --line: rgba(11, 73, 42, 0.14);
  --paper: #fbfcf7;
  --soft: #eef5e7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(10, 47, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto 0;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(8, 45, 30, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 7px;
}

.brand span {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: rgba(6, 47, 31, 0.76);
  font-size: 0.92rem;
  font-weight: 720;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.header-action,
.btn,
.chat-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 820;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--lime-500));
  box-shadow: 0 12px 28px rgba(22, 115, 58, 0.28);
  white-space: nowrap;
}

.header-action:hover,
.btn:hover,
.chat-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-950);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 88svh;
  padding: 128px 0 56px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(6, 47, 31, 0.96), rgba(7, 83, 49, 0.88) 47%, rgba(10, 75, 38, 0.76)),
    radial-gradient(circle at 82% 16%, rgba(200, 223, 114, 0.34), transparent 28%),
    var(--green-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.09) 18% 18.35%, transparent 18.35% 42%, rgba(255, 255, 255, 0.07) 42% 42.25%, transparent 42.25%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 86px);
  animation: fieldDrift 16s linear infinite;
}

.hero-lines {
  position: absolute;
  right: -10vw;
  bottom: -34vh;
  width: 68vw;
  aspect-ratio: 1;
  border: 1px solid rgba(200, 223, 114, 0.42);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.hero-lines::before {
  inset: 9%;
}

.hero-lines::after {
  inset: 18%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(88svh - 184px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-300);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 12vw, 9.4rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(650px, 100%);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2.1vw, 1.46rem);
  font-weight: 520;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-width: 154px;
  padding: 0 20px;
}

.btn-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--lime-300), var(--lime-500));
  box-shadow: 0 16px 36px rgba(135, 189, 34, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-dark {
  color: var(--white);
  background: var(--green-950);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 680;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 13% -7% -8% 9%;
  background: linear-gradient(135deg, rgba(135, 189, 34, 0.28), rgba(217, 155, 43, 0.2));
  border-radius: var(--radius);
  transform: rotate(-6deg);
}

.hero-visual img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.25);
  animation: logoFloat 5.8s ease-in-out infinite;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-scroll span {
  width: 7px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
}

.hero-scroll span::after {
  content: "";
  display: block;
  width: 3px;
  height: 6px;
  margin: 4px auto;
  background: var(--lime-300);
  border-radius: 999px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.strip-item {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px;
  background: var(--white);
}

.strip-item strong {
  color: var(--green-900);
  font-size: 1.05rem;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}

.section-heading .eyebrow,
.advisory .eyebrow,
.company .eyebrow,
.contact .eyebrow {
  color: var(--green-600);
}

.section h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 560;
}

.solutions {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%),
    var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.05fr) minmax(320px, 0.95fr);
  gap: 16px;
  align-items: stretch;
}

.service-card {
  position: relative;
  min-height: 156px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 238, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(10, 47, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--lime-500), var(--green-600));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -44px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(22, 115, 58, 0.14);
  border-radius: 50%;
}

.service-card-feature {
  grid-row: span 3;
  min-height: 500px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(6, 47, 31, 0.96), rgba(22, 115, 58, 0.82)),
    var(--green-900);
}

.service-card-feature::before {
  opacity: 1;
  width: 6px;
  background: linear-gradient(var(--lime-300), var(--amber-500));
}

.service-card-feature::after {
  width: 220px;
  height: 220px;
  right: -72px;
  top: -48px;
  border-color: rgba(200, 223, 114, 0.28);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 189, 34, 0.56);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-index {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--green-950);
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card-feature .service-index {
  color: var(--green-950);
  background: var(--lime-300);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.28rem, 2vw, 1.58rem);
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card-feature h3 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.service-card-feature p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.advisory {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 47, 31, 0.95), rgba(7, 83, 49, 0.88)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 32px),
    var(--green-950);
}

.advisory-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.advisory h2 {
  color: var(--white);
}

.advisory-copy p:not(.eyebrow) {
  width: min(520px, 100%);
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.inline-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--lime-300);
  font-weight: 820;
}

.process {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 6px 0;
}

.process::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 42px;
  bottom: 42px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 223, 114, 0.92), rgba(255, 255, 255, 0.18));
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.process-marker {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--lime-300), var(--lime-500));
  border: 7px solid rgba(6, 47, 31, 0.94);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(200, 223, 114, 0.45), 0 14px 34px rgba(0, 0, 0, 0.18);
  font-size: 1.18rem;
  font-weight: 950;
}

.process-content {
  min-width: 0;
}

.process-content em {
  display: block;
  margin-bottom: 5px;
  color: var(--lime-300);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-step strong {
  display: block;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.12;
}

.process-step p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.company-panel,
.location-panel {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(10, 47, 31, 0.06);
}

.company-panel {
  background: var(--white);
}

.company-panel h2 {
  max-width: 760px;
  font-size: clamp(1.75rem, 3.7vw, 3.2rem);
}

dl {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--green-950);
  font-weight: 700;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(6, 47, 31, 0.94), rgba(22, 115, 58, 0.78)),
    linear-gradient(45deg, transparent 0 49%, rgba(255, 255, 255, 0.08) 49% 51%, transparent 51%),
    var(--green-900);
  overflow: hidden;
}

.map-pin {
  width: 48px;
  height: 48px;
  margin-bottom: auto;
  border: 12px solid var(--lime-300);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 16px 40px rgba(135, 189, 34, 0.24);
}

.location-panel h3 {
  margin: 42px 0 12px;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1;
}

.location-panel p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  background: var(--soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(10, 47, 31, 0.06);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-link span {
  color: var(--green-600);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
}

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

.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 7px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime-300);
  font-weight: 820;
}

.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
}

.chat-fab {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #20b358;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 46px rgba(8, 73, 34, 0.32);
  cursor: pointer;
}

.chat-fab-icon {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.chat-fab-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.chat-fab-pulse {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(32, 179, 88, 0.48);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.chat-box {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  background: #f4f5ee;
  border: 1px solid rgba(6, 47, 31, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(6, 47, 31, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-widget.is-open .chat-box {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--white);
  background: linear-gradient(135deg, #075331, #20b358);
}

.chat-head img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
}

.chat-head strong,
.chat-head span {
  display: block;
}

.chat-head span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.chat-head button {
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.chat-body {
  min-height: 214px;
  padding: 18px 14px;
  background:
    linear-gradient(135deg, rgba(6, 47, 31, 0.05) 25%, transparent 25%) 0 0 / 22px 22px,
    #eef0e8;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px 7px 7px 2px;
  box-shadow: 0 8px 18px rgba(6, 47, 31, 0.08);
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(10px);
}

.whatsapp-widget.is-open .chat-message {
  animation: messageIn 260ms ease forwards;
}

.whatsapp-widget.is-open .chat-message.delay {
  animation-delay: 520ms;
}

.chat-typing {
  width: 54px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--white);
  border-radius: 7px 7px 7px 2px;
  opacity: 0;
  transform: translateY(8px);
}

.whatsapp-widget.is-open .chat-typing {
  animation: messageIn 260ms ease 960ms forwards;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: #8a9388;
  border-radius: 50%;
  animation: typing 1s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-typing span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-cta {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 0 16px;
  color: var(--white);
  background: #20b358;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.hero .reveal,
.quick-strip .reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes fieldDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 220px 0, 86px 0;
  }
}

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

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

@keyframes pulse {
  from {
    opacity: 0.82;
    transform: scale(0.92);
  }
  to {
    opacity: 0;
    transform: scale(1.24);
  }
}

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

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-action {
    display: none;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 94px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 10px;
    border-radius: 7px;
  }

  .nav a:hover {
    background: var(--soft);
  }

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

  body.menu-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.menu-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 86svh;
    padding-top: 118px;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-visual {
    width: min(320px, 72vw);
    margin: 0 auto;
  }

  .hero-scroll {
    display: none;
  }

  .strip-grid,
  .section-heading,
  .advisory-grid,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card-feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 320px;
  }
}

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

  .site-header {
    inset: 10px 0 auto 0;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 9px 8px 10px;
  }

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

  .brand span {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 102px 0 38px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 19vw, 5.1rem);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-proof span {
    width: 100%;
  }

  .strip-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-feature {
    grid-column: auto;
    min-height: 280px;
  }

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

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .service-card {
    min-height: 210px;
  }

  .process-step {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .process::before {
    left: 27px;
  }

  .process-marker {
    width: 54px;
    height: 54px;
    border-width: 5px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
  }
}
