    .inquiry-hero {
      background:
        linear-gradient(#3972ff13 1px, transparent 1px),
        linear-gradient(90deg, #3972ff13 1px, transparent 1px),
        radial-gradient(circle at 50% 35%, #2867e842, transparent 35%),
        var(--navy-950);
      background-size: 72px 72px, 72px 72px, auto, auto;
      padding: 150px 34px 72px;
      text-align: center;
    }

    .eyebrow {
      color: var(--cyan);
      font-size: 12px;
      font-weight: 900;
      margin: 0 0 18px;
    }

    .inquiry-hero h1 {
      font-size: clamp(46px, 7vw, 96px);
      font-weight: 900;
      line-height: 1.02;
      margin: 0;
    }

    .inquiry-hero p {
      color: #c7d6e9;
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.6;
      margin: 28px auto 0;
      max-width: 760px;
    }

    .inquiry-section {
      background: var(--navy-900);
      padding: 92px 34px 120px;
    }

    .inquiry-wrap {
      margin: 0 auto;
      max-width: 980px;
    }

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

    .form-head h2 {
      font-size: 28px;
      font-weight: 900;
      margin: 0;
    }

    .required-note {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      margin: 0;
    }

    .required {
      color: var(--coral);
    }

    .field-list {
      display: grid;
      gap: 18px;
    }

    .field {
      display: grid;
      gap: 10px;
    }

    .field label,
    .agree-box h3 {
      color: #dce8f7;
      font-size: 15px;
      font-weight: 900;
    }

    .input,
    .textarea,
    .select {
      background: #ffffff0b;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--white);
      font-size: 16px;
      min-height: 54px;
      outline: none;
      padding: 0 16px;
      width: 100%;
    }

    .input:focus,
    .textarea:focus,
    .select:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px #31d6ff26;
    }

    .input::placeholder,
    .textarea::placeholder {
      color: #72839a;
    }

    .textarea {
      min-height: 180px;
      padding: 16px;
      resize: vertical;
    }

    .phone-grid {
      display: grid;
      gap: 12px;
      grid-template-columns: 140px 1fr 1fr;
    }

    .select {
      appearance: none;
    }

    .agree-box {
      border: 1px solid var(--line);
      border-radius: 8px;
      margin-top: 30px;
      overflow: hidden;
    }

    .agree-box h3 {
      background: var(--navy-800);
      margin: 0;
      padding: 18px 20px;
    }

    .agree-content {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      max-height: 190px;
      overflow: auto;
      padding: 20px;
    }

    .agree-check {
      align-items: center;
      border-top: 1px solid var(--line);
      color: #dce8f7;
      display: flex;
      gap: 10px;
      padding: 18px 20px;
    }

    .agree-check input {
      accent-color: var(--cyan);
      height: 18px;
      width: 18px;
    }

    .submit-row {
      margin-top: 42px;
      text-align: center;
    }

    .submit-row button {
      background: var(--cyan);
      border: 0;
      border-radius: 999px;
      color: var(--navy-950);
      cursor: pointer;
      font-size: 18px;
      font-weight: 900;
      min-height: 60px;
      min-width: 180px;
      padding: 0 30px;
    }

    @media (max-width: 780px) {
      .inquiry-hero {
        padding: 122px 18px 54px;
      }

      .inquiry-section {
        padding: 72px 18px 88px;
      }

      .form-head {
        align-items: start;
        flex-direction: column;
        gap: 10px;
      }

      .phone-grid {
        grid-template-columns: minmax(76px, 0.8fr) minmax(0, 1fr) minmax(0, 1fr);
      }

    }
