:root {
  --inq-navy: #081b33;
  --inq-blue: #12385e;
  --inq-teal: #1eaa9d;
  --inq-teal-dark: #12877d;
  --inq-ink: #14263d;
  --inq-muted: #617083;
  --inq-line: #dce5ee;
  --inq-soft: #f3f7fa;
  --inq-yellow: #fee500;
}

.inq-page,
.inq-page * {
  box-sizing: border-box;
}

.inq-page {
  color: var(--inq-ink);
  background: #fff;
  font-family: "Noto Sans KR", sans-serif;
}

.inq-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.inq-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(30, 170, 157, .23), transparent 32%),
    linear-gradient(135deg, #07182d 0%, #0c2b4d 62%, #11395a 100%);
  color: #fff;
}

.inq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent, #000 36%, #000);
}

.inq-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 74px;
  align-items: center;
}

.inq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #44d2c4;
  font: 800 12px/1 "Inter", sans-serif;
  letter-spacing: .16em;
}

.inq-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.inq-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.17;
  letter-spacing: -.055em;
  font-weight: 700;
}

.inq-hero h1 strong {
  color: #69e0d5;
  font-weight: 800;
}

.inq-hero > .inq-container > div > p {
  max-width: 660px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  line-height: 1.82;
  word-break: keep-all;
}

.inq-contact-guide {
  display: grid;
  gap: 12px;
}

.inq-contact-card {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: rgba(255,255,255,.075);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.inq-contact-card:hover,
.inq-contact-card:focus-visible {
  color: #fff;
  border-color: rgba(105,224,213,.6);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.inq-contact-card.primary {
  border-color: rgba(105,224,213,.55);
  background: linear-gradient(135deg, rgba(30,170,157,.28), rgba(255,255,255,.08));
}

.inq-contact-card.kakao {
  opacity: .88;
}

.inq-contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  color: #71e4da;
  background: rgba(105,224,213,.11);
  font-size: 19px;
}

.inq-contact-card.kakao .inq-contact-icon {
  color: #302c00;
  background: var(--inq-yellow);
}

.inq-contact-card small,
.inq-contact-card strong,
.inq-contact-card em {
  display: block;
  font-style: normal;
}

.inq-contact-card small {
  margin-bottom: 3px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
}

.inq-contact-card strong {
  font-size: 17px;
  font-weight: 700;
}

.inq-contact-card em {
  margin-top: 3px;
  color: rgba(255,255,255,.63);
  font-size: 12px;
}

.inq-contact-card > i {
  color: rgba(255,255,255,.45);
  font-size: 13px;
}

.inq-section {
  padding: 96px 0 120px;
  background: linear-gradient(180deg, #fff 0, var(--inq-soft) 100%);
}

.inq-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.inq-sidebar {
  position: sticky;
  top: 110px;
  padding-top: 18px;
}

.inq-sidebar h2 {
  margin: 0;
  color: var(--inq-navy);
  font-size: 30px;
  line-height: 1.35;
  letter-spacing: -.04em;
}

.inq-check-list {
  display: grid;
  gap: 23px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.inq-check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
}

.inq-check-list i {
  margin-top: 3px;
  color: var(--inq-teal);
  font-size: 17px;
}

.inq-check-list strong,
.inq-check-list small {
  display: block;
}

.inq-check-list strong {
  margin-bottom: 5px;
  color: var(--inq-ink);
  font-size: 15px;
}

.inq-check-list small {
  color: var(--inq-muted);
  font-size: 13px;
  line-height: 1.65;
}

.inq-kakao-notice {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 36px;
  padding: 18px;
  border: 1px solid #e7df9b;
  border-radius: 13px;
  background: #fffbea;
  color: #6f641d;
}

.inq-kakao-notice i {
  margin-top: 2px;
}

.inq-kakao-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.inq-form-card {
  padding: 44px 46px;
  border: 1px solid var(--inq-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8,27,51,.09);
}

.inq-form-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--inq-line);
}

.inq-form-head .inq-eyebrow {
  margin-bottom: 12px;
}

.inq-form-head h2 {
  margin: 0;
  color: var(--inq-navy);
  font-size: 34px;
  letter-spacing: -.04em;
}

.inq-form-head p {
  margin: 9px 0 0;
  color: var(--inq-muted);
  font-size: 14px;
}

.inq-recipient {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 9px;
  background: var(--inq-soft);
  color: var(--inq-blue);
  font: 700 12px/1 "Inter", sans-serif;
  white-space: nowrap;
}

.inq-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.inq-field-full {
  grid-column: 1 / -1;
}

.inq-field label {
  display: block;
  margin-bottom: 9px;
  color: var(--inq-ink);
  font-size: 13px;
  font-weight: 700;
}

.inq-field label span,
.inq-agree em {
  color: #df4a55;
  font-style: normal;
  font-size: 11px;
}

.inq-field input,
.inq-field select,
.inq-field textarea {
  width: 100%;
  margin: 0;
  border: 1px solid #ced9e3;
  border-radius: 10px;
  background: #fff;
  color: var(--inq-ink);
  font-family: inherit;
  font-size: 14px;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.inq-field input,
.inq-field select {
  height: 52px;
  padding: 0 15px;
}

.inq-field select {
  appearance: auto;
}

.inq-field textarea {
  min-height: 230px;
  padding: 15px;
  line-height: 1.7;
  resize: vertical;
}

.inq-field input::placeholder,
.inq-field textarea::placeholder {
  color: #9aa7b5;
}

.inq-field input:focus,
.inq-field select:focus,
.inq-field textarea:focus {
  border-color: var(--inq-teal);
  box-shadow: 0 0 0 4px rgba(30,170,157,.11);
}

.inq-counter {
  margin-top: 7px;
  color: #8a97a5;
  font-size: 11px;
  text-align: right;
}

.inq-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.inq-agree {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 30px 0 0;
  padding: 18px 19px;
  border-radius: 12px;
  background: var(--inq-soft);
  cursor: pointer;
}

.inq-agree input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--inq-teal);
}

.inq-agree strong,
.inq-agree small {
  display: block;
}

.inq-agree strong {
  color: var(--inq-ink);
  font-size: 13px;
}

.inq-agree small {
  margin-top: 5px;
  color: var(--inq-muted);
  font-size: 11px;
  line-height: 1.65;
}

.inq-agree a {
  color: var(--inq-blue);
  text-decoration: underline;
}

.inq-form-message {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.6;
}

.inq-form-message.is-visible {
  display: block;
}

.inq-form-message.is-error {
  border: 1px solid #f0c7ca;
  background: #fff2f3;
  color: #a33139;
}

.inq-submit-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 25px;
}

.inq-submit-help {
  display: flex;
  gap: 9px;
  align-items: center;
  max-width: 390px;
  color: var(--inq-muted);
  font-size: 11px;
  line-height: 1.55;
}

.inq-submit-help i {
  color: var(--inq-teal);
}

.inq-submit-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  height: 55px;
  padding: 0 24px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--inq-teal), var(--inq-teal-dark));
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18,135,125,.23);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.inq-submit-button:hover,
.inq-submit-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(18,135,125,.3);
}

.inq-submit-button:disabled {
  opacity: .7;
  cursor: wait;
  transform: none;
}

.inq-button-loading {
  display: none;
}

.inq-submit-button.is-loading .inq-button-label,
.inq-submit-button.is-loading .inq-button-arrow {
  display: none;
}

.inq-submit-button.is-loading .inq-button-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inq-success {
  padding: 54px 30px;
  text-align: center;
}

.inq-success-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(30,170,157,.12);
  color: var(--inq-teal);
  font-size: 29px;
}

.inq-success h2 {
  margin: 0;
  color: var(--inq-navy);
  font-size: 30px;
}

.inq-success p {
  margin: 13px 0 0;
  color: var(--inq-muted);
}

.inq-success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.inq-success-actions a {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 20px;
  border: 1px solid var(--inq-line);
  border-radius: 9px;
  color: var(--inq-blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.inq-success-actions a.inq-success-primary {
  border-color: var(--inq-teal);
  background: var(--inq-teal);
  color: #fff;
}

@media (max-width: 980px) {
  .inq-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .inq-contact-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .inq-contact-card {
    grid-template-columns: 44px 1fr;
    min-height: 128px;
    align-items: start;
  }

  .inq-contact-card > i {
    display: none;
  }

  .inq-contact-icon {
    width: 44px;
    height: 44px;
  }

  .inq-layout {
    grid-template-columns: 1fr;
  }

  .inq-sidebar {
    position: static;
  }

  .inq-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .inq-container {
    width: min(100% - 30px, 1180px);
  }

  .inq-hero {
    padding: 118px 0 58px;
  }

  .inq-hero h1 {
    font-size: 38px;
  }

  .inq-hero > .inq-container > div > p {
    font-size: 15px;
  }

  .inq-contact-guide {
    grid-template-columns: 1fr;
  }

  .inq-contact-card {
    grid-template-columns: 46px 1fr auto;
    min-height: 0;
    align-items: center;
  }

  .inq-contact-card > i {
    display: block;
  }

  .inq-section {
    padding: 68px 0 88px;
  }

  .inq-check-list {
    grid-template-columns: 1fr;
  }

  .inq-form-card {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .inq-form-head {
    display: block;
  }

  .inq-form-head h2 {
    font-size: 29px;
  }

  .inq-recipient {
    margin-top: 18px;
  }

  .inq-field-grid {
    grid-template-columns: 1fr;
  }

  .inq-field-full {
    grid-column: auto;
  }

  .inq-submit-row {
    display: block;
  }

  .inq-submit-button {
    width: 100%;
    margin-top: 18px;
  }

  .inq-success {
    padding: 38px 0;
  }

  .inq-success h2 {
    font-size: 25px;
  }

  .inq-success-actions {
    flex-direction: column;
  }

  .inq-success-actions a {
    justify-content: center;
  }
}
