.funding-combo-section {
  --color-primary: #123A5D;
  --color-primary-2: #1F5F8B;
  --color-accent: #F5A623;
  --color-accent-hover: #D98A00;
  --color-bg: #F7F9FC;
  --color-card: #FFFFFF;
  --color-text: #263442;
  --color-muted: #6B7A89;
  --color-border: #DDE6EF;
  --color-warning-bg: #FFF6E3;
  width: 100%;
  padding: 36px 16px;
  box-sizing: border-box;
  background: #CFE9FE;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
}

.funding-combo-section * {
  box-sizing: border-box;
}

.funding-combo-wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.funding-combo-col {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.funding-form-box {
  width: 100%;
  max-width: 430px;
  min-height: 570px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: var(--color-card);
  border: 2px solid var(--color-border);
  box-shadow: 0 14px 30px rgba(18, 58, 93, 0.16);
}

.funding-form-head {
  padding: 20px 24px 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(245, 166, 35, 0.18), transparent 24%),
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-2) 100%);
  color: #ffffff;
}

.funding-form-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.funding-form-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.funding-message {
  margin: 18px 24px 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 800;
}

.funding-message.is-success {
  color: #12633b;
  background: #e9f8ef;
  border: 1px solid #bde8cd;
}

.funding-message.is-error {
  color: #9b2f18;
  background: #fff0eb;
  border: 1px solid #ffd0c4;
}

.funding-form {
  padding: 28px 24px 26px;
  background:
    radial-gradient(circle at 92% 90%, rgba(245, 166, 35, 0.08), transparent 26%),
    linear-gradient(180deg, #FFFFFF 0%, var(--color-bg) 100%);
}

.funding-honey {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

.funding-form-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.funding-form-row label {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: 0.06em;
}

.funding-form-row input,
.funding-form-row select {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--color-border);
  outline: none;
  border-radius: 12px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  box-shadow: inset 0 1px 2px rgba(18, 58, 93, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.funding-form-row input:focus,
.funding-form-row select:focus {
  border-color: var(--color-primary-2);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(31, 95, 139, 0.14),
    inset 0 1px 2px rgba(18, 58, 93, 0.06);
}

.funding-form-row input.is-invalid,
.funding-form-row select.is-invalid {
  border-color: #D85C33;
  box-shadow: 0 0 0 3px rgba(216, 92, 51, 0.12);
}

.funding-captcha-wrap {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) 96px 34px;
  gap: 8px;
  align-items: center;
}

.funding-captcha-code {
  height: 38px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(
      -45deg,
      #FFFFFF 0,
      #FFFFFF 8px,
      var(--color-warning-bg) 8px,
      var(--color-warning-bg) 16px
    );
  border: 1px solid rgba(245, 166, 35, 0.36);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.28em;
  user-select: none;
}

.funding-refresh {
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(245, 166, 35, 0.28);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.funding-refresh:hover {
  transform: rotate(80deg) scale(1.08);
  background: var(--color-accent-hover);
  box-shadow: 0 9px 18px rgba(217, 138, 0, 0.32);
}

.funding-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 48px;
  margin: 24px auto 0;
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow: 0 10px 20px rgba(245, 166, 35, 0.30);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.funding-submit-btn:hover:not(:disabled) {
  transform: translateY(-4px);
  background: var(--color-accent-hover);
  box-shadow: 0 14px 26px rgba(217, 138, 0, 0.34);
}

.funding-submit-btn:active:not(:disabled) {
  transform: translateY(-1px) scale(0.98);
}

.funding-submit-btn:disabled,
.funding-submit-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  filter: grayscale(0.25);
  transform: none;
}

.funding-info-card {
  width: 100%;
  max-width: 430px;
  min-height: 570px;
  padding: 26px 24px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 8%, rgba(245, 166, 35, 0.12), transparent 24%),
    linear-gradient(180deg, #FFFFFF 0%, var(--color-bg) 100%);
  border: 2px solid var(--color-border);
  box-shadow: 0 14px 32px rgba(18, 58, 93, 0.14);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.funding-info-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(31, 95, 139, 0.10);
}

.funding-info-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  left: -70px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(245, 166, 35, 0.16);
}

.funding-info-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 10px 22px rgba(18, 58, 93, 0.12);
}

.funding-info-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.funding-info-text {
  position: relative;
  z-index: 2;
  text-align: left;
}

.funding-info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 15px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 16px rgba(245, 166, 35, 0.26);
}

.funding-info-text h2 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.06em;
}

.funding-info-text p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
  color: var(--color-muted);
  letter-spacing: 0.03em;
}

.funding-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.funding-info-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 17px;
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 6px 16px rgba(18, 58, 93, 0.06);
}

.funding-info-item span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(31, 95, 139, 0.20);
}

.funding-info-item strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.funding-info-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--color-muted);
}

.funding-info-btn {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-width: 210px;
  height: 48px;
  margin: 24px auto 0;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 22px rgba(245, 166, 35, 0.30);
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.funding-info-btn:hover {
  transform: translateY(-5px) scale(1.04);
  background: var(--color-accent-hover);
  box-shadow: 0 16px 30px rgba(217, 138, 0, 0.34);
  color: #ffffff;
}

@media (max-width: 900px) {
  .funding-combo-wrap {
    max-width: 430px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .funding-form-box,
  .funding-info-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .funding-combo-section {
    padding: 18px 10px;
  }

  .funding-combo-wrap {
    gap: 18px;
  }

  .funding-form-box {
    max-width: 100%;
    border-radius: 20px;
  }

  .funding-form-head {
    padding: 18px 22px 16px;
  }

  .funding-form-head h2 {
    font-size: 26px;
  }

  .funding-form-head p {
    font-size: 16px;
  }

  .funding-form {
    padding: 26px 22px 26px;
  }

  .funding-form-row {
    grid-template-columns: 104px 1fr;
    gap: 12px;
    margin-bottom: 17px;
  }

  .funding-form-row label {
    font-size: 16px;
  }

  .funding-form-row input,
  .funding-form-row select {
    height: 36px;
    border-radius: 11px;
    font-size: 14px;
  }

  .funding-captcha-wrap {
    grid-template-columns: minmax(78px, 1fr) 88px 32px;
    gap: 7px;
  }

  .funding-captcha-code {
    height: 36px;
    font-size: 17px;
    letter-spacing: 0.22em;
  }

  .funding-refresh {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .funding-submit-btn {
    width: 224px;
    height: 47px;
    margin-top: 22px;
  }

  .funding-info-card {
    max-width: 100%;
    padding: 22px 16px 24px;
    border-radius: 24px;
  }

  .funding-info-image {
    height: 210px;
    border-radius: 20px;
  }

  .funding-info-text h2 {
    font-size: 26px;
  }

  .funding-info-text p {
    font-size: 15px;
  }

  .funding-info-item {
    grid-template-columns: 42px 1fr;
    padding: 12px;
  }

  .funding-info-item span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .funding-info-item strong {
    font-size: 16px;
  }

  .funding-info-item p {
    font-size: 13px;
  }

  .funding-info-btn {
    min-width: 190px;
    height: 46px;
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .funding-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  .funding-form-row {
    grid-template-columns: 92px 1fr;
    gap: 10px;
  }

  .funding-form-row label {
    font-size: 15px;
  }

  .funding-captcha-wrap {
    grid-template-columns: 1fr 82px 30px;
  }

  .funding-submit-btn {
    width: 210px;
  }
}
