:root {
  --inquiry-navy: #0b1f55;
  --inquiry-blue: #173b9b;
  --inquiry-ink: #15213d;
  --inquiry-muted: #667085;
  --inquiry-line: #dfe4ee;
  --inquiry-surface: #f3f6fb;
}

body.inquiry-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 59, 155, 0.08), transparent 28%),
    var(--inquiry-surface);
}

.inquiry-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid rgba(15, 38, 121, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(26, 42, 78, 0.12);
}

.inquiry-aside {
  position: relative;
  padding: 56px 44px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(22, 57, 148, 0.96), rgba(6, 23, 63, 0.98)),
    url("/img/sub-banners/subbanner_support_6.png") center/cover;
}

.inquiry-aside::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255,255,255,0.035), 0 0 0 72px rgba(255,255,255,0.025);
}

.inquiry-kicker {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.inquiry-aside h2 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.inquiry-aside > p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.75;
}

.support-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.support-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}

.support-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.inquiry-form-panel {
  padding: 54px 58px 58px;
}

.inquiry-title {
  margin: 0 0 10px;
  color: var(--inquiry-ink);
  font-size: 28px;
  font-weight: 750;
}

.inquiry-desc {
  margin: 0 0 38px;
  color: var(--inquiry-muted);
  font-size: 15px;
  line-height: 1.7;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field.full,
.privacy-section,
.captcha-row,
.form-actions {
  grid-column: 1 / -1;
}

.form-field label {
  color: #344054;
  font-size: 14px;
  font-weight: 650;
}

.required {
  color: #c93636;
}

.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--inquiry-line);
  border-radius: 10px;
  background: #fff;
  color: var(--inquiry-ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input {
  height: 50px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 180px;
  padding: 14px 15px;
  line-height: 1.65;
  resize: vertical;
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: #b8c2d5;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--inquiry-blue);
  box-shadow: 0 0 0 4px rgba(23, 59, 155, 0.1);
  background: #fff;
}

.privacy-section {
  padding-top: 2px;
  font-size: 14px;
}

.privacy-details {
  border: 1px solid var(--inquiry-line);
  border-radius: 10px;
  background: #f8faff;
}

.privacy-details summary {
  padding: 14px 16px;
  color: #344054;
  font-weight: 650;
  cursor: pointer;
}

.privacy-detail-box {
  max-height: 150px;
  overflow-y: auto;
  padding: 0 16px 16px;
  color: var(--inquiry-muted);
  line-height: 1.65;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: #344054;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--inquiry-blue);
}

.captcha-row {
  min-height: 78px;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--inquiry-muted);
  font-size: 14px;
}

.form-status.is-error { color: #b42318; }
.form-status.is-success { color: #067647; }

.btn-submit {
  min-width: 170px;
  padding: 14px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--inquiry-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(11, 31, 85, 0.18);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background: var(--inquiry-blue);
  box-shadow: 0 14px 28px rgba(11, 31, 85, 0.24);
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

@media (max-width: 900px) {
  .inquiry-shell {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
    margin: 48px auto 72px;
  }

  .inquiry-aside {
    padding: 38px 32px;
  }

  .support-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 30px;
  }

  .inquiry-form-panel {
    padding: 40px 32px 44px;
  }
}

@media (max-width: 620px) {
  .inquiry-shell {
    width: calc(100% - 24px);
    border-radius: 16px;
  }

  .inquiry-aside,
  .inquiry-form-panel {
    padding: 32px 22px;
  }

  .support-points,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .form-field.full,
  .privacy-section,
  .captcha-row,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-submit {
    width: 100%;
  }

  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}
