/* ── Final CTA Section ── */
.final-cta {
  background-color: #ffffff;
  padding: clamp(5rem, 10vw, 7rem) var(--space-md);
}

.final-cta__inner {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  text-align: center;
}

/* ── Title ── */
.final-cta__title {
  font-size: clamp(1.75rem, 6.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

/* ── Description ── */
.final-cta__description {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.final-cta__lead,
.final-cta__closing {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
}

.final-cta__bullets {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
}

.final-cta__bullets li {
  position: relative;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
}

.final-cta__bullets li::before {
  content: "•";
  margin-right: 0.375rem;
  color: var(--color-text-secondary);
}

.final-cta__closing {
  margin-top: var(--space-md);
}

/* ── Trust badge: subtle, above button ── */
.final-cta__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.final-cta__badge-stars {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #f5b301;
  line-height: 1;
}

.final-cta__badge-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #64748b;
}

/* ── Main CTA button ── */
.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 22rem;
  height: 60px;
  margin-bottom: 1.25rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  background-color: #2563eb;
  border-radius: 999px;
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.26);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.final-cta__button:hover {
  transform: translateY(-3px);
  background-color: #1d4ed8;
  box-shadow: 0 34px 80px rgba(37, 99, 235, 0.34);
}

.final-cta__button:active {
  transform: translateY(-1px);
  background-color: #1e40af;
}

.final-cta__button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
}

/* ── Hint under button ── */
.final-cta__hint {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--color-placeholder-text);
  margin-bottom: 2rem;
}

/* ── Contact alt ── */
.final-cta__alt {
  margin-bottom: 56px;
}

.final-cta__divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 1.5rem;
}

.final-cta__divider-line {
  flex: 1;
  height: 1px;
  background-color: #e8e8ed;
}

.final-cta__divider-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-placeholder-text);
  white-space: nowrap;
}

.final-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.625rem, 6.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.25s ease;
}

.final-cta__phone-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #2563eb;
}

.final-cta__phone:hover {
  color: #2563eb;
}

.final-cta__phone-note {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #94a3b8;
  margin-bottom: var(--space-md);
}

.final-cta__address {
  font-size: 0.9375rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
}

/* ── Trust checklist ── */
.final-cta__trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.final-cta__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -0.01em;
  color: #475569;
}

.final-cta__trust-check {
  font-size: 1rem;
  font-weight: 600;
  color: #2563eb;
}

/* ── Tablet+ ── */
@media (min-width: 48rem) {
  .final-cta {
    padding: 6rem var(--space-lg);
  }

  .final-cta__inner {
    max-width: 32rem;
  }

  .final-cta__title {
    margin-bottom: var(--space-xl);
  }

  .final-cta__description {
    max-width: 460px;
    margin-bottom: var(--space-xl);
  }

  .final-cta__lead,
  .final-cta__closing,
  .final-cta__bullets li {
    font-size: 1.125rem;
    line-height: 1.8;
  }

  .final-cta__badge {
    margin-bottom: 1.125rem;
  }

  .final-cta__badge-text {
    font-size: 14px;
  }

  .final-cta__button {
    width: auto;
    min-width: 20rem;
    height: 68px;
    padding: 0 52px;
    font-size: 20px;
    margin-bottom: 1.5rem;
  }

  .final-cta__hint {
    font-size: 0.9375rem;
    margin-bottom: 2.25rem;
  }

  .final-cta__phone {
    font-size: 36px;
  }

  .final-cta__phone-icon {
    width: 28px;
    height: 28px;
  }

  .final-cta__alt {
    margin-bottom: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__button {
    will-change: auto;
  }

  .final-cta__button:hover {
    transform: none;
  }
}
