.cta-section {
  background: #fff;
}

/* Title */
.cta-title {
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

/* Lead paragraph */
.cta-lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
}

/* CTA text links */
.cta-actions p {
  margin-bottom: 6px;
  font-size: 16px;
}

/* Form */
.cta-form label {
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-form .form-control {
  border-radius: 0;
  border: 1px solid #999;
  padding: 10px 12px;
  font-size: 15px;
}

/* Submit button */
.btn-submit {
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background .3s ease;
}

.btn-submit:hover {
  background: #222;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Primary Button */
.btn-primary-cta {
  background: #000;
  color: #fff;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-primary-cta:hover {
  background: #222;
  color: #fff;
}

/* Secondary Button */
.btn-secondary-cta {
  border: 2px solid #000;
  color: #000;
  padding: 12px 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-secondary-cta:hover {
  background: #000;
  color: #fff;
}

