.cta-section {
  background: rgb(var(--color-coal-card));
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.cta-title {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.15;
  color: #ffffff;
}

.cta-desc {
  margin: 0 0 32px;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgb(255 255 255 / 0.65);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-btn);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.14);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.cta-secondary:hover,
.cta-secondary:focus-visible {
  background: rgb(255 255 255 / 0.12);
}

.cta-secondary svg {
  width: 16px;
  height: 16px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 30px 60px -24px rgb(0 0 0 / 0.4);
}

.cta-form-title {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #121212;
}

.cta-input {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgb(var(--color-coal) / 0.1);
  background: #f7f7f7;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #121212;
}

.cta-input::placeholder {
  color: rgb(var(--color-text-secondary));
}

.cta-input:focus-visible {
  outline: 2px solid rgb(var(--color-gold));
  outline-offset: 1px;
  border-color: transparent;
  background: #ffffff;
}

.cta-submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: rgb(var(--color-gold));
  color: rgb(var(--color-coal));
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.cta-submit:hover {
  filter: brightness(1.06);
}

.cta-submit:disabled {
  cursor: default;
  filter: brightness(0.92);
}

.cta-form-feedback {
  margin: 0;
  min-height: 1em;
  font-size: 0.8125rem;
  color: rgb(var(--color-text-secondary));
}

.cta-form-feedback-success {
  color: #1e8e5a;
}

.cta-form-feedback-error {
  color: #c0392b;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
