/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --color-black: #111214;
  --color-gray-900: #1b1c1f;
  --color-gray-700: #4b4d52;
  --color-gray-500: #7a7c82;
  --color-gray-400: #8f9096;
  --color-gray-300: #c9cacd;
  --color-gray-100: #f4f4f5;
  --color-white: #ffffff;

  --color-border: rgba(17, 18, 20, 0.08);
  --color-border-strong: rgba(17, 18, 20, 0.12);

  --color-blue: #4285f4;
  --color-blue-brand: #4f81f1;
  --color-red: #ea4335;
  --color-yellow: #fbbc05;
  --color-green: #34a853;

  --color-red-bg: rgba(234, 67, 53, 0.12);
  --color-red-text: #c62c1f;
  --color-yellow-bg: rgba(251, 188, 5, 0.18);
  --color-yellow-text: #8a6d00;
  --color-green-bg: rgba(52, 168, 83, 0.14);
  --color-green-text: #1e7e3d;

  --font-family:
    "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --page-max-width: 1440px;
  --page-padding: 104px;
  --content-max-width: 1232px;
  /* Gutter lateral: nunca menor que --page-padding, mas cresce em telas
     muito largas para travar o conteúdo em --content-max-width (1232px),
     em vez de esticar infinitamente. Usado em vez de --page-padding puro
     em todo padding horizontal de seção (header incluso). */
  --side-padding: max(
    var(--page-padding),
    calc((100% - var(--content-max-width)) / 2)
  );

  --header-height: 90px;
  --section-gap: 32px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  color: var(--color-black);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

p {
  margin: 0;
}

.container-page {
  max-width: var(--page-max-width);
  margin: 0 auto;
  position: relative;
}

/* ==========================================================================
   Placeholder for illustrations / assets not yet added
   ========================================================================== */
.illustration-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(17, 18, 20, 0.04),
    rgba(17, 18, 20, 0.04) 8px,
    rgba(17, 18, 20, 0.02) 8px,
    rgba(17, 18, 20, 0.02) 16px
  );
  border: 1px dashed var(--color-border-strong);
  border-radius: 8px;
  color: var(--color-gray-400);
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
  user-select: none;
}

/* ==========================================================================
   Buttons / Inputs (Email capture)
   ========================================================================== */
.email-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 12px;
  /* borda em degradê (azul > vermelho > amarelo > verde), fundo branco por dentro */
  background-image:
    linear-gradient(var(--color-white), var(--color-white)),
    linear-gradient(
      90deg,
      var(--color-blue) 0%,
      var(--color-red) 33%,
      var(--color-yellow) 66%,
      var(--color-green) 100%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.email-form__input-wrap {
  flex: 1;
  min-width: 0;
}

.email-form__input {
  width: 100%;
  height: 46px;
  padding: 14px 10px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 15px;
}

.email-form__input::placeholder {
  color: var(--color-gray-500);
}

.email-form__button {
  flex-shrink: 0;
  padding: 14px 22px;
  background: var(--color-black);
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.email-form__button:hover {
  opacity: 0.85;
}

.email-form__input.is-invalid {
  outline: 1.5px solid var(--color-red);
  outline-offset: -1.5px;
}

.email-form-wrap {
  width: 100%;
}

.email-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.email-form__error {
  display: block;
  padding: 6px 4px 0;
  color: var(--color-red);
  font-size: 13px;
}

/* Header's compact version */
.header .email-form-wrap {
  width: 503px;
}

.header .email-form {
  width: 100%;
  padding: 4px;
  border-radius: 12px;
}

.header .email-form__input {
  height: 46px;
  padding: 14px 10px;
}

.header .email-form__button {
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 500;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--side-padding);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

/* Some quando o rodapé (que já tem seu próprio CTA de e-mail) entra na tela,
   evitando dois formulários abertos ao mesmo tempo na última dobra.
   Reaparece assim que o usuário rola para cima e o rodapé sai da vista.
   Controlado via script.js, apenas no desktop. */
.header.header--hidden {
  transform: translateY(-100%);
}

.brand-logo {
  width: 152px;
  height: 40px;
}

/* ==========================================================================
   Section Badge (pill)
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  height: 35.5px;
  padding: 7px 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  box-shadow: 0 2px 7px rgba(17, 18, 20, 0.04);
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  color: var(--color-gray-700);
  white-space: nowrap;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px var(--side-padding);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  width: 504px;
  max-width: 100%;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hero__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.hero__title {
  margin: 0;
  font-weight: 600;
  font-size: 36px;
  line-height: 53.76px;
  letter-spacing: -0.96px;
  color: var(--color-black);
}

.hero__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28.8px;
  color: var(--color-gray-700);
}

.email-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.email-block__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-500);
}

.hero__disclaimer {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  color: var(--color-gray-500);
  width: 100%;
}

/* ---- Diagnosis Card composite ---- */
.diagnosis {
  position: relative;
  width: 712px;
  height: 622px;
  max-width: 100%;
  flex-shrink: 0;
  z-index: 1;
}

.diagnosis__bg-blobs {
  position: absolute;
  left: 50%;
  top: 50%;
  /* --parallax-x/y são setados via animations.js conforme o mouse se move
     (com fallback 0px: sem JS, fica idêntico ao original, parado) */
  transform: translate(-50%, -50%) translateX(85px)
    translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  width: 378.849px;
  height: 438px;
  pointer-events: none;
  z-index: 0;
}

.diagnosis__blob {
  position: absolute;
  width: 44%;
  height: 57%;
  filter: blur(112px);
  opacity: 0.7;
  border-radius: 40%;
}
.diagnosis__blob--blue {
  background: var(--color-blue-brand);
  top: -8%;
  left: 25%;
}
.diagnosis__blob--red {
  background: var(--color-red);
  top: -8%;
  right: 4%;
}
.diagnosis__blob--yellow {
  background: var(--color-yellow);
  bottom: -7%;
  left: 25%;
}
.diagnosis__blob--green {
  background: var(--color-green);
  bottom: -7%;
  right: 4%;
}

/* Business info card (behind, offset) */
.business-info {
  position: absolute;
  left: 56px;
  top: 26px;
  width: 288px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0.67;
  z-index: 1;
}

.business-card {
  width: 100%;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(17, 18, 20, 0.05);
}

.business-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 19px;
  line-height: 28.5px;
  color: var(--color-black);
}

.business-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.stars {
  color: var(--color-yellow);
  font-size: 14px;
  letter-spacing: 1px;
}
.rating-summary {
  color: var(--color-gray-700);
  font-size: 14px;
}

.business-card__category {
  padding-top: 4px;
  font-size: 13.5px;
  color: var(--color-gray-500);
}

.business-card__actions {
  display: flex;
  gap: 22px;
  padding: 16px 0;
  margin-top: 18px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.action-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-blue);
  border-radius: 17px;
  color: var(--color-blue);
}
.action-item__icon svg {
  width: 15px;
  height: 15px;
}

.action-item__label {
  font-weight: 500;
  font-size: 11.5px;
  line-height: 17.25px;
  color: var(--color-blue);
}

.business-card__meta {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 16px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--color-gray-700);
}
.meta-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-gray-500);
}

/* Rating breakdown card */
.rating-card {
  width: 100%;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 12px 20px rgba(17, 18, 20, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-card__score {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating-card__score-value {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
}
.rating-card__score-detail {
  font-size: 13px;
  color: var(--color-gray-500);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-bar-row__label {
  width: 10px;
  font-size: 12px;
  color: var(--color-gray-500);
}
.rating-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--color-gray-100);
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--color-yellow);
}

/* Diagnosis score card (front) */
.score-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: 0 12px 20px rgba(17, 18, 20, 0.05);
  z-index: 2;
}

.score-card__eyebrow {
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.score-card__summary {
  display: flex;
  align-items: center;
  gap: 18px;
}

.score-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
}
.score-circle__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(
    var(--color-blue) 0deg 245deg,
    var(--color-gray-100) 245deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.score-circle__ring::after {
  content: "";
  width: 68px;
  height: 68px;
  background: var(--color-white);
  border-radius: 50%;
  position: absolute;
}
.score-circle__value {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.score-circle__number {
  font-weight: 700;
  font-size: 26px;
  color: var(--color-black);
  line-height: 1;
}
.score-circle__max {
  font-size: 14px;
  color: var(--color-gray-500);
}

.score-card__level {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.score-card__level-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-black);
}
.score-card__level-desc {
  font-size: 13px;
  line-height: 19.5px;
  color: var(--color-gray-500);
}

.score-metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.score-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.score-metric__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score-metric__label {
  font-weight: 500;
  font-size: 13px;
  color: var(--color-gray-900);
}
.score-metric__value {
  font-size: 13px;
  color: var(--color-gray-500);
}
.score-metric-track {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--color-gray-100);
  overflow: hidden;
}
.score-metric-fill {
  height: 100%;
  border-radius: 4px;
}
.score-metric-fill--blue {
  background: var(--color-blue);
}
.score-metric-fill--red {
  background: var(--color-red);
}
.score-metric-fill--yellow {
  background: var(--color-yellow);
}
.score-metric-fill--green {
  background: var(--color-green);
}

/* Backlog list */
.backlog {
  width: 100%;
}
.backlog__eyebrow {
  margin: 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-gray-500);
}
.backlog__head {
  display: grid;
  grid-template-columns: 8px 14px 1fr 40px 40px;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 6px;
}
.backlog__head span {
  font-weight: 600;
  font-size: 9px;
  line-height: 13.5px;
  letter-spacing: 0.27px;
  text-transform: uppercase;
  color: var(--color-gray-400);
}
.backlog__head .col-action {
  grid-column: 3;
}
.backlog__head .col-impact {
  grid-column: 4;
  text-align: center;
}
.backlog__head .col-effort {
  grid-column: 5;
  text-align: center;
}

.backlog__row {
  display: grid;
  grid-template-columns: 8px 14px 1fr 40px 40px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--color-border);
}
.backlog__dot {
  grid-column: 1;
  width: 8px;
  height: 8px;
  border-radius: 2px;
}
.backlog__dot--red {
  background: var(--color-red);
}
.backlog__dot--yellow {
  background: var(--color-yellow);
}
.backlog__dot--blue {
  background: var(--color-blue);
}

.backlog__number {
  grid-column: 2;
  font-weight: 600;
  font-size: 11px;
  color: var(--color-gray-400);
}
.backlog__action {
  grid-column: 3;
  font-weight: 500;
  font-size: 12px;
  color: var(--color-gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.backlog__pill {
  grid-column: 4;
  padding: 3px 0;
  border-radius: 6px;
  font-weight: 600;
  font-size: 9.5px;
  text-align: center;
}
.backlog__pill.pill-effort {
  grid-column: 5;
}
.pill-high-green {
  background: var(--color-green-bg);
  color: var(--color-green-text);
}
.pill-medium-yellow {
  background: var(--color-yellow-bg);
  color: var(--color-yellow-text);
}
.pill-high-red {
  background: var(--color-red-bg);
  color: var(--color-red-text);
}

.backlog__footer {
  padding-top: 10px;
  font-size: 12.5px;
  line-height: 18.75px;
  color: var(--color-gray-500);
}

/* ==========================================================================
   Steps Section
   ========================================================================== */
.steps-section {
  padding: 0 var(--side-padding);
  margin-top: var(--section-gap);
}

.steps-card {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 40px 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 12px 0 20px rgba(0, 0, 0, 0.05);
}

.steps-card__line {
  position: absolute;
  /* alinha sempre do centro do círculo 1 ao centro do círculo 3, seja qual
     for a largura real do card (3 colunas flex iguais, gap 16px):
     a distância de cada borda até o centro do círculo mais próximo é
     sempre 1/6 da largura do card + metade do gap (16px) */
  left: calc(100% / 6 + 16px);
  right: calc(100% / 6 + 16px);
  top: 62.75px;
  height: 2px;
  opacity: 0.35;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #ea4335 33.333%,
    #fbbc05 66.667%,
    #34a853 100%
  );
}

.step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--color-white);
  border: 1px solid var(--color-border-strong);
  border-radius: 23px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: var(--color-black);
}

.step__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.step__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: var(--color-black);
}

.step__desc {
  font-weight: 400;
  font-size: 14.5px;
  line-height: 23.2px;
  color: var(--color-gray-700);
  max-width: 340px;
}

/* ==========================================================================
   How it works / Tiles Section
   ========================================================================== */
.how-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px var(--side-padding);
  margin-top: var(--section-gap);
  position: relative;
  isolation: isolate;
}

.how-section__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 208px;
  width: 100%;
  z-index: 2;
}

.how-section__title {
  margin: 0;
  font-weight: 600;
  font-size: 36px;
  line-height: 43.2px;
  letter-spacing: -0.54px;
  color: var(--color-black);
}

.how-section__subtitle {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 26.4px;
  color: var(--color-gray-700);
}

.tiles {
  display: flex;
  align-items: stretch;
  width: 1230px;
  max-width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  z-index: 1;
}

.tile {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px;
}

.tile__separator {
  width: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

.tile__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tile__number {
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  color: var(--color-gray-500);
}

.tile__title {
  margin: 0;
  font-weight: 600;
  font-size: 19px;
  line-height: 28.5px;
  letter-spacing: -0.19px;
  color: var(--color-black);
}

.tile__desc {
  margin: 0;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 23.2px;
  color: var(--color-gray-700);
}

.tile__preview {
  width: 100%;
  height: 104px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(17, 18, 20, 0.04);
}

/* tile 1 preview */
.tile1-preview__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tile1-preview__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.22) 0%,
    rgba(60, 149, 172, 0.2) 50%,
    rgba(52, 168, 83, 0.18) 100%
  );
}
.tile1-preview__name {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-gray-900);
}
.tile1-preview__meta {
  font-size: 11px;
  color: var(--color-gray-500);
}
.tile1-preview__meta .stars {
  font-size: 11px;
  margin-right: 4px;
}
.tile1-preview__bar {
  margin-top: 12px;
}

/* tile 2 preview */
.tile2-preview__row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tile2-preview__label {
  width: 72px;
  flex-shrink: 0;
  font-size: 11.5px;
  color: var(--color-gray-700);
}
.tile2-preview__track {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: var(--color-gray-100);
  overflow: hidden;
}
.tile2-preview__fill {
  height: 100%;
  border-radius: 4px;
}

/* tile 3 preview */
.tile3-preview__row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tile3-preview__dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.tile3-preview__text {
  font-size: 12.5px;
  color: var(--color-gray-900);
}
.tile3-preview__text.done {
  color: var(--color-gray-500);
  text-decoration: line-through;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px var(--side-padding);
  margin-top: var(--section-gap);
  background: var(--color-white);
  position: relative;
  isolation: isolate;
}

.footer__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  width: 608px;
  max-width: 100%;
  z-index: 2;
}

.stats {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.stat {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat__value {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.3px;
  text-align: center;
}
.stat__value--blue {
  color: var(--color-blue);
}
.stat__value--red {
  color: var(--color-red);
}
.stat__value--yellow {
  color: var(--color-yellow);
}
.stat__value--green {
  color: var(--color-green);
}
.stat__label {
  padding-top: 6px;
  max-width: 151.5px;
  font-size: 12px;
  line-height: 16.8px;
  color: var(--color-gray-500);
  text-align: center;
}

.compare {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.compare__blobs {
  position: absolute;
  left: 50%;
  top: 50%;
  /* --parallax-x/y são setados via animations.js conforme o mouse se move
     (com fallback 0px: sem JS, fica idêntico ao original, parado) */
  transform: translate(-50%, -50%) translateX(156px)
    translate(var(--parallax-x, 0px), var(--parallax-y, 0px));
  width: 296px;
  height: 456px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.compare__blob {
  position: absolute;
  width: 158.5px;
  height: 158.5px;
  border-radius: 50%;
  filter: blur(94px);
  opacity: 0.7;
}
.compare__blob--blue {
  top: 15%;
  left: -4%;
  background: var(--color-blue-brand);
}
.compare__blob--red {
  top: 15%;
  right: -4%;
  background: var(--color-red);
}
.compare__blob--yellow {
  bottom: 15%;
  left: -4%;
  background: var(--color-yellow);
}
.compare__blob--green {
  bottom: 15%;
  right: -4%;
  background: var(--color-green);
}

.compare-card {
  position: relative;
  z-index: 1;
  width: 296px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 2px 7px rgba(17, 18, 20, 0.04);
}
.compare-card--after {
  box-shadow: 0 12px 20px rgba(17, 18, 20, 0.05);
}

.compare-card__title {
  margin: 0;
  font-weight: 600;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--color-black);
}

.compare-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
}

.biz-row {
  padding: 13px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}
.biz-row--dim {
  opacity: 0.4;
}
.biz-row--highlight {
  border: 1px solid var(--color-blue-brand);
}

.biz-row__head {
  display: flex;
  align-items: center;
  gap: 7px;
}
.biz-row__name {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-gray-900);
}
.biz-row__tag {
  padding: 2px 7px;
  background: var(--color-black);
  border-radius: 999px;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--color-white);
}
.biz-row__rating {
  padding-top: 3px;
  font-size: 11.5px;
}
.biz-row__rating .stars {
  font-size: 11.5px;
  margin-right: 4px;
}
.biz-row__rating .detail {
  color: var(--color-gray-700);
}

.biz-row__status {
  padding-top: 2px;
  font-size: 10.5px;
}
.biz-row__status .open {
  color: var(--color-green);
  font-weight: 500;
}
.biz-row__status .sep {
  color: var(--color-gray-300);
  margin: 0 4px;
}
.biz-row__status .hours {
  color: var(--color-gray-500);
}

.biz-row__actions {
  display: flex;
  gap: 6px;
  padding-top: 10px;
}
.biz-row__action {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 5px 8px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-weight: 500;
  font-size: 10px;
  color: var(--color-gray-700);
}
.biz-row__action svg {
  width: 11px;
  height: 11px;
}

.footer__disclaimer {
  font-size: 11.5px;
  line-height: 17.25px;
  color: var(--color-gray-500);
  text-align: center;
  max-width: 100%;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  width: 504px;
  max-width: 100%;
  flex-shrink: 0;
  z-index: 1;
}

.footer__cta-title {
  margin: 0;
  font-weight: 600;
  font-size: 36px;
  line-height: 53.76px;
  letter-spacing: -0.96px;
  color: var(--color-black);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1400px) {
  :root {
    --page-padding: 64px;
  }
  .tiles {
    width: 100%;
  }
  .how-section__heading {
    padding: 0 40px;
  }
}

@media (max-width: 1100px) {
  :root {
    --page-padding: 32px;
  }
  .header {
    flex-wrap: wrap;
    height: auto;
    gap: 16px;
  }
  .header .email-form {
    width: 100%;
  }
  .hero {
    flex-direction: column;
  }
  .hero__content,
  .diagnosis {
    width: 100%;
  }
  .diagnosis {
    height: auto;
    min-height: 622px;
  }
  .steps-card {
    flex-direction: column;
  }
  .steps-card__line {
    display: none;
  }
  .tiles {
    flex-direction: column;
  }
  .tile__separator {
    width: 100%;
    height: 1px;
  }
  .how-section__heading {
    padding: 0;
  }
  .footer {
    flex-direction: column;
  }
  .footer__cta {
    width: 100%;
  }
  .footer__proof {
    width: 100%;
  }
  .compare {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .stats {
    flex-wrap: wrap;
    row-gap: 24px;
  }
  .stat {
    flex: 1 1 45%;
  }
  .hero__title,
  .footer__cta-title {
    font-size: 28px;
    line-height: 1.3;
  }
}
