.trust-badge {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.description {
  margin-bottom: 1rem;
}

.description .section-description {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
}

.cards {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 0 2rem;
}

.cta-section {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.cta-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.cta-heading {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
}

.cta-section p {
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
  opacity: 0.85;
  max-width: 480px;
}

.cta-section a {
  margin-top: 0.5rem;
}

.cta-section button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 2px solid var(--primary-color);
  border-radius: 14px;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease;
}

.cta-section button:hover {
  background-color: transparent;
  border: 2px solid var(--primary-color);
}

.cta-section button:active {
  transform: scale(0.98);
}

/* Mobile */

@media (max-width: 992px) {
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  price-card {
    padding-top: 1.5rem;
    width: 100%;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }

  .trust-badge {
    font-size: 0.7rem;
  }

  .description {
    padding: 0 1rem;
  }

  .description .section-description {
    font-size: 0.95rem;
  }

  .free-call-hint {
    font-size: 0.8rem;
  }

  .cta-heading {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .cta-section button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  price-card {
    padding-top: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.45rem;
  }

  .cta-heading {
    font-size: 1.35rem;
  }

  .cta-section {
    padding: 2.5rem 1rem;
  }

  .cta-section button {
    width: 100%;
    text-align: center;
  }
}
