/* CTA & Form */
.cta-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.cta-box {
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  display: flex;
  overflow: hidden;
}

.cta-text {
  flex: 1;
  background: var(--teal);
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-text h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 18px;
  opacity: 0.9;
}

.cta-form-container {
  flex: 1;
  padding: 60px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #e1e7ec;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg-soft);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: white;
}

.form-message {
  margin-top: 20px;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

