:root {
  --sgx-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes sgx-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes sgx-soft-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes sgx-text-sheen {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes sgx-whatsapp-breath {
  0%, 100% {
    scale: 1;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
  }
  50% {
    scale: 1.06;
    filter: drop-shadow(0 18px 34px rgba(108, 177, 53, 0.28));
  }
}

@keyframes sgx-ring-pulse {
  0% {
    opacity: 0.45;
    scale: 0.96;
  }
  100% {
    opacity: 0;
    scale: 1.55;
  }
}

.sgx-anim-ready .sgx-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 850ms var(--sgx-motion-ease),
    transform 850ms var(--sgx-motion-ease),
    filter 850ms var(--sgx-motion-ease);
  transition-delay: var(--sgx-delay, 0ms);
  will-change: opacity, transform, filter;
}

.sgx-anim-ready .sgx-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.sgx-hero {
  isolation: isolate;
}

.sgx-hero::before {
  position: absolute;
  left: var(--sgx-pointer-x, 50%);
  top: var(--sgx-pointer-y, 48%);
  z-index: 0;
  width: min(24rem, 58vw);
  height: min(24rem, 58vw);
  border-radius: 999px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(108, 177, 53, 0.035), transparent 64%);
  opacity: 0;
  filter: blur(24px);
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}

.sgx-hero.is-pointer-active::before {
  opacity: 0.18;
}

.sgx-hero > * {
  position: relative;
  z-index: 1;
}

.sgx-hero h1 {
  transition: transform 420ms var(--sgx-motion-ease);
  transform:
    perspective(1100px)
    rotateX(calc(var(--sgx-tilt-y, 0) * 1deg))
    rotateY(calc(var(--sgx-tilt-x, 0) * 1deg));
}

.sgx-hero h1 span[class*="bg-gradient"] {
  background-size: 220% 100%;
  animation: sgx-text-sheen 7s ease-in-out infinite;
}

.sgx-card-motion,
.sgx-action-motion {
  transition:
    translate 220ms var(--sgx-motion-ease),
    scale 220ms var(--sgx-motion-ease),
    filter 220ms var(--sgx-motion-ease),
    box-shadow 220ms var(--sgx-motion-ease),
    border-color 220ms var(--sgx-motion-ease),
    background-color 220ms var(--sgx-motion-ease),
    color 220ms var(--sgx-motion-ease);
  will-change: translate, scale, filter;
}

.sgx-card-motion:hover {
  translate: 0 -6px;
  filter: brightness(1.07);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24), 0 0 26px rgba(108, 177, 53, 0.08);
}

.sgx-action-motion:hover {
  translate: 0 -2px;
  filter: brightness(1.08);
}

.sgx-icon-motion {
  animation: sgx-soft-float 4.8s ease-in-out infinite;
  animation-delay: var(--sgx-float-delay, 0ms);
}

.sgx-cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(108, 177, 53, 0.055), rgba(108, 177, 53, 0.025) 38%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--sgx-cursor-x, -999px) - 50%), calc(var(--sgx-cursor-y, -999px) - 50%), 0);
  transition: opacity 240ms ease;
}

.sgx-cursor-light.is-active {
  opacity: 1;
}

.sgx-whatsapp-float {
  animation: sgx-whatsapp-breath 2.8s ease-in-out infinite;
}

.sgx-whatsapp-float::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(108, 177, 53, 0.45);
  border-radius: inherit;
  pointer-events: none;
  content: "";
  animation: sgx-ring-pulse 2.4s ease-out infinite;
}

.sgx-form-focus:focus,
.sgx-form-focus:focus-visible {
  box-shadow: 0 12px 28px rgba(108, 177, 53, 0.08);
}

[data-pricing-intro] {
  position: relative;
}

[data-pricing-intro] > * {
  position: relative;
  z-index: 1;
}

[data-motion-static],
[data-motion-static] *,
[data-motion-static]::before,
[data-motion-static]::after {
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
}

[data-pricing-hero] {
  isolation: isolate;
}

[data-pricing-hero]::before {
  display: none !important;
}

[data-pricing-glow] {
  animation: none !important;
  will-change: auto !important;
}

section > div.absolute.top-24.right-0.bg-sgx-green.rounded-full.pointer-events-none {
  opacity: 0.05 !important;
  filter: blur(120px) !important;
  z-index: 0;
}

@media (max-width: 767px) {
  section > div.absolute.top-24.right-0.bg-sgx-green.rounded-full.pointer-events-none {
    width: 18rem !important;
    height: 18rem !important;
    opacity: 0.035 !important;
    filter: blur(90px) !important;
  }

  header > div:first-child {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  header > div:first-child > a:first-child {
    flex-shrink: 0;
  }

  [data-mobile-quick-solutions-button] {
    position: fixed !important;
    top: 1.125rem !important;
    right: 4rem !important;
    z-index: 70;
    height: 2.25rem !important;
    margin-left: 0 !important;
    gap: 0.35rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  [data-mobile-quick-solutions-button] span {
    font-size: 0.75rem;
    line-height: 1;
  }

  [data-mobile-quick-solutions-icon] {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }

  [data-mobile-menu-button] {
    position: fixed !important;
    top: 1.125rem !important;
    right: 1rem !important;
    z-index: 70;
    width: 2.25rem !important;
    height: 2.25rem !important;
    flex: 0 0 2.25rem;
  }
}

@media (max-width: 350px) {
  [data-mobile-quick-solutions-button] {
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }

  [data-mobile-quick-solutions-icon] {
    display: none;
  }
}

@media (hover: none) {
  .sgx-cursor-light {
    display: none;
  }
}

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

  .sgx-anim-ready .sgx-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .sgx-cursor-light,
  .sgx-hero::before {
    display: none;
  }
}
