/*======================================
  全站咨询引导 CTA（与 customer.html 一致）
========================================*/

.get-solution.section {
  position: relative;
  padding: 80px 0;
  background: #fff;
}

.get-solution .cta-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
}

.get-solution .cta-content {
  flex: 0 0 calc((100% - 28px) / 3);
  max-width: calc((100% - 28px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 38px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0545a4 0%, #0657cf 45%, #2a8cff 100%);
  box-shadow: 0 18px 48px rgba(6, 87, 207, 0.22);
}

.get-solution .cta-content span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.78);
}

.get-solution .cta-content h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}

.get-solution .cta-content p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
}

.get-solution .cta-form-wrap {
  flex: 1;
  width: auto;
  max-width: none;
  padding: 32px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 87, 207, 0.12);
}

.get-solution .cta-form {
  width: 100%;
}

.get-solution .cta-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.get-solution .cta-form-group {
  display: flex;
  flex-direction: column;
}

.get-solution .cta-form-group.has-error label {
  color: #d93025;
}

.get-solution .cta-form-group-full {
  grid-column: 1 / -1;
}

.get-solution .cta-form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1f2d3d;
}

.get-solution .cta-form-group input,
.get-solution .cta-form-group textarea {
  width: 100%;
  border: 1px solid #d7e3f6;
  border-radius: 10px;
  background: #f7faff;
  color: #1f2d3d;
  padding: 12px 14px;
  line-height: 1.6;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.get-solution .cta-form-group input::placeholder,
.get-solution .cta-form-group textarea::placeholder {
  color: #8a96a8;
}

.get-solution .cta-form-group input:focus,
.get-solution .cta-form-group textarea:focus {
  outline: none;
  border-color: #2a8cff;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(42, 140, 255, 0.15);
}

.get-solution .cta-form-group.has-error input,
.get-solution .cta-form-group.has-error textarea,
.get-solution .cta-form-group input[aria-invalid='true'],
.get-solution .cta-form-group textarea[aria-invalid='true'] {
  border-color: #d93025;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.12);
}

.get-solution .cta-form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.get-solution .cta-form-error {
  min-height: 14px;
  margin: 6px 0 0;
  font-size: 12px;
  color: #d93025;
}

.get-solution .cta-form-feedback {
  min-height: 0;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #0657cf;
}

.get-solution .cta-form .btn {
  width: 100%;
  min-width: 0;
  text-align: center;
  border: 0;
  cursor: pointer;
  padding: 14px 45px;
  background: #0657cf;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .get-solution .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .get-solution .cta-content,
  .get-solution .cta-form-wrap {
    width: 100%;
    flex: none;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .get-solution.section {
    padding: 60px 0;
  }

  .get-solution .cta-content h3 {
    font-size: 24px;
  }

  .get-solution .cta-box {
    gap: 20px;
  }

  .get-solution .cta-content,
  .get-solution .cta-form-wrap {
    padding: 32px 24px;
    border-radius: 10px;
  }

  .get-solution .cta-form-grid {
    grid-template-columns: 1fr;
  }

  .get-solution .cta-form-group-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .get-solution .cta-content h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  .get-solution .cta-content p {
    max-width: none;
    line-height: 1.8;
  }

  .get-solution .cta-form-wrap {
    padding: 24px 20px;
  }
}
