.final .kicker {
  display: inline-block;
  color: #08796f;
  background: #fff;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: 0 8px 20px #18554a14;
}

footer {
  min-height: 95px;
  height: auto;
  gap: 18px;
}

#problem {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  scroll-margin-top: 0;
}

#problem > .shell {
  width: min(1160px, calc(100% - 40px));
}

#price {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  scroll-margin-top: 0;
}

#price > .pricing {
  width: min(1160px, calc(100% - 40px));
  min-height: 0;
  margin-top: 0;
  margin-bottom: 0;
}

#contact {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  scroll-margin-top: 0;
}

#contact > .shell {
  width: min(1160px, calc(100% - 40px));
}

.brand strong,
footer strong,
.mail > b,
.notification b,
.builder input,
.builder button b,
.pricing aside > strong,
.pill[href^="mailto:"],
.pill.whatsapp {
  font-family: "Rubik", "Heebo", Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.brand strong,
footer strong {
  letter-spacing: -0.06em;
}

.back-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 114px;
  padding: 10px 24px;
  border: 1px solid #d4e1dd;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(7, 29, 50, 0.14);
  backdrop-filter: blur(8px);
  transition: color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.back-top:hover {
  color: #079b8e;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7, 29, 50, 0.2);
}

.back-top-row {
  position: fixed;
  left: max(20px, calc((100vw - 1160px) / 2));
  bottom: 50px;
  z-index: 50;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}

.back-top-row.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .phone {
    animation: phone-float 5s ease-in-out infinite;
    will-change: transform;
  }

  .mail {
    animation: mail-float 6s ease-in-out infinite;
    will-change: transform;
  }

  .orb {
    animation: at-pulse 3s ease-in-out infinite;
  }

  .tag.one {
    animation: tag-float 4s ease-in-out infinite;
  }

  @keyframes phone-float {
    0%, 100% {
      transform: rotate(8deg) translateY(0);
    }
    50% {
      transform: rotate(7deg) translateY(-12px);
    }
  }

  @keyframes mail-float {
    0%, 100% {
      transform: rotate(-6deg) translateY(0);
    }
    50% {
      transform: rotate(-5deg) translateY(9px);
    }
  }

  @keyframes at-pulse {
    0%, 100% {
      transform: rotate(-12deg) scale(1);
    }
    50% {
      transform: rotate(-12deg) scale(1.1);
    }
  }

  @keyframes tag-float {
    0%, 100% {
      transform: rotate(7deg) translateY(0);
    }
    50% {
      transform: rotate(5deg) translateY(-6px);
    }
  }
}

@media (max-width: 640px) {
  #problem {
    min-height: 100svh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #problem > .shell {
    width: calc(100% - 28px);
  }

  #price {
    min-height: 100svh;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  #price > .pricing {
    width: calc(100% - 28px);
  }

  #contact {
    min-height: 100svh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #contact > .shell {
    width: calc(100% - 28px);
  }

  footer {
    flex-wrap: wrap;
    padding: 22px 0;
  }

  footer small {
    order: 4;
    width: 100%;
    text-align: center;
  }

  .back-top-row {
    left: 14px;
    bottom: 44px;
  }

  .back-top {
    min-width: auto;
    padding: 9px 16px;
  }

}
